diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-02-13 09:26:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-02-13 09:26:10 +0000 |
commit | 5e53486545726987ab4482321d4dcf7e23e7652f (patch) | |
tree | 7d02e767f3f8c464df234413336a89304de40c63 /libavformat/nutdec.c | |
parent | f1cc49a68e342b9990052b54af7f91525c982353 (diff) | |
download | ffmpeg-5e53486545726987ab4482321d4dcf7e23e7652f.tar.gz |
typo fix: inited --> initialized
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 1519a652c3..b637bb4f4b 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -531,7 +531,7 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) NUTContext *nut = s->priv_data; ByteIOContext *bc = s->pb; int64_t pos; - int inited_stream_count; + int initialized_stream_count; nut->avf= s; @@ -547,14 +547,14 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) /* stream headers */ pos=0; - for(inited_stream_count=0; inited_stream_count < s->nb_streams;){ + for(initialized_stream_count=0; initialized_stream_count < s->nb_streams;){ pos= find_startcode(bc, STREAM_STARTCODE, pos)+1; if (pos<0+1){ av_log(s, AV_LOG_ERROR, "Not all stream headers found.\n"); return -1; } if(decode_stream_header(nut) >= 0) - inited_stream_count++; + initialized_stream_count++; } /* info headers */ |