]> git.sesse.net Git - vlc/commitdiff
Validate input chroma in gradient filter (the current code only supports
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 31 May 2008 15:00:26 +0000 (17:00 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 31 May 2008 15:19:39 +0000 (17:19 +0200)
planar YUV).

modules/video_filter/gradient.c

index f600835ef5305cbc9d7ab4d6c041e83c8889fef2..3d70a4ac273dc84269f5d71f883501e153ec7266 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * gradient.c : Gradient and edge detection video effects plugin for vlc
  *****************************************************************************
- * Copyright (C) 2000-2006 the VideoLAN team
+ * Copyright (C) 2000-2008 the VideoLAN team
  * $Id$
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
@@ -38,6 +38,7 @@
 #include <vlc_vout.h>
 
 #include "vlc_filter.h"
+#include "filter_picture.h"
 
 enum { GRADIENT, EDGE, HOUGH };
 
@@ -131,6 +132,17 @@ static int Create( vlc_object_t *p_this )
     filter_t *p_filter = (filter_t *)p_this;
     char *psz_method;
 
+    switch( p_filter->fmt_in.video.i_chroma )
+    {
+        CASE_PLANAR_YUV
+            break;
+
+        default:
+             msg_Err( p_filter, "Unsupported input chroma (%4s)",
+                      (char*)&(p_filter->fmt_in.video.i_chroma) );
+            return VLC_EGENERIC;
+    }
+
     /* Allocate structure */
     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
     if( p_filter->p_sys == NULL )