]> git.sesse.net Git - vlc/blobdiff - modules/stream_out/autodel.c
libvlccore: fix AUTO_ADJUST_PTS_DELAY short comment.
[vlc] / modules / stream_out / autodel.c
index 5cf813a223e7cd2537567867fdb49582d375d561..9cc8c4b719b65d702c17b7075cccb6ac0f8e4d7f 100644 (file)
@@ -29,7 +29,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>
 
@@ -42,8 +43,8 @@ static void Close   ( vlc_object_t * );
 #define SOUT_CFG_PREFIX "sout-autodel-"
 
 vlc_module_begin();
-    set_shortname( _("Autodel"));
-    set_description( _("Automatically add/delete input streams"));
+    set_shortname( N_("Autodel"));
+    set_description( N_("Automatically add/delete input streams"));
     set_capability( "sout stream", 50 );
     add_shortcut( "autodel" );
     set_callbacks( Open, Close );