diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-08-20 17:05:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-08-20 17:05:14 +0000 |
commit | 071083b4a5642c56dbe0b0e957fd84b7549dea5c (patch) | |
tree | 4e553e733efd8ffa9c90f6113e5bcaa159662465 /libavcodec/mdec.c | |
parent | 054480a57b9b5cc751f482aa8b22c100ffc340d1 (diff) | |
download | ffmpeg-071083b4a5642c56dbe0b0e957fd84b7549dea5c.tar.gz |
Rename ff_init_vlcs function to the more descriptive name ff_mpeg12_init_vlcs.
Now that it is exported, this should avoid confusion and name clashes.
Originally committed as revision 14867 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdec.c')
-rw-r--r-- | libavcodec/mdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index 8b1384e30d..37457676a6 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -224,7 +224,7 @@ static av_cold int decode_init(AVCodecContext *avctx){ AVFrame *p= &a->picture; mdec_common_init(avctx); - ff_init_vlcs(); + ff_mpeg12_init_vlcs(); ff_init_scantable(a->dsp.idct_permutation, &a->scantable, ff_zigzag_direct); p->qstride= a->mb_width; |