diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-15 16:15:47 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-15 16:15:47 +0000 |
commit | bd1071363648638a1a2d958edb70e8ca83ec4138 (patch) | |
tree | f8de9e326f2587a1216b3378c7ac0c559ec2fe32 /libavformat/nutdec.c | |
parent | bee972eeaddbcd92d8bc4823bd676fe19fa0e96f (diff) | |
download | ffmpeg-bd1071363648638a1a2d958edb70e8ca83ec4138.tar.gz |
typo fixes
Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 4026c65495..186e308a72 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -111,7 +111,7 @@ static uint64_t find_any_startcode(ByteIOContext *bc, int64_t pos){ 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); |