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:33:39 +0300
committerJames Almer <jamrial@gmail.com>2017-05-02 20:09:50 +0300
commit2da5bf4c2f4cb878bad794be2b76108afbbd899d (patch)
tree509008cb5a54e60151674017dae6c88bdcd9d6a7 /libavfilter/tinterlace.h
parent20da4135020fdf66f6060bb14926befbcc42a7dd (diff)
avfilter/interlace: add complex vertical low-pass filter
This complex (-1 2 6 2 -1) filter slightly less reduces interlace 'twitter' but better retain detail and subjective sharpness impression compared to the linear (1 2 1) filter. Signed-off-by: Thomas Mundt <tmundt75@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/tinterlace.h')
-rw-r--r--libavfilter/tinterlace.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/tinterlace.h b/libavfilter/tinterlace.h
index f52af13c9a..e01050cba7 100644
--- a/libavfilter/tinterlace.h
+++ b/libavfilter/tinterlace.h
@@ -30,6 +30,10 @@
#include "libavutil/opt.h"
#include "avfilter.h"
+#define TINTERLACE_FLAG_VLPF 01
+#define TINTERLACE_FLAG_EXACT_TB 2
+#define TINTERLACE_FLAG_CVLPF 4
+
enum TInterlaceMode {
MODE_MERGE = 0,
MODE_DROP_EVEN,