mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-04 05:57:49 +02:00
mpegvideo: fix 422 lowres
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a565c7b7f2
commit
c25a8d7dfb
@ -1666,7 +1666,7 @@ static av_always_inline void mpeg_motion_lowres(MpegEncContext *s,
|
|||||||
uvsx = mx & s_mask;
|
uvsx = mx & s_mask;
|
||||||
uvsy = motion_y & s_mask;
|
uvsy = motion_y & s_mask;
|
||||||
uvsrc_y = src_y;
|
uvsrc_y = src_y;
|
||||||
uvsrc_x = s->mb_x*2*block_s + (mx >> (lowres+1));
|
uvsrc_x = s->mb_x*block_s + (mx >> (lowres+1));
|
||||||
} else {
|
} else {
|
||||||
//Chroma444
|
//Chroma444
|
||||||
uvsx = motion_x & s_mask;
|
uvsx = motion_x & s_mask;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user