mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avcodec/motion_est_template: Fix invalid shifts in no_sub_motion_search()
Fixes: Ticket8167 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit e13eee37ee3268b0a985ddc74a9bde0179bd553c) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1170ec748b
commit
eb64c10a4b
@ -157,8 +157,8 @@ static int no_sub_motion_search(MpegEncContext * s,
|
||||
int src_index, int ref_index,
|
||||
int size, int h)
|
||||
{
|
||||
(*mx_ptr)<<=1;
|
||||
(*my_ptr)<<=1;
|
||||
(*mx_ptr) *= 2;
|
||||
(*my_ptr) *= 2;
|
||||
return dmin;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user