summaryrefslogtreecommitdiff
path: root/libavfilter/vf_idet.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-26 03:22:26 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-26 17:27:28 +0100
commita2349dc3f0a4ad79dc8188df1b6332e20e25708b (patch)
treeb38a54757d82745ff20d67831e1ac5d6c2a78ea9 /libavfilter/vf_idet.c
parentd155abd1fcaa32c9be2f8db30398a342131c202d (diff)
vf_idet: fix type of stats
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_idet.c')
-rw-r--r--libavfilter/vf_idet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c
index bcc2fff3ec..513a8e397a 100644
--- a/libavfilter/vf_idet.c
+++ b/libavfilter/vf_idet.c
@@ -42,8 +42,8 @@ typedef struct {
float progressive_threshold;
Type last_type;
- Type prestat[4];
- Type poststat[4];
+ int prestat[4];
+ int poststat[4];
uint8_t history[HIST_SIZE];