OSDN Git Service

yadif: correct strides in filter_edges_16bit
authorJames Darnley <james.darnley@gmail.com>
Fri, 15 Mar 2013 15:37:33 +0000 (16:37 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 15 Mar 2013 18:10:55 +0000 (19:10 +0100)
The C code treats the data as arrays of uint16_t so strides must not
be in bytes but in pixels.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/vf_yadif.c

index 08df947..7905aae 100644 (file)
@@ -157,6 +157,8 @@ static void filter_edges_16bit(void *dst1, void *prev1, void *cur1, void *next1,
     int x;
     uint16_t *prev2 = parity ? prev : cur ;
     uint16_t *next2 = parity ? cur  : next;
+    mrefs /= 2;
+    prefs /= 2;
 
     FILTER(0, 3, 0)