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

Cast for aout_EnableFilter

parent 3287534d
......@@ -457,6 +457,8 @@ VLC_EXPORT( int, aout_FindAndRestart, ( vlc_object_t *, const char *, vlc_value_
VLC_EXPORT( int, aout_ChannelsRestart, ( vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void * ) );
VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool ));
#define aout_EnableFilter( 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 )
......
......@@ -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
......
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