]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/normvol.c
playlist: Make sure we don't pl_Release(p_playlist).
[vlc] / modules / audio_filter / normvol.c
index 43f597dcd874ca4f916b9d0226e17e1b7e1848ee..0c57c0b97acc844c9ebfd8b3937f8078bbef185b 100644 (file)
  * Preamble
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <errno.h>                                                 /* ENOMEM */
 #include <ctype.h>
 #include <signal.h>
 #include <math.h>
 
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include <vlc/vlc.h>
+#include <vlc_common.h>
 #include <vlc_plugin.h>
 
 #include <vlc_aout.h>
@@ -80,8 +80,8 @@ typedef struct aout_filter_sys_t
                "between 0.5 and 10 seems sensible." )
 
 vlc_module_begin();
-    set_description( _("Volume normalizer") );
-    set_shortname( _("Volume normalizer") );
+    set_description( N_("Volume normalizer") );
+    set_shortname( N_("Volume normalizer") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AFILTER );
     add_shortcut( "volnorm" );