1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

input: added INPUT_ADD_SLAVE to allow adding a slave input on the fly. (Don't use without a real reason).

This commit is contained in:
Laurent Aimar 2004-11-22 09:52:06 +00:00
parent 945deeb200
commit bb2cb752f4

View File

@ -447,6 +447,9 @@ enum input_query_e
INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail */
INPUT_DEL_BOOKMARK, /* arg1= seekpoint_t * res=can fail */
INPUT_SET_BOOKMARK, /* arg1= int res=can fail */
/* On the fly input slave */
INPUT_ADD_SLAVE, /* arg1= char * */
};
VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list ) );