[FFmpeg-cvslog] vf_idet: fix type of stats
Michael Niedermayer
git at videolan.org
Wed Dec 26 17:31:17 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 26 03:22:26 2012 +0100| [a2349dc3f0a4ad79dc8188df1b6332e20e25708b] | committer: Michael Niedermayer
vf_idet: fix type of stats
Reviewed-by: Stefano Sabatini <stefasab at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2349dc3f0a4ad79dc8188df1b6332e20e25708b
---
libavfilter/vf_idet.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c
index bcc2fff..513a8e3 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];
More information about the ffmpeg-cvslog
mailing list