]> git.sesse.net Git - vlc/blob - include/vlc_input.h
Privatized p_input->i_state.
[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 *, const char * ) );
125 VLC_EXPORT( bool, input_item_HasErrorWhenReading, ( input_item_t * ) );
126 VLC_EXPORT( void, input_item_SetMeta, ( input_item_t *, vlc_meta_type_t meta_type, const char *psz_val ));
127 VLC_EXPORT( bool, input_item_MetaMatch, ( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz ) );
128 VLC_EXPORT( char *, input_item_GetMeta, ( input_item_t *p_i, vlc_meta_type_t meta_type ) );
129 VLC_EXPORT( char *, input_item_GetName, ( input_item_t * p_i ) );
130 VLC_EXPORT( char *, input_item_GetURI, ( input_item_t * p_i ) );
131 VLC_EXPORT( void,   input_item_SetURI, ( input_item_t * p_i, const char *psz_uri ));
132 VLC_EXPORT(mtime_t, input_item_GetDuration, ( input_item_t * p_i ) );
133 VLC_EXPORT( void,   input_item_SetDuration, ( input_item_t * p_i, mtime_t i_duration ));
134 VLC_EXPORT( bool,   input_item_IsPreparsed, ( input_item_t *p_i ));
135 VLC_EXPORT( bool,   input_item_IsArtFetched, ( input_item_t *p_i ));
136
137
138 #define input_item_SetTitle( item, b )       input_item_SetMeta( item, vlc_meta_Title, b )
139 #define input_item_SetArtist( item, b )      input_item_SetMeta( item, vlc_meta_Artist, b )
140 #define input_item_SetGenre( item, b )       input_item_SetMeta( item, vlc_meta_Genre, b )
141 #define input_item_SetCopyright( item, b )   input_item_SetMeta( item, vlc_meta_Copyright, b )
142 #define input_item_SetAlbum( item, b )       input_item_SetMeta( item, vlc_meta_Album, b )
143 #define input_item_SetTrackNum( item, b )    input_item_SetMeta( item, vlc_meta_TrackNumber, b )
144 #define input_item_SetDescription( item, b ) input_item_SetMeta( item, vlc_meta_Description, b )
145 #define input_item_SetRating( item, b )      input_item_SetMeta( item, vlc_meta_Rating, b )
146 #define input_item_SetDate( item, b )        input_item_SetMeta( item, vlc_meta_Date, b )
147 #define input_item_SetSetting( item, b )     input_item_SetMeta( item, vlc_meta_Setting, b )
148 #define input_item_SetURL( item, b )         input_item_SetMeta( item, vlc_meta_URL, b )
149 #define input_item_SetLanguage( item, b )    input_item_SetMeta( item, vlc_meta_Language, b )
150 #define input_item_SetNowPlaying( item, b )  input_item_SetMeta( item, vlc_meta_NowPlaying, b )
151 #define input_item_SetPublisher( item, b )   input_item_SetMeta( item, vlc_meta_Publisher, b )
152 #define input_item_SetEncodedBy( item, b )   input_item_SetMeta( item, vlc_meta_EncodedBy, b )
153 #define input_item_SetArtURL( item, b )      input_item_SetMeta( item, vlc_meta_ArtworkURL, b )
154 #define input_item_SetTrackID( item, b )     input_item_SetMeta( item, vlc_meta_TrackID, b )
155
156 #define input_item_GetTitle( item )          input_item_GetMeta( item, vlc_meta_Title )
157 #define input_item_GetArtist( item )         input_item_GetMeta( item, vlc_meta_Artist )
158 #define input_item_GetGenre( item )          input_item_GetMeta( item, vlc_meta_Genre )
159 #define input_item_GetCopyright( item )      input_item_GetMeta( item, vlc_meta_Copyright )
160 #define input_item_GetAlbum( item )          input_item_GetMeta( item, vlc_meta_Album )
161 #define input_item_GetTrackNum( item )       input_item_GetMeta( item, vlc_meta_TrackNumber )
162 #define input_item_GetDescription( item )    input_item_GetMeta( item, vlc_meta_Description )
163 #define input_item_GetRating( item )         input_item_GetMeta( item, vlc_meta_Rating )
164 #define input_item_GetDate( item )           input_item_GetMeta( item, vlc_meta_Date )
165 #define input_item_GetGetting( item )        input_item_GetMeta( item, vlc_meta_Getting )
166 #define input_item_GetURL( item )            input_item_GetMeta( item, vlc_meta_URL )
167 #define input_item_GetLanguage( item )       input_item_GetMeta( item, vlc_meta_Language )
168 #define input_item_GetNowPlaying( item )     input_item_GetMeta( item, vlc_meta_NowPlaying )
169 #define input_item_GetPublisher( item )      input_item_GetMeta( item, vlc_meta_Publisher )
170 #define input_item_GetEncodedBy( item )      input_item_GetMeta( item, vlc_meta_EncodedBy )
171 #define input_item_GetArtURL( item )         input_item_GetMeta( item, vlc_meta_ArtworkURL )
172 #define input_item_GetTrackID( item )        input_item_GetMeta( item, vlc_meta_TrackID )
173 #define input_item_GetSetting( item )        input_item_GetMeta( item, vlc_meta_Setting )
174
175 VLC_EXPORT( char *, input_item_GetInfo, ( input_item_t *p_i, const char *psz_cat,const char *psz_name ) );
176 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 ) );
177 VLC_EXPORT( int, input_item_DelInfo, ( input_item_t *p_i, const char *psz_cat, const char *psz_name ) );
178
179 #define input_item_New( a,b,c ) input_item_NewExt( a, b, c, 0, NULL, -1 )
180 #define input_item_NewExt(a,b,c,d,e,f) __input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f)
181 VLC_EXPORT( input_item_t *, __input_item_NewExt, (vlc_object_t *, const char *, const char*, int, const char *const *, mtime_t i_duration )  );
182 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 ) );
183
184 /*****************************************************************************
185  * Meta data helpers
186  *****************************************************************************/
187 static inline void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst,
188                                                         const vlc_meta_t *p_meta )
189 {
190     char * psz_value;
191
192     if( !p_meta )
193         return;
194
195     if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_GAIN" )) ||
196         (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_RADIO" )) )
197     {
198         p_dst->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
199         p_dst->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
200     }
201     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_PEAK" )) ||
202              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_PEAK" )) )
203     {
204         p_dst->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
205         p_dst->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
206     }
207     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_GAIN" )) ||
208              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_AUDIOPHILE" )) )
209     {
210         p_dst->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
211         p_dst->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
212     }
213     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_PEAK" )) )
214     {
215         p_dst->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
216         p_dst->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
217     }
218 }
219
220 /*****************************************************************************
221  * Seek point: (generalisation of chapters)
222  *****************************************************************************/
223 struct seekpoint_t
224 {
225     int64_t i_byte_offset;
226     int64_t i_time_offset;
227     char    *psz_name;
228     int     i_level;
229 };
230
231 static inline seekpoint_t *vlc_seekpoint_New( void )
232 {
233     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
234     point->i_byte_offset =
235     point->i_time_offset = -1;
236     point->i_level = 0;
237     point->psz_name = NULL;
238     return point;
239 }
240
241 static inline void vlc_seekpoint_Delete( seekpoint_t *point )
242 {
243     if( !point ) return;
244     free( point->psz_name );
245     free( point );
246 }
247
248 static inline seekpoint_t *vlc_seekpoint_Duplicate( seekpoint_t *src )
249 {
250     seekpoint_t *point = vlc_seekpoint_New();
251     if( src->psz_name ) point->psz_name = strdup( src->psz_name );
252     point->i_time_offset = src->i_time_offset;
253     point->i_byte_offset = src->i_byte_offset;
254     return point;
255 }
256
257 /*****************************************************************************
258  * Title:
259  *****************************************************************************/
260 typedef struct
261 {
262     char        *psz_name;
263
264     bool        b_menu;      /* Is it a menu or a normal entry */
265
266     int64_t     i_length;   /* Length(microsecond) if known, else 0 */
267     int64_t     i_size;     /* Size (bytes) if known, else 0 */
268
269     /* Title seekpoint */
270     int         i_seekpoint;
271     seekpoint_t **seekpoint;
272
273 } input_title_t;
274
275 static inline input_title_t *vlc_input_title_New(void)
276 {
277     input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
278
279     t->psz_name = NULL;
280     t->b_menu = false;
281     t->i_length = 0;
282     t->i_size   = 0;
283     t->i_seekpoint = 0;
284     t->seekpoint = NULL;
285
286     return t;
287 }
288
289 static inline void vlc_input_title_Delete( input_title_t *t )
290 {
291     int i;
292     if( t == NULL )
293         return;
294
295     free( t->psz_name );
296     for( i = 0; i < t->i_seekpoint; i++ )
297     {
298         free( t->seekpoint[i]->psz_name );
299         free( t->seekpoint[i] );
300     }
301     free( t->seekpoint );
302     free( t );
303 }
304
305 static inline input_title_t *vlc_input_title_Duplicate( input_title_t *t )
306 {
307     input_title_t *dup = vlc_input_title_New( );
308     int i;
309
310     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
311     dup->b_menu      = t->b_menu;
312     dup->i_length    = t->i_length;
313     dup->i_size      = t->i_size;
314     dup->i_seekpoint = t->i_seekpoint;
315     if( t->i_seekpoint > 0 )
316     {
317         dup->seekpoint = (seekpoint_t**)calloc( t->i_seekpoint,
318                                                 sizeof(seekpoint_t*) );
319
320         for( i = 0; i < t->i_seekpoint; i++ )
321         {
322             dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
323         }
324     }
325
326     return dup;
327 }
328
329 /*****************************************************************************
330  * Attachments
331  *****************************************************************************/
332 struct input_attachment_t
333 {
334     char *psz_name;
335     char *psz_mime;
336     char *psz_description;
337
338     int  i_data;
339     void *p_data;
340 };
341
342 static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
343                                                             const char *psz_mime,
344                                                             const char *psz_description,
345                                                             const void *p_data,
346                                                             int i_data )
347 {
348     input_attachment_t *a =
349         (input_attachment_t*)malloc( sizeof(input_attachment_t) );
350     if( !a )
351         return NULL;
352     a->psz_name = strdup( psz_name ? psz_name : "" );
353     a->psz_mime = strdup( psz_mime ? psz_mime : "" );
354     a->psz_description = strdup( psz_description ? psz_description : "" );
355     a->i_data = i_data;
356     a->p_data = NULL;
357     if( i_data > 0 )
358     {
359         a->p_data = malloc( i_data );
360         if( a->p_data && p_data )
361             memcpy( a->p_data, p_data, i_data );
362     }
363     return a;
364 }
365 static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
366 {
367     return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
368                                      a->p_data, a->i_data );
369 }
370 static inline void vlc_input_attachment_Delete( input_attachment_t *a )
371 {
372     if( !a )
373         return;
374     free( a->psz_name );
375     free( a->psz_mime );
376     free( a->psz_description );
377     free( a->p_data );
378     free( a );
379 }
380
381 /*****************************************************************************
382  * input defines/constants.
383  *****************************************************************************/
384
385 /* i_update field of access_t/demux_t */
386 #define INPUT_UPDATE_NONE       0x0000
387 #define INPUT_UPDATE_SIZE       0x0001
388 #define INPUT_UPDATE_TITLE      0x0010
389 #define INPUT_UPDATE_SEEKPOINT  0x0020
390 #define INPUT_UPDATE_META       0x0040
391 #define INPUT_UPDATE_SIGNAL     0x0080
392
393 /** Get the input item for an input thread
394  * FIXME see src/input/item.c but is is unsafe unless
395  * you hold p_input
396  */
397 VLC_EXPORT(input_item_t*, input_GetItem, (input_thread_t*));
398
399 typedef struct input_thread_private_t input_thread_private_t;
400
401 /**
402  * Main structure representing an input thread. This structure is mostly
403  * private. The only public fields are READ-ONLY. You must use the helpers
404  * to modify them
405  */
406 struct input_thread_t
407 {
408     VLC_COMMON_MEMBERS;
409
410     bool b_eof;
411     bool b_preparsing;
412     bool b_dead;
413
414     bool b_can_pace_control;
415
416     /* All other data is input_thread is PRIVATE. You can't access it
417      * outside of src/input */
418     input_thread_private_t *p;
419 };
420
421 /**
422  * Record prefix string.
423  * TODO make it configurable.
424  */
425 #define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%H:%M:%S-$ N-$ p"
426
427 /*****************************************************************************
428  * Input events and variables
429  *****************************************************************************/
430
431 /**
432  * \defgroup inputvariable Input variables
433  *
434  * The input provides multiples variable you can write to and/or read from.
435  *
436  * TODO complete the documentation.
437  * The read only variables are:
438  *  - "length"
439  *  - "can-seek" (if you can seek, it doesn't say if 'bar display' has be shown
440  *    or not, for that check position != 0.0)
441  *  - "can-pause"
442  *  - "can-rate"
443  *  - "can-rewind"
444  *  - "can-record" (if a stream can be recorded while playing)
445  *  - "teletext-es" to get the index of spu track that is teletext -1 if no teletext)
446  *  - "signal-quality"
447  *  - "signal-strength"
448  *  - "cache" (level of data cached [0 .. 1])
449  *
450  * The read-write variables are:
451  *  - state (\see input_state_e)
452  *  - rate, rate-slower, rate-faster
453  *  - position, position-offset
454  *  - time, time-offset
455  *  - title, next-title, prev-title
456  *  - chapter, next-chapter, next-chapter-prev
457  *  - program, audio-es, video-es, spu-es
458  *  - audio-delay, spu-delay
459  *  - bookmark (bookmark list)
460  *  - record
461  *  - frame-next
462  *  - navigation (list of "title %2i")
463  *  - "title %2i"
464  *
465  * The variable used for event is
466  *  - intf-event (\see input_event_type_e)
467  */
468
469 /**
470  * Input state
471  *
472  * This enum is used by the variable "state"
473  */
474 typedef enum input_state_e
475 {
476     INIT_S = 0,
477     OPENING_S,
478     PLAYING_S,
479     PAUSE_S,
480     END_S,
481     ERROR_S,
482 } input_state_e;
483
484 /**
485  * Input rate.
486  *
487  * It is an integer used by the variable "rate" in the
488  * range [INPUT_RATE_MIN, INPUT_RATE_MAX] the default value
489  * being INPUT_RATE_DEFAULT.
490  *
491  * A value lower than INPUT_RATE_DEFAULT plays faster.
492  * A value higher than INPUT_RATE_DEFAULT plays slower.
493  */
494
495 /**
496  * Default rate value
497  */
498 #define INPUT_RATE_DEFAULT  1000
499 /**
500  * Minimal rate value
501  */
502 #define INPUT_RATE_MIN        32            /* Up to 32/1 */
503 /**
504  * Maximal rate value
505  */
506 #define INPUT_RATE_MAX     32000            /* Up to 1/32 */
507
508 /**
509  * Input events
510  *
511  * You can catch input event by adding a callback on the variable "intf-event".
512  * This variable is an integer that will hold a input_event_type_e value.
513  */
514 typedef enum input_event_type_e
515 {
516     /* "state" has changed */
517     INPUT_EVENT_STATE,
518     /* b_dead is true */
519     INPUT_EVENT_DEAD,
520
521     /* "rate" has changed */
522     INPUT_EVENT_RATE,
523
524     /* At least one of "position" or "time" or "length" has changed */
525     INPUT_EVENT_TIMES,
526
527     /* A title has been added or removed or selected.
528      * It imply that chapter has changed (not chapter event is sent) */
529     INPUT_EVENT_TITLE,
530     /* A chapter has been added or removed or selected. */
531     INPUT_EVENT_CHAPTER,
532
533     /* A program has been added or removed or selected */
534     INPUT_EVENT_PROGRAM,
535     /* A ES has been added or removed or selected */
536     INPUT_EVENT_ES,
537     /* "teletext-es" has changed */
538     INPUT_EVENT_TELETEXT,
539
540     /* "record" has changed */
541     INPUT_EVENT_RECORD,
542
543     /* input_item_t media has changed */
544     INPUT_EVENT_ITEM_META,
545     /* input_item_t info has changed */
546     INPUT_EVENT_ITEM_INFO,
547     /* input_item_t name has changed */
548     INPUT_EVENT_ITEM_NAME,
549
550     /* Input statistics have been updated */
551     INPUT_EVENT_STATISTICS,
552     /* At least one of "signal-quality" or "signal-strength" has changed */
553     INPUT_EVENT_SIGNAL,
554
555     /* "audio-delay" has changed */
556     INPUT_EVENT_AUDIO_DELAY,
557     /* "spu-delay" has changed */
558     INPUT_EVENT_SUBTITLE_DELAY,
559
560     /* "bookmark" has changed */
561     INPUT_EVENT_BOOKMARK,
562
563     /* cache" has changed */
564     INPUT_EVENT_CACHE,
565
566     /* A aout_instance_t object has been created/deleted by *the input* */
567     INPUT_EVENT_AOUT,
568     /* A vout_thread_t object has been created/deleted by *the input* */
569     INPUT_EVENT_VOUT,
570
571 } input_event_type_e;
572
573 /** @}*/
574
575 /*****************************************************************************
576  * Prototypes
577  *****************************************************************************/
578
579 /* input_CreateThread
580  * Release the returned input_thread_t using vlc_object_release() */
581 #define input_CreateThread(a,b) __input_CreateThread(VLC_OBJECT(a),b)
582 VLC_EXPORT( input_thread_t *, __input_CreateThread, ( vlc_object_t *, input_item_t * ) );
583
584 VLC_EXPORT( void,             input_StopThread,     ( input_thread_t * ) );
585
586 #define input_Preparse(a,b) __input_Preparse(VLC_OBJECT(a),b)
587 VLC_EXPORT( int, __input_Preparse, ( vlc_object_t *, input_item_t * ) );
588
589 #define input_Read(a,b,c) __input_Read(VLC_OBJECT(a),b, c)
590 VLC_EXPORT( int, __input_Read, ( vlc_object_t *, input_item_t *, bool ) );
591
592 enum input_query_e
593 {
594     /* input variable "position" */
595     INPUT_GET_POSITION,         /* arg1= double *       res=    */
596     INPUT_SET_POSITION,         /* arg1= double         res=can fail    */
597
598     /* input variable "length" */
599     INPUT_GET_LENGTH,           /* arg1= int64_t *      res=can fail    */
600
601     /* input variable "time" */
602     INPUT_GET_TIME,             /* arg1= int64_t *      res=    */
603     INPUT_SET_TIME,             /* arg1= int64_t        res=can fail    */
604
605     /* input variable "rate" (1 is DEFAULT_RATE) */
606     INPUT_GET_RATE,             /* arg1= int *          res=    */
607     INPUT_SET_RATE,             /* arg1= int            res=can fail    */
608
609     /* input variable "state" */
610     INPUT_GET_STATE,            /* arg1= int *          res=    */
611     INPUT_SET_STATE,            /* arg1= int            res=can fail    */
612
613     /* input variable "audio-delay" and "sub-delay" */
614     INPUT_GET_AUDIO_DELAY,      /* arg1 = int* res=can fail */
615     INPUT_SET_AUDIO_DELAY,      /* arg1 = int  res=can fail */
616     INPUT_GET_SPU_DELAY,        /* arg1 = int* res=can fail */
617     INPUT_SET_SPU_DELAY,        /* arg1 = int  res=can fail */
618
619     /* Meta datas */
620     INPUT_ADD_INFO,   /* arg1= char* arg2= char* arg3=...     res=can fail */
621     INPUT_GET_INFO,   /* arg1= char* arg2= char* arg3= char** res=can fail */
622     INPUT_DEL_INFO,   /* arg1= char* arg2= char*              res=can fail */
623     INPUT_SET_NAME,   /* arg1= char* res=can fail    */
624
625     /* Input config options */
626     INPUT_ADD_OPTION,      /* arg1= char * arg2= char *  res=can fail*/
627
628     /* Input properties */
629     INPUT_GET_VIDEO_FPS,         /* arg1= double *        res=can fail */
630
631     /* bookmarks */
632     INPUT_GET_BOOKMARK,    /* arg1= seekpoint_t *               res=can fail */
633     INPUT_GET_BOOKMARKS,   /* arg1= seekpoint_t *** arg2= int * res=can fail */
634     INPUT_CLEAR_BOOKMARKS, /* res=can fail */
635     INPUT_ADD_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
636     INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail   */
637     INPUT_DEL_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
638     INPUT_SET_BOOKMARK,    /* arg1= int  res=can fail    */
639
640     /* Attachments */
641     INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int*  res=can fail */
642     INPUT_GET_ATTACHMENT,  /* arg1=input_attachment_t**, arg2=char*  res=can fail */
643
644     /* On the fly input slave */
645     INPUT_ADD_SLAVE,       /* arg1= const char * */
646     INPUT_ADD_SUBTITLE,    /* arg1= const char *, arg2=bool b_check_extension */
647
648     /* On the fly record while playing */
649     INPUT_SET_RECORD_STATE, /* arg1=bool    res=can fail */
650     INPUT_GET_RECORD_STATE, /* arg1=bool*   res=can fail */
651
652     /* ES */
653     INPUT_RESTART_ES,       /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
654
655     /* Input ressources
656      * XXX You must call vlc_object_release as soon as possible */
657     INPUT_GET_AOUT,         /* arg1=aout_instance_t **              res=can fail */
658     INPUT_GET_VOUTS,        /* arg1=vout_thread_t ***, int *        res=can fail */
659 };
660
661 VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list  ) );
662 VLC_EXPORT( int, input_Control,  ( input_thread_t *, int i_query, ...  ) );
663
664 /**
665  * It will return the current state of the input.
666  * Provided for convenience.
667  */
668 static inline input_state_e input_GetState( input_thread_t * p_input )
669 {
670     input_state_e state = INIT_S;
671     input_Control( p_input, INPUT_GET_STATE, &state );
672     return state;
673 }
674 /**
675  * It will add a new subtitle source to the input.
676  * Provided for convenience.
677  */
678 static inline int input_AddSubtitle( input_thread_t *p_input, const char *psz_url, bool b_check_extension )
679 {
680     return input_Control( p_input, INPUT_ADD_SUBTITLE, psz_url, b_check_extension );
681 }
682
683 /* */
684 typedef struct input_clock_t input_clock_t;
685 VLC_EXPORT( decoder_t *, input_DecoderNew, ( input_thread_t *, es_format_t *, input_clock_t *, sout_instance_t * ) );
686 VLC_EXPORT( void, input_DecoderDelete, ( decoder_t * ) );
687 VLC_EXPORT( void, input_DecoderDecode,( decoder_t *, block_t * ) );
688
689 /**
690  * This function allows to split a MRL into access, demux and path part.
691  *
692  *  You should not write into access and demux string as they may not point into
693  * the provided buffer.
694  *  The buffer provided by psz_dup will be modified.
695  */
696 VLC_EXPORT( void, input_SplitMRL, ( const char **ppsz_access, const char **ppsz_demux, char **ppsz_path, char *psz_dup ) );
697
698 /**
699  * This function creates a sane filename path.
700  */
701 VLC_EXPORT( char *, input_CreateFilename, ( vlc_object_t *, const char *psz_path, const char *psz_prefix, const char *psz_extension ) );
702
703 #endif