diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-01 02:35:39 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-06 01:21:19 +0100 |
commit | a79ac73b631a2d8347f45fbdcb666f37e40ab9fe (patch) | |
tree | e754cd1338d238afc94d1702cd89f335da2ce6a8 /libavfilter/vf_idet.h | |
parent | 42411a85b78c73897fedf321697fedd61f9c41a6 (diff) | |
download | ffmpeg-a79ac73b631a2d8347f45fbdcb666f37e40ab9fe.tar.gz |
avfilter/vf_idet: Add analyze_interlaced_flag mode
This should allow us to insert idet before scale and let scale have interl=-1 as default in that case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_idet.h')
-rw-r--r-- | libavfilter/vf_idet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/vf_idet.h b/libavfilter/vf_idet.h index af759b476e..47e3d9ce81 100644 --- a/libavfilter/vf_idet.h +++ b/libavfilter/vf_idet.h @@ -63,6 +63,10 @@ typedef struct { AVFrame *prev; ff_idet_filter_func filter_line; + int interlaced_flag_accuracy; + int analyze_interlaced_flag; + int analyze_interlaced_flag_done; + const AVPixFmtDescriptor *csp; int eof; } IDETContext; |