]> git.sesse.net Git - ffmpeg/commitdiff
fade: make draw_slice() chroma check against planes 1 and 2
authorMark Himsley <mark@mdsh.com>
Fri, 18 Mar 2011 14:42:29 +0000 (14:42 +0000)
committerAnton Khirnov <anton@khirnov.net>
Mon, 25 Apr 2011 20:45:44 +0000 (22:45 +0200)
draw_slice() checks that planes 0 and 1 of AVFilterBufferRef's data
are not NULL before manipulating planes 1 and 2. This patch makes the
check against planes 1 and 2. More senseful and possibly more robust.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavfilter/vf_fade.c

index b3cccbde0b5cae2bdceb008866fd95a574e8b5da..4c2cd4b38a1bd2651f19d75ba01e0a6e3043221c 100644 (file)
@@ -114,7 +114,7 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
             }
         }
 
-        if (outpic->data[0] && outpic->data[1]) {
+        if (outpic->data[1] && outpic->data[2]) {
             /* chroma planes */
             for (plane = 1; plane < 3; plane++) {
                 for (i = 0; i < h; i++) {