Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-02-14 05:01:35 +0300
committerTimothy Gu <timothygu99@gmail.com>2016-02-14 19:58:41 +0300
commit45743239738bd74de6be475cd5abe4bcbee9f81c (patch)
treef60c0811b14f759c01a63f7bc515b3a74af0692d /libavfilter/blend.h
parentee281b884e2d401f7c3b3ce95849211748ca2b53 (diff)
vf_blend: Reduce number of arguments for kernel function
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 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;