Affects the FATE-tests vc1_sa10143, vc1_ilaced_twomv.
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavcodec/vc1_pred.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/vc1_pred.c b/libavcodec/vc1_pred.c
index e1ad0e1d7d..f714d7ce22 100644
--- a/libavcodec/vc1_pred.c
+++ b/libavcodec/vc1_pred.c
@@ -191,9 +191,9 @@ static av_always_inline int scaleforopp(VC1Context *v, int
n /* MV */,
n >>= hpel;
if (v->s.pict_type == AV_PICTURE_TYPE_B && !v->second_field && dir == 1) {
if (dim)
- n = scaleforopp_y(v, n, dir) << hpel;
+ n = FFLSHIFT(scaleforopp_y(v, n, dir), hpel);
else
- n = scaleforopp_x(v, n) << hpel;
+ n = FFLSHIFT(scaleforopp_x(v, n), hpel);
return n;
}
if (v->s.pict_type != AV_PICTURE_TYPE_B)
--
2.20.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".