]> git.sesse.net Git - vlc/blob - src/input/input_internal.h
Remembers art url when an input with same artist & album needs art, so if it's a...
[vlc] / src / input / input_internal.h
1 /*****************************************************************************
2  * input_internal.h: Internal input structures
3  *****************************************************************************
4  * Copyright (C) 1998-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _INPUT_INTERNAL_H
25 #define _INPUT_INTERNAL_H 1
26
27 #include <vlc_access.h>
28 #include <vlc_demux.h>
29 #include <vlc_input.h>
30
31 /*****************************************************************************
32  *  Private input fields
33  *****************************************************************************/
34 /* input_source_t: gathers all information per input source */
35 typedef struct
36 {
37     /* Input item description */
38     input_item_t *p_item;
39
40     /* Access/Stream/Demux plugins */
41     access_t *p_access;
42     stream_t *p_stream;
43     demux_t  *p_demux;
44
45     /* Title infos for that input */
46     vlc_bool_t   b_title_demux; /* Titles/Seekpoints provided by demux */
47     int          i_title;
48     input_title_t **title;
49
50     int i_title_offset;
51     int i_seekpoint_offset;
52
53     int i_title_start;
54     int i_title_end;
55     int i_seekpoint_start;
56     int i_seekpoint_end;
57
58     /* Properties */
59     vlc_bool_t b_can_pace_control;
60     vlc_bool_t b_can_pause;
61     vlc_bool_t b_eof;   /* eof of demuxer */
62
63     /* Clock average variation */
64     int     i_cr_average;
65
66 } input_source_t;
67
68 /** Private input fields */
69 struct input_thread_private_t
70 {
71     /* Global properties */
72     vlc_bool_t  b_can_pause;
73
74     int         i_rate;
75     /* */
76     int64_t     i_start;    /* :start-time,0 by default */
77     int64_t     i_stop;     /* :stop-time, 0 if none */
78     int64_t     i_run;      /* :run-time, 0 if none */
79
80     /* Title infos FIXME multi-input (not easy) ? */
81     int          i_title;
82     input_title_t **title;
83
84     int i_title_offset;
85     int i_seekpoint_offset;
86
87     /* User bookmarks FIXME won't be easy with multiples input */
88     int         i_bookmark;
89     seekpoint_t **bookmark;
90
91     /* Input attachment */
92     int i_attachment;
93     input_attachment_t **attachment;
94
95     /* Output */
96     es_out_t    *p_es_out;
97     sout_instance_t *p_sout;            /* XXX Move it to es_out ? */
98     vlc_bool_t      b_sout_keep;
99     vlc_bool_t      b_out_pace_control; /*     idem ? */
100
101     /* Main input properties */
102     input_source_t input;
103     /* Slave demuxers (subs, and others) */
104     int            i_slave;
105     input_source_t **slave;
106
107     /* Stats counters */
108     struct {
109         counter_t *p_read_packets;
110         counter_t *p_read_bytes;
111         counter_t *p_input_bitrate;
112         counter_t *p_demux_read;
113         counter_t *p_demux_bitrate;
114         counter_t *p_decoded_audio;
115         counter_t *p_decoded_video;
116         counter_t *p_decoded_sub;
117         counter_t *p_sout_sent_packets;
118         counter_t *p_sout_sent_bytes;
119         counter_t *p_sout_send_bitrate;
120         counter_t *p_played_abuffers;
121         counter_t *p_lost_abuffers;
122         counter_t *p_displayed_pictures;
123         counter_t *p_lost_pictures;
124         vlc_mutex_t counters_lock;
125     } counters;
126
127     /* Buffer of pending actions */
128     vlc_mutex_t lock_control;
129     int i_control;
130     struct
131     {
132         /* XXX for string value you have to allocate it before calling
133          * input_ControlPush */
134         int         i_type;
135         vlc_value_t val;
136     } control[INPUT_CONTROL_FIFO_SIZE];
137 };
138
139 /***************************************************************************
140  * Internal control helpers
141  ***************************************************************************/
142 enum input_control_e
143 {
144     INPUT_CONTROL_SET_DIE,
145
146     INPUT_CONTROL_SET_STATE,
147
148     INPUT_CONTROL_SET_RATE,
149     INPUT_CONTROL_SET_RATE_SLOWER,
150     INPUT_CONTROL_SET_RATE_FASTER,
151
152     INPUT_CONTROL_SET_POSITION,
153     INPUT_CONTROL_SET_POSITION_OFFSET,
154
155     INPUT_CONTROL_SET_TIME,
156     INPUT_CONTROL_SET_TIME_OFFSET,
157
158     INPUT_CONTROL_SET_PROGRAM,
159
160     INPUT_CONTROL_SET_TITLE,
161     INPUT_CONTROL_SET_TITLE_NEXT,
162     INPUT_CONTROL_SET_TITLE_PREV,
163
164     INPUT_CONTROL_SET_SEEKPOINT,
165     INPUT_CONTROL_SET_SEEKPOINT_NEXT,
166     INPUT_CONTROL_SET_SEEKPOINT_PREV,
167
168     INPUT_CONTROL_SET_BOOKMARK,
169
170     INPUT_CONTROL_SET_ES,
171
172     INPUT_CONTROL_SET_AUDIO_DELAY,
173     INPUT_CONTROL_SET_SPU_DELAY,
174
175     INPUT_CONTROL_ADD_SLAVE,
176 };
177
178 /* Internal helpers */
179 static inline void input_ControlPush( input_thread_t *p_input,
180                                       int i_type, vlc_value_t *p_val )
181 {
182     vlc_mutex_lock( &p_input->p->lock_control );
183     if( i_type == INPUT_CONTROL_SET_DIE )
184     {
185         /* Special case, empty the control */
186         p_input->p->i_control = 1;
187         p_input->p->control[0].i_type = i_type;
188         memset( &p_input->p->control[0].val, 0, sizeof( vlc_value_t ) );
189     }
190     else
191     {
192         if( p_input->p->i_control >= INPUT_CONTROL_FIFO_SIZE )
193         {
194             msg_Err( p_input, "input control fifo overflow, trashing type=%d",
195                      i_type );
196             vlc_mutex_unlock( &p_input->p->lock_control );
197             return;
198         }
199         p_input->p->control[p_input->p->i_control].i_type = i_type;
200         if( p_val )
201             p_input->p->control[p_input->p->i_control].val = *p_val;
202         else
203             memset( &p_input->p->control[p_input->p->i_control].val, 0,
204                     sizeof( vlc_value_t ) );
205
206         p_input->p->i_control++;
207     }
208     vlc_mutex_unlock( &p_input->p->lock_control );
209 }
210
211 /**********************************************************************
212  * Item metadata
213  **********************************************************************/
214 typedef struct playlist_album_t
215 {
216     char *psz_artist;
217     char *psz_album;
218     char *psz_arturl;
219     vlc_bool_t b_found;
220 } playlist_album_t;
221
222 int         input_MetaFetch     ( playlist_t *, input_item_t * );
223 int         input_ArtFind       ( playlist_t *, input_item_t * );
224 vlc_bool_t  input_MetaSatisfied ( playlist_t*, input_item_t*,
225                                   uint32_t*, uint32_t* );
226 int         input_DownloadAndCacheArt ( playlist_t *, input_item_t * );
227
228 /* Becarefull; p_item lock HAS to be taken */
229 void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input );
230
231 /***************************************************************************
232  * Internal prototypes
233  ***************************************************************************/
234
235 /* misc/stats.c */
236 input_stats_t *stats_NewInputStats( input_thread_t *p_input );
237
238 /* input.c */
239 #define input_CreateThreadExtended(a,b,c,d) __input_CreateThreadExtended(VLC_OBJECT(a),b,c,d)
240 input_thread_t *__input_CreateThreadExtended ( vlc_object_t *, input_item_t *, const char *, sout_instance_t * );
241
242 void input_DestroyThreadExtended( input_thread_t *p_input, sout_instance_t ** );
243
244 /* var.c */
245 void input_ControlVarInit ( input_thread_t * );
246 void input_ControlVarClean( input_thread_t * );
247 void input_ControlVarNavigation( input_thread_t * );
248 void input_ControlVarTitle( input_thread_t *, int i_title );
249
250 void input_ConfigVarInit ( input_thread_t * );
251
252 /* stream.c */
253 stream_t *stream_AccessNew( access_t *p_access, vlc_bool_t );
254 void stream_AccessDelete( stream_t *s );
255 void stream_AccessReset( stream_t *s );
256 void stream_AccessUpdate( stream_t *s );
257
258 /* decoder.c */
259 void       input_DecoderDiscontinuity( decoder_t * p_dec, vlc_bool_t b_flush );
260 vlc_bool_t input_DecoderEmpty( decoder_t * p_dec );
261
262 /* es_out.c */
263 es_out_t  *input_EsOutNew( input_thread_t * );
264 void       input_EsOutDelete( es_out_t * );
265 es_out_id_t *input_EsOutGetFromID( es_out_t *, int i_id );
266 void       input_EsOutDiscontinuity( es_out_t *, vlc_bool_t b_flush, vlc_bool_t b_audio );
267 void       input_EsOutSetDelay( es_out_t *, int i_cat, int64_t );
268 void       input_EsOutSetRate( es_out_t * );
269 vlc_bool_t input_EsOutDecodersEmpty( es_out_t * );
270
271 /* clock.c */
272 enum /* Synchro states */
273 {
274     SYNCHRO_OK     = 0,
275     SYNCHRO_START  = 1,
276     SYNCHRO_REINIT = 2,
277 };
278
279 typedef struct
280 {
281     /* Synchronization information */
282     mtime_t                 delta_cr;
283     mtime_t                 cr_ref, sysdate_ref;
284     mtime_t                 last_sysdate;
285     mtime_t                 last_cr; /* reference to detect unexpected stream
286                                       * discontinuities                      */
287     mtime_t                 last_pts;
288     mtime_t                 last_update;
289     int                     i_synchro_state;
290
291     vlc_bool_t              b_master;
292
293     int                     i_rate;
294
295     /* Config */
296     int                     i_cr_average;
297     int                     i_delta_cr_residue;
298 } input_clock_t;
299
300 void    input_ClockInit( input_thread_t *, input_clock_t *, vlc_bool_t b_master, int i_cr_average );
301 void    input_ClockSetPCR( input_thread_t *, input_clock_t *, mtime_t );
302 mtime_t input_ClockGetTS( input_thread_t *, input_clock_t *, mtime_t );
303 void    input_ClockSetRate( input_thread_t *, input_clock_t *cl );
304
305 /* Subtitles */
306 char **subtitles_Detect( input_thread_t *, char* path, const char *fname );
307 int subtitles_Filter( const char *);
308
309 void MRLSplit( vlc_object_t *, char *, const char **, const char **, char ** );
310
311 static inline void input_ChangeState( input_thread_t *p_input, int state )
312 {
313     var_SetInteger( p_input, "state", p_input->i_state = state );
314 }
315
316 /* Access */
317
318 #define access2_New( a, b, c, d, e ) __access2_New(VLC_OBJECT(a), b, c, d, e )
319 access_t * __access2_New( vlc_object_t *p_obj, const char *psz_access,
320                           const char *psz_demux, const char *psz_path,
321                           vlc_bool_t b_quick );
322 access_t * access2_FilterNew( access_t *p_source,
323                               const char *psz_access_filter );
324 void access2_Delete( access_t * );
325
326 /* Demuxer */
327 #include <vlc_demux.h>
328
329 /* stream_t *s could be null and then it mean a access+demux in one */
330 #define demux2_New( a, b, c, d, e, f,g ) __demux2_New(VLC_OBJECT(a),b,c,d,e,f,g)
331 demux_t *__demux2_New(vlc_object_t *p_obj, const char *psz_access, const char *psz_demux, const char *psz_path, stream_t *s, es_out_t *out, vlc_bool_t );
332
333 void demux2_Delete(demux_t *);
334
335 static inline int demux2_Demux( demux_t *p_demux )
336 {
337     return p_demux->pf_demux( p_demux );
338 }
339 static inline int demux2_vaControl( demux_t *p_demux, int i_query, va_list args )
340 {
341     return p_demux->pf_control( p_demux, i_query, args );
342 }
343 static inline int demux2_Control( demux_t *p_demux, int i_query, ... )
344 {
345     va_list args;
346     int     i_result;
347
348     va_start( args, i_query );
349     i_result = demux2_vaControl( p_demux, i_query, args );
350     va_end( args );
351     return i_result;
352 }
353
354 #if defined(__PLUGIN__) || defined(__BUILTIN__)
355 # warning This is an internal header, something is wrong if you see this message.
356 #else
357 /* Stream */
358 /**
359  * stream_t definition
360  */
361 struct stream_t
362 {
363     VLC_COMMON_MEMBERS
364
365     /*block_t *(*pf_block)  ( stream_t *, int i_size );*/
366     int      (*pf_read)   ( stream_t *, void *p_read, int i_read );
367     int      (*pf_peek)   ( stream_t *, const uint8_t **pp_peek, int i_peek );
368     int      (*pf_control)( stream_t *, int i_query, va_list );
369     void     (*pf_destroy)( stream_t *);
370
371     stream_sys_t *p_sys;
372
373     /* UTF-16 and UTF-32 file reading */
374     vlc_iconv_t     conv;
375     int             i_char_width;
376     vlc_bool_t      b_little_endian;
377 };
378
379 #include <libvlc.h>
380
381 static inline stream_t *vlc_stream_create( vlc_object_t *obj )
382 {
383     return (stream_t *)vlc_custom_create( obj, sizeof(stream_t),
384                                           VLC_OBJECT_STREAM, "stream" );
385 }
386 #endif
387
388 #endif