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 /libavcodec/vc1.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 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index db746b1ae7..80eaca6916 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -3867,7 +3867,7 @@ static int vc1_decode_init(AVCodecContext *avctx) const uint8_t *next; int size, buf2_size; uint8_t *buf2 = NULL; - int seq_inited = 0, ep_inited = 0; + int seq_initialized = 0, ep_initialized = 0; if(avctx->extradata_size < 16) { av_log(avctx, AV_LOG_ERROR, "Extradata size too small: %i\n", avctx->extradata_size); @@ -3889,19 +3889,19 @@ static int vc1_decode_init(AVCodecContext *avctx) av_free(buf2); return -1; } - seq_inited = 1; + seq_initialized = 1; break; case VC1_CODE_ENTRYPOINT: if(decode_entry_point(avctx, &gb) < 0){ av_free(buf2); return -1; } - ep_inited = 1; + ep_initialized = 1; break; } } av_free(buf2); - if(!seq_inited || !ep_inited){ + if(!seq_initialized || !ep_initialized){ av_log(avctx, AV_LOG_ERROR, "Incomplete extradata\n"); return -1; } |