summaryrefslogtreecommitdiff
path: root/libavfilter/interlace.h
diff options
context:
space:
mode:
authorThomas Mundt <tmundt75@gmail.com>2017-04-20 23:26:59 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-04-22 20:12:15 +0200
commit207e6debf866ae4f8bdf864a5f389ef42660324d (patch)
tree87e4bb430785c39207f690ac9a1284e604f808d6 /libavfilter/interlace.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/interlace.h')
-rw-r--r--libavfilter/interlace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/interlace.h b/libavfilter/interlace.h
index da073aeba3..107c94fdb1 100644
--- a/libavfilter/interlace.h
+++ b/libavfilter/interlace.h
@@ -50,7 +50,7 @@ typedef struct InterlaceContext {
int lowpass; // enable or disable low pass filtering
AVFrame *cur, *next; // the two frames from which the new one is obtained
void (*lowpass_line)(uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp,
- const uint8_t *srcp_above, const uint8_t *srcp_below);
+ ptrdiff_t mref, ptrdiff_t pref);
} InterlaceContext;
void ff_interlace_init_x86(InterlaceContext *interlace);