]> git.sesse.net Git - vlc/blobdiff - src/input/control.c
Rename vlc_input_item_* functions to input_Item* for consistency
[vlc] / src / input / control.c
index 87b96f8cec03f478577a472285a03bdbc0204046..072d71262f843a37f539514e23fc4b2dd44a84d5 100644 (file)
@@ -131,7 +131,7 @@ int input_vaControl( input_thread_t *p_input, int i_query, va_list args )
 
         case INPUT_ADD_INFO:
         {
-            /* FIXME : Impossible to use vlc_input_item_AddInfo because of
+            /* FIXME : Impossible to use input_ItemAddInfo because of
              * the ... problem ? */
             char *psz_cat = (char *)va_arg( args, char * );
             char *psz_name = (char *)va_arg( args, char * );
@@ -253,7 +253,7 @@ int input_vaControl( input_thread_t *p_input, int i_query, va_list args )
             int i_ret = VLC_EGENERIC;
             *ppsz_value = NULL;
 
-            *ppsz_value = vlc_input_item_GetInfo( p_input->input.p_item,
+            *ppsz_value = input_ItemGetInfo( p_input->input.p_item,
                                                   psz_cat, psz_name );
             return i_ret;
         }