]> git.sesse.net Git - vlc/blobdiff - modules/video_output/svgalib.c
ty demux: simplify and fix potential memleak (CID 214)
[vlc] / modules / video_output / svgalib.c
index 467ea7cdc6dfa6a9d9545b8bd0cc33df65425efe..0563758344657347ef2041ab5ecdf1878acc0746 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <vlc/vlc.h>
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <vlc_common.h>
+#include <vlc_plugin.h>
 #include <vlc_vout.h>
 
 #include <vga.h>
@@ -52,7 +57,7 @@ vlc_module_begin();
     set_shortname( "SVGAlib" );
     set_category( CAT_VIDEO );
     set_subcategory( SUBCAT_VIDEO_VOUT );
-    set_description( _("SVGAlib video output") );
+    set_description( N_("SVGAlib video output") );
     set_capability( "video output", 0 );
     set_callbacks( Create, Destroy );
     linked_with_a_crap_library_which_uses_atexit();