From 5e53486545726987ab4482321d4dcf7e23e7652f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 13 Feb 2008 09:26:10 +0000 Subject: typo fix: inited --> initialized Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vc1.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/vc1.c') 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; } -- cgit v1.2.3