diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-26 03:22:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-26 17:27:28 +0100 |
commit | a2349dc3f0a4ad79dc8188df1b6332e20e25708b (patch) | |
tree | b38a54757d82745ff20d67831e1ac5d6c2a78ea9 /libavfilter | |
parent | d155abd1fcaa32c9be2f8db30398a342131c202d (diff) | |
download | ffmpeg-a2349dc3f0a4ad79dc8188df1b6332e20e25708b.tar.gz |
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')
-rw-r--r-- | libavfilter/vf_idet.c | 4 |
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]; |