]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/yuvp.c
Rotate: no need to remember the angle
[vlc] / modules / video_filter / yuvp.c
index 97031855866b82e79bab063a166b005f25203ce3..72c6fb8898a01522b0fa3d517944ab11accc06fd 100644 (file)
@@ -32,6 +32,7 @@
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
 #include "vlc_filter.h"
+#include <assert.h>
 
 /* TODO:
  *  Add anti-aliasing support (specially for DVD where only 4 colors are used)
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
-vlc_module_begin();
-    set_description( N_("YUVP converter") );
-    set_capability( "video filter2", 10 );
-    set_callbacks( Open, Close );
-vlc_module_end();
+vlc_module_begin ()
+    set_description( N_("YUVP converter") )
+    set_capability( "video filter2", 10 )
+    set_callbacks( Open, Close )
+vlc_module_end ()
 
 /****************************************************************************
  * Local prototypes