]> git.sesse.net Git - vlc/commitdiff
Use module_Need in strict mode if loading a "video filter".
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 6 Jan 2008 00:05:47 +0000 (00:05 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 6 Jan 2008 00:05:47 +0000 (00:05 +0000)
src/video_output/video_output.c

index 0706c6d2d9abd47ba6daedc6632751ba713636e8..a71444e7777baf03cab20dffbabe32866fa45bbb 100644 (file)
@@ -394,7 +394,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
     p_vout->p_cfg = p_cfg;
     p_vout->p_module = module_Need( p_vout,
         ( p_vout->psz_filter_chain && *p_vout->psz_filter_chain ) ?
-        "video filter" : "video output", psz_name, 0 );
+        "video filter" : "video output", psz_name, p_vout->psz_filter_chain && *p_vout->psz_filter_chain );
     free( psz_name );
 
     if( p_vout->p_module == NULL )