[FFmpeg-cvslog] fade: make draw_slice() chroma check against planes 1 and 2

Mark Himsley git at videolan.org
Tue Apr 26 04:23:17 CEST 2011


ffmpeg | branch: master | Mark Himsley <mark at mdsh.com> | Fri Mar 18 14:42:29 2011 +0000| [9026b27e84f6cf6b0133d7aab5b874500bcc5313] | committer: Anton Khirnov

fade: make draw_slice() chroma check against planes 1 and 2

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 at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9026b27e84f6cf6b0133d7aab5b874500bcc5313
---

 libavfilter/vf_fade.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavfilter/vf_fade.c b/libavfilter/vf_fade.c
index b3cccbd..4c2cd4b 100644
--- a/libavfilter/vf_fade.c
+++ b/libavfilter/vf_fade.c
@@ -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++) {



More information about the ffmpeg-cvslog mailing list