]> git.sesse.net Git - vlc/blobdiff - modules/mux/asf.c
MMS stream pausing
[vlc] / modules / mux / asf.c
index b87b8f8e807fa0e8daa50911b6a137aa8b3363f2..dad3aeebd4246a1df085d8b14c4753abcca9bf15 100644 (file)
@@ -30,7 +30,8 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
+#include <vlc_plugin.h>
 #include <vlc_sout.h>
 #include <vlc_block.h>
 #include <vlc_codecs.h>
@@ -62,7 +63,7 @@ static void Close  ( vlc_object_t * );
 #define PACKETSIZE_LONGTEXT N_("ASF packet size -- default is 4096 bytes")
 
 vlc_module_begin();
-    set_description( _("ASF muxer") );
+    set_description( N_("ASF muxer") );
     set_category( CAT_SOUT );
     set_subcategory( SUBCAT_SOUT_MUX );
     set_shortname( "ASF" );
@@ -89,7 +90,7 @@ vlc_module_end();
 /*****************************************************************************
  * Locales prototypes
  *****************************************************************************/
-static const char *ppsz_sout_options[] = {
+static const char *const ppsz_sout_options[] = {
     "title", "author", "copyright", "comment", "rating", NULL
 };