Skip to content
Snippets Groups Projects
Commit 474c9039 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

yuvp: remove empty Close callback

parent ba96ac16
No related branches found
No related tags found
No related merge requests found
......@@ -41,12 +41,11 @@
* Module descriptor
*****************************************************************************/
static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin ()
set_description( N_("YUVP converter") )
set_capability( "video converter", 10 )
set_callbacks( Open, Close )
set_callback( Open )
vlc_module_end ()
/****************************************************************************
......@@ -86,14 +85,6 @@ static int Open( vlc_object_t *p_this )
return VLC_SUCCESS;
}
/*****************************************************************************
* Close: clean up the filter
*****************************************************************************/
static void Close( vlc_object_t *p_this )
{
VLC_UNUSED(p_this );
}
/****************************************************************************
* Filter: the whole thing
****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment