projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
avfilter/vf_idet: add a "half_life" option for statistics
[ffmpeg.git]
/
libavfilter
/
vf_idet.h
diff --git
a/libavfilter/vf_idet.h
b/libavfilter/vf_idet.h
index
57332df
..
05aa1e0
100644
(file)
--- a/
libavfilter/vf_idet.h
+++ b/
libavfilter/vf_idet.h
@@
-37,10
+37,14
@@
typedef struct {
const AVClass *class;
float interlace_threshold;
float progressive_threshold;
const AVClass *class;
float interlace_threshold;
float progressive_threshold;
+ float half_life;
+ uint64_t decay_coefficient;
Type last_type;
Type last_type;
- int prestat[4];
- int poststat[4];
+ uint64_t prestat[4];
+ uint64_t poststat[4];
+ uint64_t total_prestat[4];
+ uint64_t total_poststat[4];
uint8_t history[HIST_SIZE];
uint8_t history[HIST_SIZE];