summaryrefslogtreecommitdiff
path: root/libavfilter/blend.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-10-03 21:49:42 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-10-03 21:59:24 +0200
commitfd9a528523d020764044dcc5a4873d030eeb2b63 (patch)
tree4fc2df02e9f5543ae30b8dd51bbfdb18605df8bf /libavfilter/blend.h
parentd89820002a7f939c8f4be7e2253bab7a482fc976 (diff)
avfilter/vf_blend: Fix argument types, fix segfault in asm
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/blend.h')
-rw-r--r--libavfilter/blend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/blend.h b/libavfilter/blend.h
index c22ecd20d6..fcedd415b8 100644
--- a/libavfilter/blend.h
+++ b/libavfilter/blend.h
@@ -63,7 +63,7 @@ typedef struct FilterParams {
void (*blend)(const uint8_t *top, ptrdiff_t top_linesize,
const uint8_t *bottom, ptrdiff_t bottom_linesize,
uint8_t *dst, ptrdiff_t dst_linesize,
- int width, int start, int end,
+ ptrdiff_t width, ptrdiff_t start, ptrdiff_t end,
struct FilterParams *param, double *values);
} FilterParams;