# HG changeset patch # User diego # Date 1205597747 0 # Node ID 8891d470ada3c6731329905000fd081c5d4fb7ca # Parent ae34d429acc6c73a99432e75a14f8eb9963f7f69 typo fixes diff -r ae34d429acc6 -r 8891d470ada3 nutdec.c --- a/nutdec.c Fri Mar 14 13:10:49 2008 +0000 +++ b/nutdec.c Sat Mar 15 16:15:47 2008 +0000 @@ -111,7 +111,7 @@ uint64_t state=0; if(pos >= 0) - url_fseek(bc, pos, SEEK_SET); //note, this may fail if the stream is not seekable, but that should not matter, as in this case we simply start where we are currently + url_fseek(bc, pos, SEEK_SET); //note, this may fail if the stream is not seekable, but that should not matter, as in this case we simply start where we currently are while(!url_feof(bc)){ state= (state<<8) | get_byte(bc); diff -r ae34d429acc6 -r 8891d470ada3 rtpdec.c --- a/rtpdec.c Fri Mar 14 13:10:49 2008 +0000 +++ b/rtpdec.c Sat Mar 15 16:15:47 2008 +0000 @@ -318,7 +318,7 @@ if (infos == NULL) return -1; - /* decode the first 2 bytes where are stored the AUHeader sections + /* decode the first 2 bytes where the AUHeader sections are stored length in bits */ au_headers_length = AV_RB16(buf); diff -r ae34d429acc6 -r 8891d470ada3 utils.c --- a/utils.c Fri Mar 14 13:10:49 2008 +0000 +++ b/utils.c Sat Mar 15 16:15:47 2008 +0000 @@ -1990,7 +1990,7 @@ count++; } - // close codecs which where opened in try_decode_frame() + // close codecs which were opened in try_decode_frame() for(i=0;inb_streams;i++) { st = ic->streams[i]; if(st->codec->codec)