diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-20 17:19:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-20 17:19:25 +0100 |
commit | 50d6f8195658d529c57bb42dfd8d7a71d60a9f1d (patch) | |
tree | 19f3f988344b8a61b2d5850163fc288adeea0bd9 | |
parent | bdd22e3523c1d04602df622bd388a0c04e9b9652 (diff) | |
download | ffmpeg-50d6f8195658d529c57bb42dfd8d7a71d60a9f1d.tar.gz |
mpegvideo: dont use ff_mspel_motion() for vc1
Fixes Ticket655
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/mpegvideo_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_common.h b/libavcodec/mpegvideo_common.h index a4d0167f36..bf6c4db580 100644 --- a/libavcodec/mpegvideo_common.h +++ b/libavcodec/mpegvideo_common.h @@ -725,7 +725,7 @@ static av_always_inline void MPV_motion_internal(MpegEncContext *s, 0, 0, 0, ref_picture, pix_op, qpix_op, s->mv[dir][0][0], s->mv[dir][0][1], 16); - }else if(!is_mpeg12 && (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) && s->mspel){ + }else if(!is_mpeg12 && (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) && s->mspel && s->codec_id == CODEC_ID_WMV2){ ff_mspel_motion(s, dest_y, dest_cb, dest_cr, ref_picture, pix_op, s->mv[dir][0][0], s->mv[dir][0][1], 16); |