]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/psychedelic.c
atmo: updated README.txt for Fnordlicht, added author to THANKS
[vlc] / modules / video_filter / psychedelic.c
index 88a2e3515f1d89167bcd34037a87d3f9c5e59788..8c6d34da8723f39bfe58778a76629167d9b2168b 100644 (file)
@@ -35,8 +35,8 @@
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
-#include "vlc_filter.h"
-#include "vlc_image.h"
+#include <vlc_filter.h>
+#include <vlc_image.h>
 #include "filter_picture.h"
 
 /*****************************************************************************
@@ -50,19 +50,19 @@ static picture_t *Filter( filter_t *, picture_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-vlc_module_begin();
-    set_description( N_("Psychedelic video filter") );
-    set_shortname( N_( "Psychedelic" ));
-    set_capability( "video filter2", 0 );
-    set_category( CAT_VIDEO );
-    set_subcategory( SUBCAT_VIDEO_VFILTER );
+vlc_module_begin ()
+    set_description( N_("Psychedelic video filter") )
+    set_shortname( N_( "Psychedelic" ))
+    set_capability( "video filter2", 0 )
+    set_category( CAT_VIDEO )
+    set_subcategory( SUBCAT_VIDEO_VFILTER )
 
-    add_shortcut( "psychedelic" );
-    set_callbacks( Create, Destroy );
-vlc_module_end();
+    add_shortcut( "psychedelic" )
+    set_callbacks( Create, Destroy )
+vlc_module_end ()
 
 /*****************************************************************************
- * vout_sys_t: Distort video output method descriptor
+ * filter_sys_t: Distort video output method descriptor
  *****************************************************************************
  * This structure is part of the video output thread descriptor.
  * It describes the Distort specific properties of an output thread.