diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:10:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:10:11 +0000 |
commit | 7213abf6ba6b6ad00f69db2859c3a4cd6a7f71d8 (patch) | |
tree | 6c54677ed2d65962c0a8171820f6b0816d4a2911 /libavcodec/h263dec.c | |
parent | 0219e99eea6cab75809b71dc9440b43af79f56e0 (diff) | |
download | ffmpeg-7213abf6ba6b6ad00f69db2859c3a4cd6a7f71d8.tar.gz |
Use h263 tables in msmpeg4v1 dont duplicate them halfway.
Originally committed as revision 21101 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index f2cb976447..a8613bb97c 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -116,7 +116,7 @@ av_cold int ff_h263_decode_init(AVCodecContext *avctx) if (CONFIG_MSMPEG4_DECODER && s->h263_msmpeg4) ff_msmpeg4_decode_init(s); - else + h263_decode_init_vlc(s); return 0; |