]> git.sesse.net Git - vlc/blob - include/vlc_input.h
Remove unused option: b_prefers_tree
[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 #if !defined( __LIBVLC__ )
26   #error You are not libvlc or one of its plugins. You cannot include this file
27 #endif
28
29 /* __ is need because conflict with <vlc/input.h> */
30 #ifndef _VLC__INPUT_H
31 #define _VLC__INPUT_H 1
32
33 #include <vlc_es.h>
34 #include <vlc_meta.h>
35 #include <vlc_epg.h>
36 #include <vlc_events.h>
37
38 #include <string.h>                                     /* strcasestr() */
39
40 struct vlc_meta_t;
41
42 /*****************************************************************************
43  * input_item_t: Describes an input and is used to spawn input_thread_t objects
44  *****************************************************************************/
45 struct info_t
46 {
47     char *psz_name;            /**< Name of this info */
48     char *psz_value;           /**< Value of the info */
49 };
50
51 struct info_category_t
52 {
53     char   *psz_name;      /**< Name of this category */
54     int    i_infos;        /**< Number of infos in the category */
55     struct info_t **pp_infos;     /**< Pointer to an array of infos */
56 };
57
58 struct input_item_t
59 {
60     VLC_GC_MEMBERS
61     int        i_id;                 /**< Identifier of the item */
62
63     char       *psz_name;            /**< text describing this item */
64     char       *psz_uri;             /**< mrl of this item */
65     bool  b_fixed_name;        /**< Can the interface change the name ?*/
66
67     int        i_options;            /**< Number of input options */
68     char       **ppsz_options;       /**< Array of input options */
69     uint8_t    *optflagv;            /**< Some flags of input options */
70     unsigned   optflagc;
71
72     mtime_t    i_duration;           /**< Duration in milliseconds*/
73
74     uint8_t    i_type;               /**< Type (file, disc, ...) */
75
76     int        i_categories;         /**< Number of info categories */
77     info_category_t **pp_categories; /**< Pointer to the first info category */
78
79     int         i_es;                /**< Number of es format descriptions */
80     es_format_t **es;                /**< Es formats */
81
82     input_stats_t *p_stats;          /**< Statistics */
83     int           i_nb_played;       /**< Number of times played */
84
85     vlc_meta_t *p_meta;
86
87     vlc_event_manager_t event_manager;
88
89     vlc_mutex_t lock;                 /**< Lock for the item */
90 };
91
92 #define ITEM_TYPE_UNKNOWN       0
93 #define ITEM_TYPE_FILE          1
94 #define ITEM_TYPE_DIRECTORY     2
95 #define ITEM_TYPE_DISC          3
96 #define ITEM_TYPE_CDDA          4
97 #define ITEM_TYPE_CARD          5
98 #define ITEM_TYPE_NET           6
99 #define ITEM_TYPE_PLAYLIST      7
100 #define ITEM_TYPE_NODE          8
101 #define ITEM_TYPE_NUMBER        9
102
103 static inline void input_ItemCopyOptions( input_item_t *p_parent,
104                                           input_item_t *p_child )
105 {
106     int i;
107     for( i = 0 ; i< p_parent->i_options; i++ )
108     {
109         char *psz_option= strdup( p_parent->ppsz_options[i] );
110         if( !strcmp( psz_option, "meta-file" ) )
111         {
112             free( psz_option );
113             continue;
114         }
115         p_child->i_options++;
116         p_child->ppsz_options = (char **)realloc( p_child->ppsz_options,
117                                                   p_child->i_options *
118                                                   sizeof( char * ) );
119         p_child->ppsz_options[p_child->i_options-1] = psz_option;
120         p_child->optflagc++;
121         p_child->optflagv = (uint8_t *)realloc( p_child->optflagv,
122                                                 p_child->optflagc );
123         p_child->optflagv[p_child->optflagc - 1] = p_parent->optflagv[i];
124     }
125 }
126
127 static inline void input_item_SetName( input_item_t *p_item, const char *psz_name )
128 {
129     free( p_item->psz_name );
130     p_item->psz_name = strdup( psz_name );
131 }
132
133 /* This won't hold the item, but can tell to interested third parties
134  * Like the playlist, that there is a new sub item. With this design
135  * It is not the input item's responsability to keep all the ref of
136  * the input item children. */
137 static inline void input_ItemAddSubItem( input_item_t *p_parent,
138                                          input_item_t *p_child )
139 {
140     vlc_event_t event;
141
142     p_parent->i_type = ITEM_TYPE_PLAYLIST;
143
144     /* Notify interested third parties */
145     event.type = vlc_InputItemSubItemAdded;
146     event.u.input_item_subitem_added.p_new_child = p_child;
147     vlc_event_send( &p_parent->event_manager, &event );
148 }
149
150 /* Flags handled past input_ItemAddOpt() */
151 #define VLC_INPUT_OPTION_TRUSTED 0x2
152
153 /* Flags handled within input_ItemAddOpt() */
154 #define VLC_INPUT_OPTION_UNIQUE  0x100
155
156 VLC_EXPORT( int, input_ItemAddOpt, ( input_item_t *, const char *str, unsigned flags ) );
157
158 static inline
159 int input_ItemAddOption (input_item_t *item, const char *str)
160 {
161     return input_ItemAddOpt (item, str, VLC_INPUT_OPTION_TRUSTED);
162 }
163
164
165 VLC_EXPORT( void, input_item_SetMeta, ( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz_val ));
166
167 static inline bool input_item_MetaMatch( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz )
168 {
169     vlc_mutex_lock( &p_i->lock );
170     if( !p_i->p_meta )
171     {
172         vlc_mutex_unlock( &p_i->lock );
173         return false;
174     }
175     const char * meta = vlc_meta_Get( p_i->p_meta, meta_type );
176     bool ret = meta && strcasestr( meta, psz );
177     vlc_mutex_unlock( &p_i->lock );
178
179     return ret;
180 }
181
182 static inline char * input_item_GetMeta( input_item_t *p_i, vlc_meta_type_t meta_type )
183 {
184     char * psz = NULL;
185     vlc_mutex_lock( &p_i->lock );
186
187     if( !p_i->p_meta )
188     {
189         vlc_mutex_unlock( &p_i->lock );
190         return NULL;
191     }
192
193     if( vlc_meta_Get( p_i->p_meta, meta_type ) )
194         psz = strdup( vlc_meta_Get( p_i->p_meta, meta_type ) );
195
196     vlc_mutex_unlock( &p_i->lock );
197     return psz;
198 }
199
200 static inline char * input_item_GetName( input_item_t * p_i )
201 {
202     vlc_mutex_lock( &p_i->lock );
203     char *psz_s = p_i->psz_name ? strdup( p_i->psz_name ) : NULL;
204     vlc_mutex_unlock( &p_i->lock );
205     return psz_s;
206 }
207
208 static inline char * input_item_GetURI( input_item_t * p_i )
209 {
210     vlc_mutex_lock( &p_i->lock );
211     char *psz_s = p_i->psz_uri ? strdup( p_i->psz_uri ) : NULL;
212     vlc_mutex_unlock( &p_i->lock );
213     return psz_s;
214 }
215
216 static inline void input_item_SetURI( input_item_t * p_i, char * psz_uri )
217 {
218     vlc_mutex_lock( &p_i->lock );
219     free( p_i->psz_uri );
220     p_i->psz_uri = strdup( psz_uri );
221     vlc_mutex_unlock( &p_i->lock );
222 }
223
224 static inline mtime_t input_item_GetDuration( input_item_t * p_i )
225 {
226     vlc_mutex_lock( &p_i->lock );
227     mtime_t i_duration = p_i->i_duration;
228     vlc_mutex_unlock( &p_i->lock );
229     return i_duration;
230 }
231
232 static inline void input_item_SetDuration( input_item_t * p_i, mtime_t i_duration )
233 {
234     bool send_event = false;
235
236     vlc_mutex_lock( &p_i->lock );
237     if( p_i->i_duration != i_duration )
238     {
239         p_i->i_duration = i_duration;
240         send_event = true;
241     }
242     vlc_mutex_unlock( &p_i->lock );
243
244     if ( send_event == true )
245     {
246         vlc_event_t event;
247         event.type = vlc_InputItemDurationChanged;
248         event.u.input_item_duration_changed.new_duration = i_duration;
249         vlc_event_send( &p_i->event_manager, &event );
250     }
251
252     return;
253 }
254
255
256 static inline bool input_item_IsPreparsed( input_item_t *p_i )
257 {
258     return p_i->p_meta ? p_i->p_meta->i_status & ITEM_PREPARSED : false ;
259 }
260
261 static inline bool input_item_IsMetaFetched( input_item_t *p_i )
262 {
263     return p_i->p_meta ? p_i->p_meta->i_status & ITEM_META_FETCHED : false ;
264 }
265
266
267 static inline bool input_item_IsArtFetched( input_item_t *p_i )
268 {
269     return p_i->p_meta ? p_i->p_meta->i_status & ITEM_ART_FETCHED : false ;
270 }
271
272 static inline const vlc_meta_t * input_item_GetMetaObject( input_item_t *p_i )
273 {
274     if( !p_i->p_meta )
275         p_i->p_meta = vlc_meta_New();
276
277     return p_i->p_meta;
278 }
279
280 static inline void input_item_MetaMerge( input_item_t *p_i, const vlc_meta_t * p_new_meta )
281 {
282     if( !p_i->p_meta )
283         p_i->p_meta = vlc_meta_New();
284
285     vlc_meta_Merge( p_i->p_meta, p_new_meta );
286 }
287
288 #define input_item_SetTitle( item, b )       input_item_SetMeta( item, vlc_meta_Title, b )
289 #define input_item_SetArtist( item, b )      input_item_SetMeta( item, vlc_meta_Artist, b )
290 #define input_item_SetGenre( item, b )       input_item_SetMeta( item, vlc_meta_Genre, b )
291 #define input_item_SetCopyright( item, b )   input_item_SetMeta( item, vlc_meta_Copyright, b )
292 #define input_item_SetAlbum( item, b )       input_item_SetMeta( item, vlc_meta_Album, b )
293 #define input_item_SetTrackNum( item, b )    input_item_SetMeta( item, vlc_meta_TrackNumber, b )
294 #define input_item_SetDescription( item, b ) input_item_SetMeta( item, vlc_meta_Description, b )
295 #define input_item_SetRating( item, b )      input_item_SetMeta( item, vlc_meta_Rating, b )
296 #define input_item_SetDate( item, b )        input_item_SetMeta( item, vlc_meta_Date, b )
297 #define input_item_SetSetting( item, b )     input_item_SetMeta( item, vlc_meta_Setting, b )
298 #define input_item_SetURL( item, b )         input_item_SetMeta( item, vlc_meta_URL, b )
299 #define input_item_SetLanguage( item, b )    input_item_SetMeta( item, vlc_meta_Language, b )
300 #define input_item_SetNowPlaying( item, b )  input_item_SetMeta( item, vlc_meta_NowPlaying, b )
301 #define input_item_SetPublisher( item, b )   input_item_SetMeta( item, vlc_meta_Publisher, b )
302 #define input_item_SetEncodedBy( item, b )   input_item_SetMeta( item, vlc_meta_EncodedBy, b )
303 #define input_item_SetArtURL( item, b )      input_item_SetMeta( item, vlc_meta_ArtworkURL, b )
304 #define input_item_SetTrackID( item, b )     input_item_SetMeta( item, vlc_meta_TrackID, b )
305
306 #define input_item_GetTitle( item )          input_item_GetMeta( item, vlc_meta_Title )
307 #define input_item_GetArtist( item )         input_item_GetMeta( item, vlc_meta_Artist )
308 #define input_item_GetGenre( item )          input_item_GetMeta( item, vlc_meta_Genre )
309 #define input_item_GetCopyright( item )      input_item_GetMeta( item, vlc_meta_Copyright )
310 #define input_item_GetAlbum( item )          input_item_GetMeta( item, vlc_meta_Album )
311 #define input_item_GetTrackNum( item )       input_item_GetMeta( item, vlc_meta_TrackNumber )
312 #define input_item_GetDescription( item )    input_item_GetMeta( item, vlc_meta_Description )
313 #define input_item_GetRating( item )         input_item_GetMeta( item, vlc_meta_Rating )
314 #define input_item_GetDate( item )           input_item_GetMeta( item, vlc_meta_Date )
315 #define input_item_GetGetting( item )        input_item_GetMeta( item, vlc_meta_Getting )
316 #define input_item_GetURL( item )            input_item_GetMeta( item, vlc_meta_URL )
317 #define input_item_GetLanguage( item )       input_item_GetMeta( item, vlc_meta_Language )
318 #define input_item_GetNowPlaying( item )     input_item_GetMeta( item, vlc_meta_NowPlaying )
319 #define input_item_GetPublisher( item )      input_item_GetMeta( item, vlc_meta_Publisher )
320 #define input_item_GetEncodedBy( item )      input_item_GetMeta( item, vlc_meta_EncodedBy )
321 #define input_item_GetArtURL( item )         input_item_GetMeta( item, vlc_meta_ArtworkURL )
322 #define input_item_GetTrackID( item )        input_item_GetMeta( item, vlc_meta_TrackID )
323 #define input_item_GetSetting( item )        input_item_GetMeta( item, vlc_meta_Setting )
324
325 VLC_EXPORT( char *, input_ItemGetInfo, ( input_item_t *p_i, const char *psz_cat,const char *psz_name ) );
326 VLC_EXPORT(int, input_ItemAddInfo, ( input_item_t *p_i, const char *psz_cat, const char *psz_name, const char *psz_format, ... ) ATTRIBUTE_FORMAT( 4, 5 ) );
327
328 #define input_ItemNew( a,b,c ) input_ItemNewExt( a, b, c, 0, NULL, -1 )
329 #define input_ItemNewExt(a,b,c,d,e,f) __input_ItemNewExt( VLC_OBJECT(a),b,c,d,e,f)
330 VLC_EXPORT( input_item_t *, __input_ItemNewExt, (vlc_object_t *, const char *, const char*, int, const char *const *, mtime_t i_duration )  );
331 VLC_EXPORT( input_item_t *, input_ItemNewWithType, ( vlc_object_t *, const char *, const char *e, int, const char *const *, mtime_t i_duration, int ) );
332
333 #define input_ItemGetById(a,b) __input_ItemGetById( VLC_OBJECT(a),b )
334 VLC_EXPORT( input_item_t *, __input_ItemGetById, (vlc_object_t *, int ) );
335
336 /*****************************************************************************
337  * Meta data helpers
338  *****************************************************************************/
339 static inline void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst,
340                                                         const vlc_meta_t *p_meta )
341 {
342     char * psz_value;
343
344     if( !p_meta )
345         return;
346
347     if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_GAIN" )) ||
348         (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_RADIO" )) )
349     {
350         p_dst->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
351         p_dst->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
352     }
353     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_PEAK" )) ||
354              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_PEAK" )) )
355     {
356         p_dst->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
357         p_dst->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
358     }
359     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_GAIN" )) ||
360              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_AUDIOPHILE" )) )
361     {
362         p_dst->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
363         p_dst->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
364     }
365     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_PEAK" )) )
366     {
367         p_dst->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
368         p_dst->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
369     }
370 }
371
372 /*****************************************************************************
373  * Seek point: (generalisation of chapters)
374  *****************************************************************************/
375 struct seekpoint_t
376 {
377     int64_t i_byte_offset;
378     int64_t i_time_offset;
379     char    *psz_name;
380     int     i_level;
381 };
382
383 static inline seekpoint_t *vlc_seekpoint_New( void )
384 {
385     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
386     point->i_byte_offset =
387     point->i_time_offset = -1;
388     point->i_level = 0;
389     point->psz_name = NULL;
390     return point;
391 }
392
393 static inline void vlc_seekpoint_Delete( seekpoint_t *point )
394 {
395     if( !point ) return;
396     free( point->psz_name );
397     free( point );
398 }
399
400 static inline seekpoint_t *vlc_seekpoint_Duplicate( seekpoint_t *src )
401 {
402     seekpoint_t *point = vlc_seekpoint_New();
403     if( src->psz_name ) point->psz_name = strdup( src->psz_name );
404     point->i_time_offset = src->i_time_offset;
405     point->i_byte_offset = src->i_byte_offset;
406     return point;
407 }
408
409 /*****************************************************************************
410  * Title:
411  *****************************************************************************/
412 typedef struct
413 {
414     char        *psz_name;
415
416     bool  b_menu;      /* Is it a menu or a normal entry */
417
418     int64_t     i_length;   /* Length(microsecond) if known, else 0 */
419     int64_t     i_size;     /* Size (bytes) if known, else 0 */
420
421     /* Title seekpoint */
422     int         i_seekpoint;
423     seekpoint_t **seekpoint;
424
425 } input_title_t;
426
427 static inline input_title_t *vlc_input_title_New(void)
428 {
429     input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
430
431     t->psz_name = NULL;
432     t->b_menu = false;
433     t->i_length = 0;
434     t->i_size   = 0;
435     t->i_seekpoint = 0;
436     t->seekpoint = NULL;
437
438     return t;
439 }
440
441 static inline void vlc_input_title_Delete( input_title_t *t )
442 {
443     int i;
444     if( t == NULL )
445         return;
446
447     free( t->psz_name );
448     for( i = 0; i < t->i_seekpoint; i++ )
449     {
450         free( t->seekpoint[i]->psz_name );
451         free( t->seekpoint[i] );
452     }
453     free( t->seekpoint );
454     free( t );
455 }
456
457 static inline input_title_t *vlc_input_title_Duplicate( input_title_t *t )
458 {
459     input_title_t *dup = vlc_input_title_New( );
460     int i;
461
462     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
463     dup->b_menu      = t->b_menu;
464     dup->i_length    = t->i_length;
465     dup->i_size      = t->i_size;
466     dup->i_seekpoint = t->i_seekpoint;
467     if( t->i_seekpoint > 0 )
468     {
469         dup->seekpoint = (seekpoint_t**)calloc( t->i_seekpoint,
470                                                 sizeof(seekpoint_t*) );
471
472         for( i = 0; i < t->i_seekpoint; i++ )
473         {
474             dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
475         }
476     }
477
478     return dup;
479 }
480 /*****************************************************************************
481  * Attachments
482  *****************************************************************************/
483 struct input_attachment_t
484 {
485     char *psz_name;
486     char *psz_mime;
487     char *psz_description;
488
489     int  i_data;
490     void *p_data;
491 };
492 static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
493                                                             const char *psz_mime,
494                                                             const char *psz_description,
495                                                             const void *p_data,
496                                                             int i_data )
497 {
498     input_attachment_t *a =
499         (input_attachment_t*)malloc( sizeof(input_attachment_t) );
500     if( !a )
501         return NULL;
502     a->psz_name = strdup( psz_name ? psz_name : "" );
503     a->psz_mime = strdup( psz_mime ? psz_mime : "" );
504     a->psz_description = strdup( psz_description ? psz_description : "" );
505     a->i_data = i_data;
506     a->p_data = NULL;
507     if( i_data > 0 )
508     {
509         a->p_data = malloc( i_data );
510         if( a->p_data && p_data )
511             memcpy( a->p_data, p_data, i_data );
512     }
513     return a;
514 }
515 static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
516 {
517     return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
518                                      a->p_data, a->i_data );
519 }
520 static inline void vlc_input_attachment_Delete( input_attachment_t *a )
521 {
522     if( !a )
523         return;
524     free( a->psz_name );
525     free( a->psz_mime );
526     free( a->psz_description );
527     free( a->p_data );
528     free( a );
529 }
530 /*****************************************************************************
531  * input defines/constants.
532  *****************************************************************************/
533
534 /* "state" value */
535 enum input_state_e
536 {
537     INIT_S,
538     OPENING_S,
539     BUFFERING_S,
540     PLAYING_S,
541     PAUSE_S,
542     END_S,
543     ERROR_S
544 };
545
546 /* "rate" default, min/max
547  * A rate below 1000 plays the movie faster,
548  * A rate above 1000 plays the movie slower.
549  */
550 #define INPUT_RATE_DEFAULT  1000
551 #define INPUT_RATE_MIN       125            /* Up to 8/1 */
552 #define INPUT_RATE_MAX     32000            /* Up to 1/32 */
553
554 /* i_update field of access_t/demux_t */
555 #define INPUT_UPDATE_NONE       0x0000
556 #define INPUT_UPDATE_SIZE       0x0001
557 #define INPUT_UPDATE_TITLE      0x0010
558 #define INPUT_UPDATE_SEEKPOINT  0x0020
559 #define INPUT_UPDATE_META       0x0040
560
561 /* Input control XXX: internal */
562 #define INPUT_CONTROL_FIFO_SIZE    100
563
564 /** Get the input item for an input thread */
565 VLC_EXPORT(input_item_t*, input_GetItem, (input_thread_t*));
566
567 typedef struct input_thread_private_t input_thread_private_t;
568
569 /**
570  * Main structure representing an input thread. This structure is mostly
571  * private. The only public fields are READ-ONLY. You must use the helpers
572  * to modify them
573  */
574 struct input_thread_t
575 {
576     VLC_COMMON_MEMBERS;
577
578     bool  b_eof;
579     bool b_preparsing;
580
581     int i_state;
582     bool b_can_pace_control;
583     int64_t     i_time;     /* Current time */
584
585     /* Internal caching common to all inputs */
586     int i_pts_delay;
587
588     /* All other data is input_thread is PRIVATE. You can't access it
589      * outside of src/input */
590     input_thread_private_t *p;
591 };
592
593 /*****************************************************************************
594  * Prototypes
595  *****************************************************************************/
596
597 /* input_CreateThread
598  * Release the returned input_thread_t using vlc_object_release() */
599 #define input_CreateThread(a,b) __input_CreateThread(VLC_OBJECT(a),b)
600 VLC_EXPORT( input_thread_t *, __input_CreateThread, ( vlc_object_t *, input_item_t * ) );
601
602 #define input_Preparse(a,b) __input_Preparse(VLC_OBJECT(a),b)
603 VLC_EXPORT( int, __input_Preparse, ( vlc_object_t *, input_item_t * ) );
604
605 #define input_Read(a,b,c) __input_Read(VLC_OBJECT(a),b, c)
606 VLC_EXPORT( int, __input_Read, ( vlc_object_t *, input_item_t *, bool ) );
607 VLC_EXPORT( void,             input_StopThread,     ( input_thread_t * ) );
608
609 enum input_query_e
610 {
611     /* input variable "position" */
612     INPUT_GET_POSITION,         /* arg1= double *       res=    */
613     INPUT_SET_POSITION,         /* arg1= double         res=can fail    */
614
615     /* input variable "length" */
616     INPUT_GET_LENGTH,           /* arg1= int64_t *      res=can fail    */
617
618     /* input variable "time" */
619     INPUT_GET_TIME,             /* arg1= int64_t *      res=    */
620     INPUT_SET_TIME,             /* arg1= int64_t        res=can fail    */
621
622     /* input variable "rate" (1 is DEFAULT_RATE) */
623     INPUT_GET_RATE,             /* arg1= int *          res=    */
624     INPUT_SET_RATE,             /* arg1= int            res=can fail    */
625
626     /* input variable "state" */
627     INPUT_GET_STATE,            /* arg1= int *          res=    */
628     INPUT_SET_STATE,            /* arg1= int            res=can fail    */
629
630     /* input variable "audio-delay" and "sub-delay" */
631     INPUT_GET_AUDIO_DELAY,      /* arg1 = int* res=can fail */
632     INPUT_SET_AUDIO_DELAY,      /* arg1 = int  res=can fail */
633     INPUT_GET_SPU_DELAY,        /* arg1 = int* res=can fail */
634     INPUT_SET_SPU_DELAY,        /* arg1 = int  res=can fail */
635
636     /* Meta datas */
637     INPUT_ADD_INFO,   /* arg1= char* arg2= char* arg3=...     res=can fail */
638     INPUT_GET_INFO,   /* arg1= char* arg2= char* arg3= char** res=can fail */
639     INPUT_DEL_INFO,   /* arg1= char* arg2= char*              res=can fail */
640     INPUT_SET_NAME,   /* arg1= char* res=can fail    */
641
642     /* Input config options */
643     INPUT_ADD_OPTION,      /* arg1= char * arg2= char *  res=can fail*/
644
645     /* Input properties */
646     INPUT_GET_BYTE_POSITION,     /* arg1= int64_t *       res=    */
647     INPUT_SET_BYTE_SIZE,         /* arg1= int64_t *       res=    */
648     INPUT_GET_VIDEO_FPS,         /* arg1= double *        res=can fail */
649
650     /* bookmarks */
651     INPUT_GET_BOOKMARKS,   /* arg1= seekpoint_t *** arg2= int * res=can fail */
652     INPUT_CLEAR_BOOKMARKS, /* res=can fail */
653     INPUT_ADD_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
654     INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail   */
655     INPUT_DEL_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
656     INPUT_SET_BOOKMARK,    /* arg1= int  res=can fail    */
657
658     /* Attachments */
659     INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int*  res=can fail */
660     INPUT_GET_ATTACHMENT,  /* arg1=input_attachment_t**, arg2=char*  res=can fail */
661
662     /* On the fly input slave */
663     INPUT_ADD_SLAVE        /* arg1= char * */
664 };
665
666 VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list  ) );
667 VLC_EXPORT( int, input_Control,  ( input_thread_t *, int i_query, ...  ) );
668
669 VLC_EXPORT( decoder_t *, input_DecoderNew, ( input_thread_t *, es_format_t *, bool b_force_decoder ) );
670 VLC_EXPORT( void, input_DecoderDelete, ( decoder_t * ) );
671 VLC_EXPORT( void, input_DecoderDecode,( decoder_t *, block_t * ) );
672
673 VLC_EXPORT( bool, input_AddSubtitles, ( input_thread_t *, char *, bool ) );
674
675 #endif