Mercurial > libavformat.hg
diff nutdec.c @ 3035:f5de7bad2bb9 libavformat
typo fix: inited --> initialized
| author | diego |
|---|---|
| date | Wed, 13 Feb 2008 09:26:10 +0000 |
| parents | 2478b7222c56 |
| children | d6f8dd8d17e5 |
line wrap: on
line diff
--- a/nutdec.c Mon Feb 11 22:37:44 2008 +0000 +++ b/nutdec.c Wed Feb 13 09:26:10 2008 +0000 @@ -531,7 +531,7 @@ 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 @@ /* 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 */
