]> git.sesse.net Git - vlc/blobdiff - src/audio_output/intf.c
Fix display of audio channel in various mono modes
[vlc] / src / audio_output / intf.c
index 409ca68f638735b120b756e3e602a8e38a6c83d6..e20ecfdbac3443af533d33e138dbcd83b55954bd 100644 (file)
@@ -478,6 +478,7 @@ int aout_ChannelsRestart( vlc_object_t * p_this, const char * psz_variable,
     return 0;
 }
 
+#undef aout_EnableFilter
 /** Enable or disable an audio filter
  * \param p_this a vlc object
  * \param psz_name name of the filter
@@ -498,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
     if( p_aout )
         vlc_object_release( p_aout );
 }
-
-/**
- * Change audio visualization
- * -1 goes backwards, +1 goes forward
- */
-char *aout_VisualChange( vlc_object_t *p_this, int i_skip )
-{
-    (void)p_this; (void)i_skip;
-    msg_Err( p_this, "FIXME: %s (%s %d) isn't implemented.", __func__,
-             __FILE__, __LINE__ );
-    return strdup("foobar");
-}