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:
authorPaul B Mahol <onemda@gmail.com>2016-05-23 22:47:02 +0300
committerPaul B Mahol <onemda@gmail.com>2016-05-23 22:49:15 +0300
commit5b8faaad6c71bbb90951ca1642391e11cf6f5f91 (patch)
treef17b8198bb170c6a2a4579f6048c89dc99baf0fe /libavfilter/blend.h
parent6b852a3fd94210779491d51441a3439831841a55 (diff)
avfilter/vf_blend: fix incorrect Y variable when threading is used
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 f0712ff250..54c4fdb6d1 100644
--- a/libavfilter/blend.h
+++ b/libavfilter/blend.h
@@ -70,7 +70,7 @@ typedef struct FilterParams {
const uint8_t *bottom, ptrdiff_t bottom_linesize,
uint8_t *dst, ptrdiff_t dst_linesize,
ptrdiff_t width, ptrdiff_t height,
- struct FilterParams *param, double *values);
+ struct FilterParams *param, double *values, int starty);
} FilterParams;
void ff_blend_init(FilterParams *param, int is_16bit);