diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:40:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:40:10 +0000 |
commit | 261a3c2d05935420c7055472fa670a763f58740f (patch) | |
tree | fa7e505a58e703c485dc0e799ee191ebd39c372d /libavcodec/wmv2dec.c | |
parent | 1b168a428d0f401261484f39eeb007cb5430130c (diff) | |
download | ffmpeg-261a3c2d05935420c7055472fa670a763f58740f.tar.gz |
Move AVCodecs from h263dec.c to msmpeg4.c and disentangle init decode init.
Originally committed as revision 21102 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmv2dec.c')
-rw-r--r-- | libavcodec/wmv2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c index b14b5143aa..c7e29881ff 100644 --- a/libavcodec/wmv2dec.c +++ b/libavcodec/wmv2dec.c @@ -465,7 +465,7 @@ static av_cold int wmv2_decode_init(AVCodecContext *avctx){ avctx->idct_algo=FF_IDCT_WMV2; } - if(ff_h263_decode_init(avctx) < 0) + if(ff_msmpeg4_decode_init(avctx) < 0) return -1; ff_wmv2_common_init(w); |