]> git.sesse.net Git - vlc/commitdiff
Cleanup blendbench videofilter
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Wed, 26 Mar 2008 12:38:57 +0000 (13:38 +0100)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Wed, 9 Apr 2008 08:49:29 +0000 (10:49 +0200)
modules/video_filter/blendbench.c

index 5d71bc704df6be437da8ff621310c209d500f24b..f21d6f412ad2c041d03d5f57f2362213c9f9aac1 100644 (file)
 # include "config.h"
 #endif
 
-#include <errno.h>
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <string.h>
-#include <math.h>
-
 #include <vlc/vlc.h>
 #include <vlc_sout.h>
 #include <vlc_vout.h>
@@ -144,6 +139,8 @@ static int LoadImage( vlc_object_t *p_this, picture_t **pp_pic,
     msg_Dbg( p_this, "%s image has dim %d x %d (Y plane)", psz_name,
              (*pp_pic)->p[Y_PLANE].i_visible_pitch,
              (*pp_pic)->p[Y_PLANE].i_visible_lines );
+
+    return VLC_SUCCESS;
 }
 
 /*****************************************************************************