diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-12 09:29:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-12 09:29:25 +0000 |
commit | 755bfeabccbba9ae1b565b11d645b8e4fe139fa8 (patch) | |
tree | dbd398273c82bc49803b6143e6942e86dd3f3d25 /libavformat/nut.c | |
parent | 26ef3220cf6ad4a3cb1580086c244394f5aa3094 (diff) | |
download | ffmpeg-755bfeabccbba9ae1b565b11d645b8e4fe139fa8.tar.gz |
misc spelling fixes
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 995149951d..867f86fa35 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -85,7 +85,7 @@ typedef struct { int64_t packet_start[3]; //0-> startcode less, 1-> short startcode 2-> long startcodes FrameCode frame_code[256]; unsigned int stream_count; - uint64_t next_startcode; ///< stores the next startcode if it has alraedy been parsed but the stream isnt seekable + uint64_t next_startcode; ///< stores the next startcode if it has already been parsed but the stream is not seekable StreamContext *stream; int max_distance; int max_short_distance; @@ -359,7 +359,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 isnt seekable, but that shouldnt 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 are currently while(!url_feof(bc)){ state= (state<<8) | get_byte(bc); |