]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/chain.c
don't save xspf-playlist location, as it's not needed by vlc, and as mentioned
[vlc] / modules / video_filter / chain.c
index 1c295bba856d842c800c93b2bf8f014177a23150..4d8b16c4bb543b18483b203a543ec87837a4c6a3 100644 (file)
 static int       Activate   ( vlc_object_t * );
 static void      Destroy    ( vlc_object_t * );
 
-vlc_module_begin();
-    set_description( N_("Video filtering using a chain of video filter modules") );
-    set_capability( "video filter2", 1 );
-    set_callbacks( Activate, Destroy );
-vlc_module_end();
+vlc_module_begin ()
+    set_description( N_("Video filtering using a chain of video filter modules") )
+    set_capability( "video filter2", 1 )
+    set_callbacks( Activate, Destroy )
+vlc_module_end ()
 
 /*****************************************************************************
  * Local prototypes.