]> git.sesse.net Git - vlc/blob - include/vlc_input.h
Allow minimum rate change upto 32/1 in input.
[vlc] / include / vlc_input.h
1 /*****************************************************************************
2  * vlc_input.h: Core input structures
3  *****************************************************************************
4  * Copyright (C) 1999-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /* __ is need because conflict with <vlc/input.h> */
26 #ifndef VLC__INPUT_H
27 #define VLC__INPUT_H 1
28
29 /**
30  * \file
31  * This file defines functions, structures and enums for input objects in vlc
32  */
33
34 #include <vlc_es.h>
35 #include <vlc_meta.h>
36 #include <vlc_epg.h>
37 #include <vlc_events.h>
38
39 #include <string.h>                                     /* strcasestr() */
40
41 struct vlc_meta_t;
42
43 /*****************************************************************************
44  * input_item_t: Describes an input and is used to spawn input_thread_t objects
45  *****************************************************************************/
46 struct info_t
47 {
48     char *psz_name;            /**< Name of this info */
49     char *psz_value;           /**< Value of the info */
50 };
51
52 struct info_category_t
53 {
54     char   *psz_name;      /**< Name of this category */
55     int    i_infos;        /**< Number of infos in the category */
56     struct info_t **pp_infos;     /**< Pointer to an array of infos */
57 };
58
59 struct input_item_t
60 {
61     VLC_GC_MEMBERS
62     int        i_id;                 /**< Identifier of the item */
63
64     char       *psz_name;            /**< text describing this item */
65     char       *psz_uri;             /**< mrl of this item */
66     bool       b_fixed_name;        /**< Can the interface change the name ?*/
67
68     int        i_options;            /**< Number of input options */
69     char       **ppsz_options;       /**< Array of input options */
70     uint8_t    *optflagv;            /**< Some flags of input options */
71     unsigned   optflagc;
72
73     mtime_t    i_duration;           /**< Duration in milliseconds*/
74
75     uint8_t    i_type;               /**< Type (file, disc, ...) */
76     bool b_prefers_tree;             /**< Do we prefer being displayed as tree*/
77
78     int        i_categories;         /**< Number of info categories */
79     info_category_t **pp_categories; /**< Pointer to the first info category */
80
81     int         i_es;                /**< Number of es format descriptions */
82     es_format_t **es;                /**< Es formats */
83
84     input_stats_t *p_stats;          /**< Statistics */
85     int           i_nb_played;       /**< Number of times played */
86
87     bool          b_error_when_reading;       /**< Error When Reading */
88
89     vlc_meta_t *p_meta;
90
91     vlc_event_manager_t event_manager;
92
93     vlc_mutex_t lock;                 /**< Lock for the item */
94 };
95
96 #define ITEM_TYPE_UNKNOWN       0
97 #define ITEM_TYPE_FILE          1
98 #define ITEM_TYPE_DIRECTORY     2
99 #define ITEM_TYPE_DISC          3
100 #define ITEM_TYPE_CDDA          4
101 #define ITEM_TYPE_CARD          5
102 #define ITEM_TYPE_NET           6
103 #define ITEM_TYPE_PLAYLIST      7
104 #define ITEM_TYPE_NODE          8
105 #define ITEM_TYPE_NUMBER        9
106
107 VLC_EXPORT( void, input_item_CopyOptions, ( input_item_t *p_parent, input_item_t *p_child ) );
108 VLC_EXPORT( void, input_item_SetName, ( input_item_t *p_item, const char *psz_name ) );
109
110 /* This won't hold the item, but can tell to interested third parties
111  * Like the playlist, that there is a new sub item. With this design
112  * It is not the input item's responsability to keep all the ref of
113  * the input item children. */
114 VLC_EXPORT( void, input_item_AddSubItem, ( input_item_t *p_parent, input_item_t *p_child ) );
115
116
117 /* Flags handled past input_item_AddOpt() */
118 #define VLC_INPUT_OPTION_TRUSTED 0x2
119
120 /* Flags handled within input_item_AddOpt() */
121 #define VLC_INPUT_OPTION_UNIQUE  0x100
122
123 VLC_EXPORT( int, input_item_AddOpt, ( input_item_t *, const char *str, unsigned flags ) );
124 VLC_EXPORT( int, input_item_AddOption, (input_item_t *item, const char *str) );
125 VLC_EXPORT( int ,input_item_AddOption, (input_item_t *item, const char *str) );
126 VLC_EXPORT( bool,input_item_HasErrorWhenReading, (input_item_t *item) );
127 VLC_EXPORT( void, input_item_SetMeta, ( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz_val ));
128
129 VLC_EXPORT( bool,input_item_HasErrorWhenReading, (input_item_t *item) );
130
131 VLC_EXPORT( bool,input_item_MetaMatch, ( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz ) );
132 VLC_EXPORT( char *, input_item_GetMeta, ( input_item_t *p_i, vlc_meta_type_t meta_type ) );
133 VLC_EXPORT( char *, input_item_GetName, ( input_item_t * p_i ) );
134 VLC_EXPORT( char *, input_item_GetURI, ( input_item_t * p_i ) );
135 VLC_EXPORT( void,   input_item_SetURI, ( input_item_t * p_i, char * psz_uri ));
136 VLC_EXPORT(mtime_t, input_item_GetDuration, ( input_item_t * p_i ) );
137 VLC_EXPORT( void,   input_item_SetDuration, ( input_item_t * p_i, mtime_t i_duration ));
138 VLC_EXPORT( bool,   input_item_IsPreparsed, ( input_item_t *p_i ));
139 VLC_EXPORT( bool,   input_item_IsArtFetched, ( input_item_t *p_i ));
140 VLC_EXPORT( const vlc_meta_t *, input_item_GetMetaObject, ( input_item_t *p_i ));
141 VLC_EXPORT( void,   input_item_MetaMerge, ( input_item_t *p_i, const vlc_meta_t * p_new_meta ));
142
143
144 #define input_item_SetTitle( item, b )       input_item_SetMeta( item, vlc_meta_Title, b )
145 #define input_item_SetArtist( item, b )      input_item_SetMeta( item, vlc_meta_Artist, b )
146 #define input_item_SetGenre( item, b )       input_item_SetMeta( item, vlc_meta_Genre, b )
147 #define input_item_SetCopyright( item, b )   input_item_SetMeta( item, vlc_meta_Copyright, b )
148 #define input_item_SetAlbum( item, b )       input_item_SetMeta( item, vlc_meta_Album, b )
149 #define input_item_SetTrackNum( item, b )    input_item_SetMeta( item, vlc_meta_TrackNumber, b )
150 #define input_item_SetDescription( item, b ) input_item_SetMeta( item, vlc_meta_Description, b )
151 #define input_item_SetRating( item, b )      input_item_SetMeta( item, vlc_meta_Rating, b )
152 #define input_item_SetDate( item, b )        input_item_SetMeta( item, vlc_meta_Date, b )
153 #define input_item_SetSetting( item, b )     input_item_SetMeta( item, vlc_meta_Setting, b )
154 #define input_item_SetURL( item, b )         input_item_SetMeta( item, vlc_meta_URL, b )
155 #define input_item_SetLanguage( item, b )    input_item_SetMeta( item, vlc_meta_Language, b )
156 #define input_item_SetNowPlaying( item, b )  input_item_SetMeta( item, vlc_meta_NowPlaying, b )
157 #define input_item_SetPublisher( item, b )   input_item_SetMeta( item, vlc_meta_Publisher, b )
158 #define input_item_SetEncodedBy( item, b )   input_item_SetMeta( item, vlc_meta_EncodedBy, b )
159 #define input_item_SetArtURL( item, b )      input_item_SetMeta( item, vlc_meta_ArtworkURL, b )
160 #define input_item_SetTrackID( item, b )     input_item_SetMeta( item, vlc_meta_TrackID, b )
161
162 #define input_item_GetTitle( item )          input_item_GetMeta( item, vlc_meta_Title )
163 #define input_item_GetArtist( item )         input_item_GetMeta( item, vlc_meta_Artist )
164 #define input_item_GetGenre( item )          input_item_GetMeta( item, vlc_meta_Genre )
165 #define input_item_GetCopyright( item )      input_item_GetMeta( item, vlc_meta_Copyright )
166 #define input_item_GetAlbum( item )          input_item_GetMeta( item, vlc_meta_Album )
167 #define input_item_GetTrackNum( item )       input_item_GetMeta( item, vlc_meta_TrackNumber )
168 #define input_item_GetDescription( item )    input_item_GetMeta( item, vlc_meta_Description )
169 #define input_item_GetRating( item )         input_item_GetMeta( item, vlc_meta_Rating )
170 #define input_item_GetDate( item )           input_item_GetMeta( item, vlc_meta_Date )
171 #define input_item_GetGetting( item )        input_item_GetMeta( item, vlc_meta_Getting )
172 #define input_item_GetURL( item )            input_item_GetMeta( item, vlc_meta_URL )
173 #define input_item_GetLanguage( item )       input_item_GetMeta( item, vlc_meta_Language )
174 #define input_item_GetNowPlaying( item )     input_item_GetMeta( item, vlc_meta_NowPlaying )
175 #define input_item_GetPublisher( item )      input_item_GetMeta( item, vlc_meta_Publisher )
176 #define input_item_GetEncodedBy( item )      input_item_GetMeta( item, vlc_meta_EncodedBy )
177 #define input_item_GetArtURL( item )         input_item_GetMeta( item, vlc_meta_ArtworkURL )
178 #define input_item_GetTrackID( item )        input_item_GetMeta( item, vlc_meta_TrackID )
179 #define input_item_GetSetting( item )        input_item_GetMeta( item, vlc_meta_Setting )
180
181 VLC_EXPORT( char *, input_item_GetInfo, ( input_item_t *p_i, const char *psz_cat,const char *psz_name ) );
182 VLC_EXPORT(int, input_item_AddInfo, ( input_item_t *p_i, const char *psz_cat, const char *psz_name, const char *psz_format, ... ) LIBVLC_FORMAT( 4, 5 ) );
183
184 #define input_item_New( a,b,c ) input_item_NewExt( a, b, c, 0, NULL, -1 )
185 #define input_item_NewExt(a,b,c,d,e,f) __input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f)
186 VLC_EXPORT( input_item_t *, __input_item_NewExt, (vlc_object_t *, const char *, const char*, int, const char *const *, mtime_t i_duration )  );
187 VLC_EXPORT( input_item_t *, input_item_NewWithType, ( vlc_object_t *, const char *, const char *e, int, const char *const *, mtime_t i_duration, int ) );
188
189 /*****************************************************************************
190  * Meta data helpers
191  *****************************************************************************/
192 static inline void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst,
193                                                         const vlc_meta_t *p_meta )
194 {
195     char * psz_value;
196
197     if( !p_meta )
198         return;
199
200     if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_GAIN" )) ||
201         (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_RADIO" )) )
202     {
203         p_dst->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
204         p_dst->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
205     }
206     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_PEAK" )) ||
207              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_PEAK" )) )
208     {
209         p_dst->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
210         p_dst->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
211     }
212     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_GAIN" )) ||
213              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_AUDIOPHILE" )) )
214     {
215         p_dst->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
216         p_dst->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
217     }
218     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_PEAK" )) )
219     {
220         p_dst->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
221         p_dst->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
222     }
223 }
224
225 /*****************************************************************************
226  * Seek point: (generalisation of chapters)
227  *****************************************************************************/
228 struct seekpoint_t
229 {
230     int64_t i_byte_offset;
231     int64_t i_time_offset;
232     char    *psz_name;
233     int     i_level;
234 };
235
236 static inline seekpoint_t *vlc_seekpoint_New( void )
237 {
238     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
239     point->i_byte_offset =
240     point->i_time_offset = -1;
241     point->i_level = 0;
242     point->psz_name = NULL;
243     return point;
244 }
245
246 static inline void vlc_seekpoint_Delete( seekpoint_t *point )
247 {
248     if( !point ) return;
249     free( point->psz_name );
250     free( point );
251 }
252
253 static inline seekpoint_t *vlc_seekpoint_Duplicate( seekpoint_t *src )
254 {
255     seekpoint_t *point = vlc_seekpoint_New();
256     if( src->psz_name ) point->psz_name = strdup( src->psz_name );
257     point->i_time_offset = src->i_time_offset;
258     point->i_byte_offset = src->i_byte_offset;
259     return point;
260 }
261
262 /*****************************************************************************
263  * Title:
264  *****************************************************************************/
265 typedef struct
266 {
267     char        *psz_name;
268
269     bool        b_menu;      /* Is it a menu or a normal entry */
270
271     int64_t     i_length;   /* Length(microsecond) if known, else 0 */
272     int64_t     i_size;     /* Size (bytes) if known, else 0 */
273
274     /* Title seekpoint */
275     int         i_seekpoint;
276     seekpoint_t **seekpoint;
277
278 } input_title_t;
279
280 static inline input_title_t *vlc_input_title_New(void)
281 {
282     input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
283
284     t->psz_name = NULL;
285     t->b_menu = false;
286     t->i_length = 0;
287     t->i_size   = 0;
288     t->i_seekpoint = 0;
289     t->seekpoint = NULL;
290
291     return t;
292 }
293
294 static inline void vlc_input_title_Delete( input_title_t *t )
295 {
296     int i;
297     if( t == NULL )
298         return;
299
300     free( t->psz_name );
301     for( i = 0; i < t->i_seekpoint; i++ )
302     {
303         free( t->seekpoint[i]->psz_name );
304         free( t->seekpoint[i] );
305     }
306     free( t->seekpoint );
307     free( t );
308 }
309
310 static inline input_title_t *vlc_input_title_Duplicate( input_title_t *t )
311 {
312     input_title_t *dup = vlc_input_title_New( );
313     int i;
314
315     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
316     dup->b_menu      = t->b_menu;
317     dup->i_length    = t->i_length;
318     dup->i_size      = t->i_size;
319     dup->i_seekpoint = t->i_seekpoint;
320     if( t->i_seekpoint > 0 )
321     {
322         dup->seekpoint = (seekpoint_t**)calloc( t->i_seekpoint,
323                                                 sizeof(seekpoint_t*) );
324
325         for( i = 0; i < t->i_seekpoint; i++ )
326         {
327             dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
328         }
329     }
330
331     return dup;
332 }
333
334 /*****************************************************************************
335  * Attachments
336  *****************************************************************************/
337 struct input_attachment_t
338 {
339     char *psz_name;
340     char *psz_mime;
341     char *psz_description;
342
343     int  i_data;
344     void *p_data;
345 };
346
347 static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
348                                                             const char *psz_mime,
349                                                             const char *psz_description,
350                                                             const void *p_data,
351                                                             int i_data )
352 {
353     input_attachment_t *a =
354         (input_attachment_t*)malloc( sizeof(input_attachment_t) );
355     if( !a )
356         return NULL;
357     a->psz_name = strdup( psz_name ? psz_name : "" );
358     a->psz_mime = strdup( psz_mime ? psz_mime : "" );
359     a->psz_description = strdup( psz_description ? psz_description : "" );
360     a->i_data = i_data;
361     a->p_data = NULL;
362     if( i_data > 0 )
363     {
364         a->p_data = malloc( i_data );
365         if( a->p_data && p_data )
366             memcpy( a->p_data, p_data, i_data );
367     }
368     return a;
369 }
370 static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
371 {
372     return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
373                                      a->p_data, a->i_data );
374 }
375 static inline void vlc_input_attachment_Delete( input_attachment_t *a )
376 {
377     if( !a )
378         return;
379     free( a->psz_name );
380     free( a->psz_mime );
381     free( a->psz_description );
382     free( a->p_data );
383     free( a );
384 }
385
386 /*****************************************************************************
387  * input defines/constants.
388  *****************************************************************************/
389
390 /* "state" value */
391 /* NOTE: you need to update ppsz_input_state in the RC interface
392  * if you modify this list. */
393 typedef enum input_state_e
394 {
395     INIT_S = 0,
396     OPENING_S,
397     BUFFERING_S,
398     PLAYING_S,
399     PAUSE_S,
400     STOP_S,
401     END_S,
402     ERROR_S,
403 } input_state_e;
404
405 /* "rate" default, min/max
406  * A rate below 1000 plays the movie faster,
407  * A rate above 1000 plays the movie slower.
408  */
409 #define INPUT_RATE_DEFAULT  1000
410 #define INPUT_RATE_MIN        32            /* Up to 32/1 */
411 #define INPUT_RATE_MAX     32000            /* Up to 1/32 */
412
413 /* i_update field of access_t/demux_t */
414 #define INPUT_UPDATE_NONE       0x0000
415 #define INPUT_UPDATE_SIZE       0x0001
416 #define INPUT_UPDATE_TITLE      0x0010
417 #define INPUT_UPDATE_SEEKPOINT  0x0020
418 #define INPUT_UPDATE_META       0x0040
419 #define INPUT_UPDATE_SIGNAL     0x0080
420
421 /** Get the input item for an input thread */
422 VLC_EXPORT(input_item_t*, input_GetItem, (input_thread_t*));
423
424 typedef struct input_thread_private_t input_thread_private_t;
425
426 /**
427  * Main structure representing an input thread. This structure is mostly
428  * private. The only public fields are READ-ONLY. You must use the helpers
429  * to modify them
430  */
431 struct input_thread_t
432 {
433     VLC_COMMON_MEMBERS;
434
435     bool b_eof;
436     bool b_preparsing;
437     bool b_dead;
438
439     int i_state;
440     bool b_can_pace_control;
441     int64_t     i_time;     /* Current time */
442
443     /* Internal caching common to all inputs */
444     mtime_t i_pts_delay;
445
446     /* All other data is input_thread is PRIVATE. You can't access it
447      * outside of src/input */
448     input_thread_private_t *p;
449 };
450
451 /*****************************************************************************
452  * Prototypes
453  *****************************************************************************/
454
455 /* input_CreateThread
456  * Release the returned input_thread_t using vlc_object_release() */
457 #define input_CreateThread(a,b) __input_CreateThread(VLC_OBJECT(a),b)
458 VLC_EXPORT( input_thread_t *, __input_CreateThread, ( vlc_object_t *, input_item_t * ) );
459
460 #define input_Preparse(a,b) __input_Preparse(VLC_OBJECT(a),b)
461 VLC_EXPORT( int, __input_Preparse, ( vlc_object_t *, input_item_t * ) );
462
463 #define input_Read(a,b,c) __input_Read(VLC_OBJECT(a),b, c)
464 VLC_EXPORT( int, __input_Read, ( vlc_object_t *, input_item_t *, bool ) );
465 VLC_EXPORT( void,             input_StopThread,     ( input_thread_t * ) );
466
467 enum input_query_e
468 {
469     /* input variable "position" */
470     INPUT_GET_POSITION,         /* arg1= double *       res=    */
471     INPUT_SET_POSITION,         /* arg1= double         res=can fail    */
472
473     /* input variable "length" */
474     INPUT_GET_LENGTH,           /* arg1= int64_t *      res=can fail    */
475
476     /* input variable "time" */
477     INPUT_GET_TIME,             /* arg1= int64_t *      res=    */
478     INPUT_SET_TIME,             /* arg1= int64_t        res=can fail    */
479
480     /* input variable "rate" (1 is DEFAULT_RATE) */
481     INPUT_GET_RATE,             /* arg1= int *          res=    */
482     INPUT_SET_RATE,             /* arg1= int            res=can fail    */
483
484     /* input variable "state" */
485     INPUT_GET_STATE,            /* arg1= int *          res=    */
486     INPUT_SET_STATE,            /* arg1= int            res=can fail    */
487
488     /* input variable "audio-delay" and "sub-delay" */
489     INPUT_GET_AUDIO_DELAY,      /* arg1 = int* res=can fail */
490     INPUT_SET_AUDIO_DELAY,      /* arg1 = int  res=can fail */
491     INPUT_GET_SPU_DELAY,        /* arg1 = int* res=can fail */
492     INPUT_SET_SPU_DELAY,        /* arg1 = int  res=can fail */
493
494     /* Meta datas */
495     INPUT_ADD_INFO,   /* arg1= char* arg2= char* arg3=...     res=can fail */
496     INPUT_GET_INFO,   /* arg1= char* arg2= char* arg3= char** res=can fail */
497     INPUT_DEL_INFO,   /* arg1= char* arg2= char*              res=can fail */
498     INPUT_SET_NAME,   /* arg1= char* res=can fail    */
499
500     /* Input config options */
501     INPUT_ADD_OPTION,      /* arg1= char * arg2= char *  res=can fail*/
502
503     /* Input properties */
504     INPUT_GET_BYTE_POSITION,     /* arg1= int64_t *       res=    */
505     INPUT_SET_BYTE_SIZE,         /* arg1= int64_t *       res=    */
506     INPUT_GET_VIDEO_FPS,         /* arg1= double *        res=can fail */
507
508     /* bookmarks */
509     INPUT_GET_BOOKMARKS,   /* arg1= seekpoint_t *** arg2= int * res=can fail */
510     INPUT_CLEAR_BOOKMARKS, /* res=can fail */
511     INPUT_ADD_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
512     INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail   */
513     INPUT_DEL_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
514     INPUT_SET_BOOKMARK,    /* arg1= int  res=can fail    */
515
516     /* Attachments */
517     INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int*  res=can fail */
518     INPUT_GET_ATTACHMENT,  /* arg1=input_attachment_t**, arg2=char*  res=can fail */
519
520     /* On the fly input slave */
521     INPUT_ADD_SLAVE,       /* arg1= char * */
522
523     /* On the fly record while playing */
524     INPUT_SET_RECORD_STATE, /* arg1=bool    res=can fail */
525     INPUT_GET_RECORD_STATE, /* arg1=bool*   res=can fail */
526
527     /* ES */
528     INPUT_RESTART_ES,       /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
529 };
530
531 VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list  ) );
532 VLC_EXPORT( int, input_Control,  ( input_thread_t *, int i_query, ...  ) );
533
534 static inline input_state_e input_GetState( input_thread_t * p_input )
535 {
536     input_state_e state = INIT_S;
537     input_Control( p_input, INPUT_GET_STATE, &state );
538     return state;
539 }
540
541 typedef struct input_clock_t input_clock_t;
542 VLC_EXPORT( decoder_t *, input_DecoderNew, ( input_thread_t *, es_format_t *, input_clock_t *, sout_instance_t * ) );
543 VLC_EXPORT( void, input_DecoderDelete, ( decoder_t * ) );
544 VLC_EXPORT( void, input_DecoderDecode,( decoder_t *, block_t * ) );
545
546 VLC_EXPORT( bool, input_AddSubtitles, ( input_thread_t *, char *, bool ) );
547
548 VLC_EXPORT( vlc_event_manager_t *, input_get_event_manager, ( input_thread_t * ) );
549
550 /**
551  * This function allows to split a MRL into access, demux and path part.
552  *
553  *  You should not write into access and demux string as they may not point into
554  * the provided buffer.
555  *  The buffer provided by psz_dup will be modified.
556  */
557 VLC_EXPORT( void, input_SplitMRL, ( const char **ppsz_access, const char **ppsz_demux, char **ppsz_path, char *psz_dup ) );
558
559 #endif