diff --git a/modules/video_filter/opencv_wrapper.c b/modules/video_filter/opencv_wrapper.c index 767a7c3a39c1ee8eb3540baa18586909e1978b6a..ed535e2c830eb74da9e88d5226e5e5bba3db0a4e 100644 --- a/modules/video_filter/opencv_wrapper.c +++ b/modules/video_filter/opencv_wrapper.c @@ -35,12 +35,8 @@ #include #include -#include -#include - #include #include -#include #include "filter_picture.h" #include @@ -155,7 +151,7 @@ struct filter_sys_t static int Create( vlc_object_t *p_this ) { filter_t* p_filter = (filter_t*)p_this; - char *psz_chroma, *psz_output, *psz_verbosity; + char *psz_chroma, *psz_output; /* Allocate structure */ p_filter->p_sys = malloc( sizeof( filter_sys_t ) ); @@ -323,7 +319,6 @@ static void VlcPictureToIplImage( filter_t* p_filter, picture_t* p_in ) // input video size CvSize sz = cvSize(abs(p_in->format.i_width), abs(p_in->format.i_height)); video_format_t fmt_out; - double duration; filter_sys_t* p_sys = p_filter->p_sys; memset( &fmt_out, 0, sizeof(video_format_t) );