[FFmpeg-devel] [PATCH] vf_idet: fix type of stats

Michael Niedermayer michaelni at gmx.at
Wed Dec 26 03:35:13 CET 2012


Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
 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 e56cff4..d6065fb 100644
--- a/libavfilter/vf_idet.c
+++ b/libavfilter/vf_idet.c
@@ -41,8 +41,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];
 
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list