mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avfilter/vf_deshake: dont pass the wrong context into the SAD functions
This fixes pointer type warnings The context should have been unused so this should not fix any real bug Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a520d8fd35
commit
6b79ef00fd
@ -132,7 +132,7 @@ static void find_block_motion(DeshakeContext *deshake, uint8_t *src1,
|
||||
int smallest = INT_MAX;
|
||||
int tmp, tmp2;
|
||||
|
||||
#define CMP(i, j) deshake->c.sad[0](deshake, src1 + cy * stride + cx, \
|
||||
#define CMP(i, j) deshake->c.sad[0](NULL, src1 + cy * stride + cx, \
|
||||
src2 + (j) * stride + (i), stride, \
|
||||
deshake->blocksize)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user