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/mpc8.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/mpc8.c')
-rw-r--r-- | libavcodec/mpc8.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mpc8.c b/libavcodec/mpc8.c index b211503112..3dfa5c9f32 100644 --- a/libavcodec/mpc8.c +++ b/libavcodec/mpc8.c @@ -97,7 +97,7 @@ static int mpc8_decode_init(AVCodecContext * avctx) int i; MPCContext *c = avctx->priv_data; GetBitContext gb; - static int vlc_inited = 0; + static int vlc_initialized = 0; if(avctx->extradata_size < 2){ av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size); @@ -117,7 +117,7 @@ static int mpc8_decode_init(AVCodecContext * avctx) c->MSS = get_bits1(&gb); c->frames = 1 << (get_bits(&gb, 3) * 2); - if(vlc_inited) return 0; + if(vlc_initialized) return 0; av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n"); init_vlc(&band_vlc, MPC8_BANDS_BITS, MPC8_BANDS_SIZE, @@ -176,7 +176,7 @@ static int mpc8_decode_init(AVCodecContext * avctx) &mpc8_q8_bits[i], 1, 1, &mpc8_q8_codes[i], 1, 1, INIT_VLC_USE_STATIC); } - vlc_inited = 1; + vlc_initialized = 1; return 0; } |