diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-02-14 02:01:35 +0000 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-02-14 08:58:41 -0800 |
commit | 45743239738bd74de6be475cd5abe4bcbee9f81c (patch) | |
tree | f60c0811b14f759c01a63f7bc515b3a74af0692d /libavfilter/blend.h | |
parent | ee281b884e2d401f7c3b3ce95849211748ca2b53 (diff) | |
download | ffmpeg-45743239738bd74de6be475cd5abe4bcbee9f81c.tar.gz |
vf_blend: Reduce number of arguments for kernel function
Diffstat (limited to 'libavfilter/blend.h')
-rw-r--r-- | libavfilter/blend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/blend.h b/libavfilter/blend.h index 161055c341..7003505d0a 100644 --- a/libavfilter/blend.h +++ b/libavfilter/blend.h @@ -67,7 +67,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, - ptrdiff_t width, ptrdiff_t start, ptrdiff_t end, + ptrdiff_t width, ptrdiff_t height, struct FilterParams *param, double *values); } FilterParams; |