]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/dvb.c
Use gettext_noop() consistently
[vlc] / modules / demux / playlist / dvb.c
index f7229c23e3cad6567aa6fca7cae53d4f366d8a20..098ea55085fe7a0e643df6105210dc558039319d 100644 (file)
@@ -51,14 +51,14 @@ static int ParseLine( char *, char **, char ***, int *);
 /*****************************************************************************
  * Import_DVB: main import function
  *****************************************************************************/
-int E_(Import_DVB)( vlc_object_t *p_this )
+int Import_DVB( vlc_object_t *p_this )
 {
     demux_t *p_demux = (demux_t *)p_this;
     const uint8_t *p_peek;
     int     i_peek;
     bool b_valid = false;
 
-    if( !demux2_IsPathExtension( p_demux, ".conf" ) && !p_demux->b_force )
+    if( !demux_IsPathExtension( p_demux, ".conf" ) && !p_demux->b_force )
         return VLC_EGENERIC;
 
     /* Check if this really is a channels file */
@@ -89,7 +89,7 @@ int E_(Import_DVB)( vlc_object_t *p_this )
 /*****************************************************************************
  * Deactivate: frees unused data
  *****************************************************************************/
-void E_(Close_DVB)( vlc_object_t *p_this )
+void Close_DVB( vlc_object_t *p_this )
 {
     VLC_UNUSED(p_this);
 }