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:
authorThomas Mundt <tmundt75@gmail.com>2017-04-21 00:26:59 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-04-22 21:12:15 +0300
commit207e6debf866ae4f8bdf864a5f389ef42660324d (patch)
tree87e4bb430785c39207f690ac9a1284e604f808d6 /libavfilter/tinterlace.h
parent362f6c91e466b2114d0827c6d58e26e121ed11e8 (diff)
avfilter/interlace: change lowpass_line function prototype
Signed-off-by: Thomas Mundt <tmundt75@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/tinterlace.h')
-rw-r--r--libavfilter/tinterlace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/tinterlace.h b/libavfilter/tinterlace.h
index 3b703e7b21..f52af13c9a 100644
--- a/libavfilter/tinterlace.h
+++ b/libavfilter/tinterlace.h
@@ -54,7 +54,7 @@ typedef struct {
uint8_t *black_data[4]; ///< buffer used to fill padded lines
int black_linesize[4];
void (*lowpass_line)(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp,
- const uint8_t *srcp_above, const uint8_t *srcp_below);
+ ptrdiff_t mref, ptrdiff_t pref);
} TInterlaceContext;
void ff_tinterlace_init_x86(TInterlaceContext *interlace);