]> git.sesse.net Git - vlc/commitdiff
vout: vout_EnableFilter takes a const char *.
authorPierre d'Herbemont <pdherbemont@free.fr>
Mon, 29 Jun 2009 04:13:29 +0000 (21:13 -0700)
committerPierre d'Herbemont <pdherbemont@free.fr>
Mon, 29 Jun 2009 04:14:29 +0000 (21:14 -0700)
include/vlc_vout.h
src/video_output/vout_intf.c

index 0d64ccbefb5d3563959fbcb135349f0ac3c8ff8a..10df3f62a6456b8e8ec826c429c3eb6a5acaf922 100644 (file)
@@ -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,
index c9b1235a5914baf1ffe1f656252bd223d8ce47b4..62368b71edcf20fa9cad7811efe94e234b50978a 100644 (file)
@@ -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;