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>2022-03-03 00:30:40 +0300
committerPaul B Mahol <onemda@gmail.com>2022-03-03 11:57:53 +0300
commitdae95b3ffd62ed86cd2e3798c2f281aa67969eca (patch)
treea83c2dfe6a1c3f271406a7497ad053f8bfe59bfb /libavfilter/maskedmerge.h
parent59520f068da89006d527f044a6560235260bcc6c (diff)
avfilter/vf_maskedmerge: fix rounding when masking
Diffstat (limited to 'libavfilter/maskedmerge.h')
-rw-r--r--libavfilter/maskedmerge.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/maskedmerge.h b/libavfilter/maskedmerge.h
index 8e2b1cf676..c1cf8027e4 100644
--- a/libavfilter/maskedmerge.h
+++ b/libavfilter/maskedmerge.h
@@ -30,7 +30,7 @@ typedef struct MaskedMergeContext {
int linesize[4];
int nb_planes;
int planes;
- int half, depth;
+ int half, depth, max;
FFFrameSync fs;
void (*maskedmerge)(const uint8_t *bsrc, const uint8_t *osrc,