Commit ea56af88 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavc/zmbvenc: Do not left-shift negative values.

Fixes the following ubsan errors with the sample from ticket #7980:
libavcodec/zmbvenc.c:243:29: runtime error: left shift of negative value -4
libavcodec/zmbvenc.c:244:28: runtime error: left shift of negative value -2
parent 686755f0
...@@ -240,8 +240,8 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -240,8 +240,8 @@ FF_ENABLE_DEPRECATION_WARNINGS
tprev = prev + x * c->bypp; tprev = prev + x * c->bypp;
zmbv_me(c, tsrc, p->linesize[0], tprev, c->pstride, x, y, &mx, &my, &xored); zmbv_me(c, tsrc, p->linesize[0], tprev, c->pstride, x, y, &mx, &my, &xored);
mv[0] = (mx << 1) | !!xored; mv[0] = (mx * 2) | !!xored;
mv[1] = my << 1; mv[1] = my * 2;
tprev += mx * c->bypp + my * c->pstride; tprev += mx * c->bypp + my * c->pstride;
if(xored){ if(xored){
for(j = 0; j < bh2; j++){ for(j = 0; j < bh2; j++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment