From 755bfeabccbba9ae1b565b11d645b8e4fe139fa8 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 12 Jun 2007 09:29:25 +0000 Subject: misc spelling fixes Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nut.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/nut.c') 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); -- cgit v1.2.3