diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-02-18 19:10:33 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 08:46:19 +0200 |
commit | 233ed6b314ee6b8d37d16a958f1bc309ae667393 (patch) | |
tree | 80f624355d5e2d4e5172ebe2290837b52b060128 /libavfilter/yadif.h | |
parent | 4e3945fd2875c497d25f49a3c35cd6cf6577259e (diff) | |
download | ffmpeg-233ed6b314ee6b8d37d16a958f1bc309ae667393.tar.gz |
Change yadif to not use out of picture lines.
Fixes issue2272.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/yadif.h')
-rw-r--r-- | libavfilter/yadif.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/yadif.h b/libavfilter/yadif.h index 2212a0793c..d658b683d7 100644 --- a/libavfilter/yadif.h +++ b/libavfilter/yadif.h @@ -23,14 +23,14 @@ void ff_yadif_filter_line_mmx(uint8_t *dst, uint8_t *prev, uint8_t *cur, uint8_t *next, - int w, int refs, int parity, int mode); + int w, int prefs, int mrefs, int parity, int mode); void ff_yadif_filter_line_sse2(uint8_t *dst, uint8_t *prev, uint8_t *cur, uint8_t *next, - int w, int refs, int parity, int mode); + int w, int prefs, int mrefs, int parity, int mode); void ff_yadif_filter_line_ssse3(uint8_t *dst, uint8_t *prev, uint8_t *cur, uint8_t *next, - int w, int refs, int parity, int mode); + int w, int prefs, int mrefs, int parity, int mode); #endif /* AVFILTER_YADIF_H */ |