Commit a0550542 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove stub functions

parent 31063568
...@@ -460,11 +460,6 @@ VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool )); ...@@ -460,11 +460,6 @@ VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool ));
#define aout_EnableFilter( o, n, b ) \ #define aout_EnableFilter( o, n, b ) \
aout_EnableFilter( VLC_OBJECT(o), n, b ) aout_EnableFilter( VLC_OBJECT(o), n, b )
#define aout_VisualNext(a) aout_VisualChange( VLC_OBJECT(a),1 )
#define aout_VisualPrev(a) aout_VisualChange( VLC_OBJECT(a),-1 )
VLC_EXPORT( char *, aout_VisualChange, (vlc_object_t *, int ) );
/* */ /* */
VLC_EXPORT( vout_thread_t *, aout_filter_RequestVout, ( aout_filter_t *, vout_thread_t *p_vout, video_format_t *p_fmt ) ); VLC_EXPORT( vout_thread_t *, aout_filter_RequestVout, ( aout_filter_t *, vout_thread_t *p_vout, video_format_t *p_fmt ) );
......
...@@ -499,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name, ...@@ -499,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
if( p_aout ) if( p_aout )
vlc_object_release( 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");
}
...@@ -26,7 +26,6 @@ aout_FormatPrepare ...@@ -26,7 +26,6 @@ aout_FormatPrepare
aout_FormatPrint aout_FormatPrint
aout_FormatPrintChannels aout_FormatPrintChannels
aout_OutputNextBuffer aout_OutputNextBuffer
aout_VisualChange
__aout_VolumeDown __aout_VolumeDown
__aout_VolumeGet __aout_VolumeGet
__aout_VolumeInfos __aout_VolumeInfos
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment