Commit d861c71d authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

vout: vout_EnableFilter takes a const char *.

parent 16f6bf94
......@@ -320,7 +320,7 @@ VLC_EXPORT( void, vout_PlacePicture, ( const vout_thread_t *, unsig
VLC_EXPORT( spu_t *, vout_GetSpu, ( vout_thread_t * ) );
void vout_IntfInit( vout_thread_t * );
VLC_EXPORT( void, vout_EnableFilter, ( vout_thread_t *, char *,bool , bool ) );
VLC_EXPORT( void, vout_EnableFilter, ( vout_thread_t *, const char *,bool , bool ) );
static inline int vout_vaControl( vout_thread_t *p_vout, int i_query,
......
......@@ -801,7 +801,7 @@ exit:
* Handle filters
*****************************************************************************/
void vout_EnableFilter( vout_thread_t *p_vout, char *psz_name,
void vout_EnableFilter( vout_thread_t *p_vout, const char *psz_name,
bool b_add, bool b_setconfig )
{
char *psz_parser;
......
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