Browse Source

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>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
6b79ef00fd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_deshake.c

+ 1
- 1
libavfilter/vf_deshake.c View File

@@ -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…
Cancel
Save