]> git.sesse.net Git - vlc/blob - src/input/input.c
f5c6d206a6149f3312e6aee749787330d0c30984
[vlc] / src / input / input.c
1 /*****************************************************************************
2  * input.c: input thread
3  *****************************************************************************
4  * Copyright (C) 1998-2007 VLC authors and VideoLAN
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 it
11  * under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33
34 #include <limits.h>
35 #include <assert.h>
36 #include <errno.h>
37 #include <sys/stat.h>
38
39 #include "input_internal.h"
40 #include "event.h"
41 #include "es_out.h"
42 #include "es_out_timeshift.h"
43 #include "access.h"
44 #include "demux.h"
45 #include "stream.h"
46 #include "item.h"
47 #include "resource.h"
48
49 #include <vlc_sout.h>
50 #include "../stream_output/stream_output.h"
51
52 #include <vlc_dialog.h>
53 #include <vlc_url.h>
54 #include <vlc_charset.h>
55 #include <vlc_fs.h>
56 #include <vlc_strings.h>
57 #include <vlc_modules.h>
58 #include <vlc_playlist.h> // FIXME
59
60 /*****************************************************************************
61  * Local prototypes
62  *****************************************************************************/
63 static void Destructor( input_thread_t * p_input );
64
65 static  void *Run            ( void * );
66
67 static input_thread_t * Create  ( vlc_object_t *, input_item_t *,
68                                   const char *, bool, input_resource_t * );
69 static  int             Init    ( input_thread_t *p_input );
70 static void             End     ( input_thread_t *p_input );
71 static void             MainLoop( input_thread_t *p_input, bool b_interactive );
72
73 static inline int ControlPop( input_thread_t *, int *, vlc_value_t *, mtime_t i_deadline, bool b_postpone_seek );
74 static void       ControlRelease( int i_type, vlc_value_t val );
75 static bool       ControlIsSeekRequest( int i_type );
76 static bool       Control( input_thread_t *, int, vlc_value_t );
77
78 static int  UpdateTitleSeekpointFromDemux( input_thread_t * );
79 static void UpdateGenericFromDemux( input_thread_t * );
80 static void UpdateTitleListfromDemux( input_thread_t * );
81
82 static void MRLSections( const char *, int *, int *, int *, int *);
83
84 static input_source_t *InputSourceNew( input_thread_t *);
85 static int  InputSourceInit( input_thread_t *, input_source_t *,
86                              const char *, const char *psz_forced_demux,
87                              bool b_in_can_fail );
88 static void InputSourceClean( input_source_t * );
89 static void InputSourceMeta( input_thread_t *, input_source_t *, vlc_meta_t * );
90
91 /* TODO */
92 //static void InputGetAttachments( input_thread_t *, input_source_t * );
93 static void SlaveDemux( input_thread_t *p_input, bool *pb_demux_polled );
94 static void SlaveSeek( input_thread_t *p_input );
95
96 static void InputMetaUser( input_thread_t *p_input, vlc_meta_t *p_meta );
97 static void InputUpdateMeta( input_thread_t *p_input, vlc_meta_t *p_meta );
98 static void InputGetExtraFiles( input_thread_t *p_input,
99                                 int *pi_list, char ***pppsz_list,
100                                 const char *psz_access, const char *psz_path );
101
102 static void AppendAttachment( int *pi_attachment, input_attachment_t ***ppp_attachment,
103                               int i_new, input_attachment_t **pp_new );
104
105 enum {
106     SUB_NOFLAG = 0x00,
107     SUB_FORCED = 0x01,
108     SUB_CANFAIL = 0x02,
109 };
110
111 static void input_SubtitleAdd( input_thread_t *, const char *, unsigned );
112 static void input_SubtitleFileAdd( input_thread_t *, char *, unsigned );
113 static void input_ChangeState( input_thread_t *p_input, int i_state ); /* TODO fix name */
114
115 #undef input_Create
116 /**
117  * Create a new input_thread_t.
118  *
119  * You need to call input_Start on it when you are done
120  * adding callback on the variables/events you want to monitor.
121  *
122  * \param p_parent a vlc_object
123  * \param p_item an input item
124  * \param psz_log an optional prefix for this input logs
125  * \param p_resource an optional input ressource
126  * \return a pointer to the spawned input thread
127  */
128 input_thread_t *input_Create( vlc_object_t *p_parent,
129                               input_item_t *p_item,
130                               const char *psz_log, input_resource_t *p_resource )
131 {
132     return Create( p_parent, p_item, psz_log, false, p_resource );
133 }
134
135 #undef input_CreateAndStart
136 /**
137  * Create a new input_thread_t and start it.
138  *
139  * Provided for convenience.
140  *
141  * \see input_Create
142  */
143 input_thread_t *input_CreateAndStart( vlc_object_t *p_parent,
144                                       input_item_t *p_item, const char *psz_log )
145 {
146     input_thread_t *p_input = input_Create( p_parent, p_item, psz_log, NULL );
147
148     if( input_Start( p_input ) )
149     {
150         vlc_object_release( p_input );
151         return NULL;
152     }
153     return p_input;
154 }
155
156 #undef input_Read
157 /**
158  * Initialize an input thread and run it until it stops by itself.
159  *
160  * \param p_parent a vlc_object
161  * \param p_item an input item
162  * \return an error code, VLC_SUCCESS on success
163  */
164 int input_Read( vlc_object_t *p_parent, input_item_t *p_item )
165 {
166     input_thread_t *p_input = Create( p_parent, p_item, NULL, false, NULL );
167     if( !p_input )
168         return VLC_EGENERIC;
169
170     if( !Init( p_input ) )
171     {
172         MainLoop( p_input, false );
173         End( p_input );
174     }
175
176     vlc_object_release( p_input );
177     return VLC_SUCCESS;
178 }
179
180 /**
181  * Initialize an input and initialize it to preparse the item
182  * This function is blocking. It will only accept parsing regular files.
183  *
184  * \param p_parent a vlc_object_t
185  * \param p_item an input item
186  * \return VLC_SUCCESS or an error
187  */
188 int input_Preparse( vlc_object_t *p_parent, input_item_t *p_item )
189 {
190     input_thread_t *p_input;
191
192     /* Allocate descriptor */
193     p_input = Create( p_parent, p_item, NULL, true, NULL );
194     if( !p_input )
195         return VLC_EGENERIC;
196
197     if( !Init( p_input ) )
198         End( p_input );
199
200     vlc_object_release( p_input );
201
202     return VLC_SUCCESS;
203 }
204
205 /**
206  * Start a input_thread_t created by input_Create.
207  *
208  * You must not start an already running input_thread_t.
209  *
210  * \param the input thread to start
211  */
212 int input_Start( input_thread_t *p_input )
213 {
214     /* Create thread and wait for its readiness. */
215     p_input->p->is_running = !vlc_clone( &p_input->p->thread,
216                                          Run, p_input, VLC_THREAD_PRIORITY_INPUT );
217     if( !p_input->p->is_running )
218     {
219         input_ChangeState( p_input, ERROR_S );
220         msg_Err( p_input, "cannot create input thread" );
221         return VLC_EGENERIC;
222     }
223     return VLC_SUCCESS;
224 }
225
226 /**
227  * Request a running input thread to stop and die
228  *
229  * b_abort must be true when a user stop is requested and not because you have
230  * detected an error or an eof. It will be used to properly send the
231  * INPUT_EVENT_ABORT event.
232  *
233  * \param p_input the input thread to stop
234  * \param b_abort true if the input has been aborted by a user request
235  */
236 void input_Stop( input_thread_t *p_input, bool b_abort )
237 {
238     /* Set die for input and ALL of this childrens (even (grand-)grand-childrens)
239      * It is needed here even if it is done in INPUT_CONTROL_SET_DIE handler to
240      * unlock the control loop */
241     ObjectKillChildrens( VLC_OBJECT(p_input) );
242
243     vlc_mutex_lock( &p_input->p->lock_control );
244     p_input->p->b_abort |= b_abort;
245     vlc_mutex_unlock( &p_input->p->lock_control );
246
247     input_ControlPush( p_input, INPUT_CONTROL_SET_DIE, NULL );
248 }
249
250 void input_Join( input_thread_t *p_input )
251 {
252     if( p_input->p->is_running )
253         vlc_join( p_input->p->thread, NULL );
254 }
255
256 void input_Release( input_thread_t *p_input )
257 {
258     vlc_object_release( p_input );
259 }
260
261 /**
262  * Close an input
263  *
264  * It does not call input_Stop itself.
265  */
266 void input_Close( input_thread_t *p_input )
267 {
268     input_Join( p_input );
269     input_Release( p_input );
270 }
271
272 /**
273  * Get the item from an input thread
274  * FIXME it does not increase ref count of the item.
275  * if it is used after p_input is destroyed nothing prevent it from
276  * being freed.
277  */
278 input_item_t *input_GetItem( input_thread_t *p_input )
279 {
280     assert( p_input && p_input->p );
281     return p_input->p->p_item;
282 }
283
284 /*****************************************************************************
285  * This function creates a new input, and returns a pointer
286  * to its description. On error, it returns NULL.
287  *
288  * XXX Do not forget to update vlc_input.h if you add new variables.
289  *****************************************************************************/
290 static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
291                                const char *psz_header, bool b_quick,
292                                input_resource_t *p_resource )
293 {
294     input_thread_t *p_input = NULL;                 /* thread descriptor */
295     int i;
296
297     /* Allocate descriptor */
298     p_input = vlc_custom_create( p_parent, sizeof( *p_input ), "input" );
299     if( p_input == NULL )
300         return NULL;
301
302     /* Construct a nice name for the input timer */
303     char psz_timer_name[255];
304     char * psz_name = input_item_GetName( p_item );
305     snprintf( psz_timer_name, sizeof(psz_timer_name),
306               "input launching for '%s'", psz_name );
307
308     msg_Dbg( p_input, "Creating an input for '%s'", psz_name);
309
310     free( psz_name );
311
312     p_input->p = calloc( 1, sizeof( input_thread_private_t ) );
313     if( !p_input->p )
314         return NULL;
315
316     /* Parse input options */
317     vlc_mutex_lock( &p_item->lock );
318     assert( (int)p_item->optflagc == p_item->i_options );
319     for( i = 0; i < p_item->i_options; i++ )
320         var_OptionParse( VLC_OBJECT(p_input), p_item->ppsz_options[i],
321                          !!(p_item->optflagv[i] & VLC_INPUT_OPTION_TRUSTED) );
322     vlc_mutex_unlock( &p_item->lock );
323
324     p_input->b_preparsing = b_quick;
325     p_input->psz_header = psz_header ? strdup( psz_header ) : NULL;
326
327     /* Init Common fields */
328     p_input->b_eof = false;
329     p_input->p->b_can_pace_control = true;
330     p_input->p->i_start = 0;
331     p_input->p->i_time  = 0;
332     p_input->p->i_stop  = 0;
333     p_input->p->i_run   = 0;
334     p_input->p->i_title = 0;
335     p_input->p->title = NULL;
336     p_input->p->i_title_offset = p_input->p->i_seekpoint_offset = 0;
337     p_input->p->i_state = INIT_S;
338     p_input->p->i_rate = INPUT_RATE_DEFAULT;
339     p_input->p->b_recording = false;
340     memset( &p_input->p->bookmark, 0, sizeof(p_input->p->bookmark) );
341     TAB_INIT( p_input->p->i_bookmark, p_input->p->pp_bookmark );
342     TAB_INIT( p_input->p->i_attachment, p_input->p->attachment );
343     p_input->p->p_sout   = NULL;
344     p_input->p->b_out_pace_control = false;
345
346     vlc_gc_incref( p_item ); /* Released in Destructor() */
347     p_input->p->p_item = p_item;
348
349     /* Init Input fields */
350     p_input->p->input.p_demux  = NULL;
351     p_input->p->input.b_title_demux = false;
352     p_input->p->input.i_title  = 0;
353     p_input->p->input.title    = NULL;
354     p_input->p->input.i_title_offset = p_input->p->input.i_seekpoint_offset = 0;
355     p_input->p->input.b_can_pace_control = true;
356     p_input->p->input.b_can_rate_control = true;
357     p_input->p->input.b_rescale_ts = true;
358     p_input->p->input.b_eof = false;
359
360     vlc_mutex_lock( &p_item->lock );
361
362     if( !p_item->p_stats )
363         p_item->p_stats = stats_NewInputStats( p_input );
364     vlc_mutex_unlock( &p_item->lock );
365
366     /* No slave */
367     p_input->p->i_slave = 0;
368     p_input->p->slave   = NULL;
369
370     /* */
371     if( p_resource )
372     {
373         p_input->p->p_resource_private = NULL;
374         p_input->p->p_resource = input_resource_Hold( p_resource );
375     }
376     else
377     {
378         p_input->p->p_resource_private = input_resource_New( VLC_OBJECT( p_input ) );
379         p_input->p->p_resource = input_resource_Hold( p_input->p->p_resource_private );
380     }
381     input_resource_SetInput( p_input->p->p_resource, p_input );
382
383     /* Init control buffer */
384     vlc_mutex_init( &p_input->p->lock_control );
385     vlc_cond_init( &p_input->p->wait_control );
386     p_input->p->i_control = 0;
387     p_input->p->b_abort = false;
388     p_input->p->is_running = false;
389
390     /* Create Object Variables for private use only */
391     input_ConfigVarInit( p_input );
392
393     /* Create Objects variables for public Get and Set */
394     input_ControlVarInit( p_input );
395
396     /* */
397     if( !p_input->b_preparsing )
398     {
399         char *psz_bookmarks = var_GetNonEmptyString( p_input, "bookmarks" );
400         if( psz_bookmarks )
401         {
402             /* FIXME: have a common cfg parsing routine used by sout and others */
403             char *psz_parser, *psz_start, *psz_end;
404             psz_parser = psz_bookmarks;
405             while( (psz_start = strchr( psz_parser, '{' ) ) )
406             {
407                  seekpoint_t *p_seekpoint;
408                  char backup;
409                  psz_start++;
410                  psz_end = strchr( psz_start, '}' );
411                  if( !psz_end ) break;
412                  psz_parser = psz_end + 1;
413                  backup = *psz_parser;
414                  *psz_parser = 0;
415                  *psz_end = ',';
416
417                  p_seekpoint = vlc_seekpoint_New();
418                  while( (psz_end = strchr( psz_start, ',' ) ) )
419                  {
420                      *psz_end = 0;
421                      if( !strncmp( psz_start, "name=", 5 ) )
422                      {
423                          p_seekpoint->psz_name = strdup(psz_start + 5);
424                      }
425                      else if( !strncmp( psz_start, "bytes=", 6 ) )
426                      {
427                          p_seekpoint->i_byte_offset = atoll(psz_start + 6);
428                      }
429                      else if( !strncmp( psz_start, "time=", 5 ) )
430                      {
431                          p_seekpoint->i_time_offset = atoll(psz_start + 5) *
432                                                         1000000;
433                      }
434                      psz_start = psz_end + 1;
435                 }
436                 msg_Dbg( p_input, "adding bookmark: %s, bytes=%"PRId64", time=%"PRId64,
437                                   p_seekpoint->psz_name, p_seekpoint->i_byte_offset,
438                                   p_seekpoint->i_time_offset );
439                 input_Control( p_input, INPUT_ADD_BOOKMARK, p_seekpoint );
440                 vlc_seekpoint_Delete( p_seekpoint );
441                 *psz_parser = backup;
442             }
443             free( psz_bookmarks );
444         }
445     }
446
447     /* Remove 'Now playing' info as it is probably outdated */
448     input_item_SetNowPlaying( p_item, NULL );
449     input_SendEventMeta( p_input );
450
451     /* */
452     if( p_input->b_preparsing )
453         p_input->i_flags |= OBJECT_FLAGS_QUIET | OBJECT_FLAGS_NOINTERACT;
454
455     /* Make sure the interaction option is honored */
456     if( !var_InheritBool( p_input, "interact" ) )
457         p_input->i_flags |= OBJECT_FLAGS_NOINTERACT;
458
459     /* */
460     memset( &p_input->p->counters, 0, sizeof( p_input->p->counters ) );
461     vlc_mutex_init( &p_input->p->counters.counters_lock );
462
463     p_input->p->p_es_out_display = input_EsOutNew( p_input, p_input->p->i_rate );
464     p_input->p->p_es_out = NULL;
465
466     /* Set the destructor when we are sure we are initialized */
467     vlc_object_set_destructor( p_input, (vlc_destructor_t)Destructor );
468
469     return p_input;
470 }
471
472 /**
473  * Input destructor (called when the object's refcount reaches 0).
474  */
475 static void Destructor( input_thread_t * p_input )
476 {
477 #ifndef NDEBUG
478     char * psz_name = input_item_GetName( p_input->p->p_item );
479     msg_Dbg( p_input, "Destroying the input for '%s'", psz_name);
480     free( psz_name );
481 #endif
482
483     if( p_input->p->p_es_out_display )
484         es_out_Delete( p_input->p->p_es_out_display );
485
486     if( p_input->p->p_resource )
487         input_resource_Release( p_input->p->p_resource );
488     if( p_input->p->p_resource_private )
489         input_resource_Release( p_input->p->p_resource_private );
490
491     vlc_gc_decref( p_input->p->p_item );
492
493     vlc_mutex_destroy( &p_input->p->counters.counters_lock );
494
495     for( int i = 0; i < p_input->p->i_control; i++ )
496     {
497         input_control_t *p_ctrl = &p_input->p->control[i];
498         ControlRelease( p_ctrl->i_type, p_ctrl->val );
499     }
500
501     vlc_cond_destroy( &p_input->p->wait_control );
502     vlc_mutex_destroy( &p_input->p->lock_control );
503     free( p_input->p );
504 }
505
506 /*****************************************************************************
507  * Run: main thread loop
508  * This is the "normal" thread that spawns the input processing chain,
509  * reads the stream, cleans up and waits
510  *****************************************************************************/
511 static void *Run( void *obj )
512 {
513     input_thread_t *p_input = (input_thread_t *)obj;
514     const int canc = vlc_savecancel();
515
516     if( Init( p_input ) )
517         goto exit;
518
519     MainLoop( p_input, true ); /* FIXME it can be wrong (like with VLM) */
520
521     /* Clean up */
522     End( p_input );
523
524 exit:
525     /* Tell we're dead */
526     vlc_mutex_lock( &p_input->p->lock_control );
527     const bool b_abort = p_input->p->b_abort;
528     vlc_mutex_unlock( &p_input->p->lock_control );
529
530     if( b_abort )
531         input_SendEventAbort( p_input );
532     input_SendEventDead( p_input );
533
534     vlc_restorecancel( canc );
535     return NULL;
536 }
537
538 /*****************************************************************************
539  * Main loop: Fill buffers from access, and demux
540  *****************************************************************************/
541
542 /**
543  * MainLoopDemux
544  * It asks the demuxer to demux some data
545  */
546 static void MainLoopDemux( input_thread_t *p_input, bool *pb_changed, bool *pb_demux_polled, mtime_t i_start_mdate )
547 {
548     int i_ret;
549
550     *pb_changed = false;
551     *pb_demux_polled = p_input->p->input.p_demux->pf_demux != NULL;
552
553     if( ( p_input->p->i_stop > 0 && p_input->p->i_time >= p_input->p->i_stop ) ||
554         ( p_input->p->i_run > 0 && i_start_mdate+p_input->p->i_run < mdate() ) )
555         i_ret = 0; /* EOF */
556     else
557         i_ret = demux_Demux( p_input->p->input.p_demux );
558
559     if( i_ret > 0 )
560     {
561         if( p_input->p->input.p_demux->info.i_update )
562         {
563             if( p_input->p->input.p_demux->info.i_update & INPUT_UPDATE_TITLE_LIST )
564             {
565                 UpdateTitleListfromDemux( p_input );
566                 p_input->p->input.p_demux->info.i_update &= ~INPUT_UPDATE_TITLE_LIST;
567             }
568             if( p_input->p->input.b_title_demux )
569             {
570                 i_ret = UpdateTitleSeekpointFromDemux( p_input );
571                 *pb_changed = true;
572             }
573             UpdateGenericFromDemux( p_input );
574         }
575     }
576
577     if( i_ret == 0 )    /* EOF */
578     {
579         msg_Dbg( p_input, "EOF reached" );
580         p_input->p->input.b_eof = true;
581         es_out_Eos(p_input->p->p_es_out);
582     }
583     else if( i_ret < 0 )
584     {
585         input_ChangeState( p_input, ERROR_S );
586     }
587
588     if( i_ret > 0 && p_input->p->i_slave > 0 )
589     {
590         bool b_demux_polled;
591         SlaveDemux( p_input, &b_demux_polled );
592
593         *pb_demux_polled |= b_demux_polled;
594     }
595 }
596
597 static int MainLoopTryRepeat( input_thread_t *p_input, mtime_t *pi_start_mdate )
598 {
599     int i_repeat = var_GetInteger( p_input, "input-repeat" );
600     if( i_repeat == 0 )
601         return VLC_EGENERIC;
602
603     vlc_value_t val;
604
605     msg_Dbg( p_input, "repeating the same input (%d)", i_repeat );
606     if( i_repeat > 0 )
607     {
608         i_repeat--;
609         var_SetInteger( p_input, "input-repeat", i_repeat );
610     }
611
612     /* Seek to start title/seekpoint */
613     val.i_int = p_input->p->input.i_title_start -
614         p_input->p->input.i_title_offset;
615     if( val.i_int < 0 || val.i_int >= p_input->p->input.i_title )
616         val.i_int = 0;
617     input_ControlPush( p_input,
618                        INPUT_CONTROL_SET_TITLE, &val );
619
620     val.i_int = p_input->p->input.i_seekpoint_start -
621         p_input->p->input.i_seekpoint_offset;
622     if( val.i_int > 0 /* TODO: check upper boundary */ )
623         input_ControlPush( p_input,
624                            INPUT_CONTROL_SET_SEEKPOINT, &val );
625
626     /* Seek to start position */
627     if( p_input->p->i_start > 0 )
628     {
629         val.i_time = p_input->p->i_start;
630         input_ControlPush( p_input, INPUT_CONTROL_SET_TIME, &val );
631     }
632     else
633     {
634         val.f_float = 0.0;
635         input_ControlPush( p_input, INPUT_CONTROL_SET_POSITION, &val );
636     }
637
638     /* */
639     *pi_start_mdate = mdate();
640     return VLC_SUCCESS;
641 }
642
643 /**
644  * MainLoopInterface
645  * It update the variables used by the interfaces
646  */
647 static void MainLoopInterface( input_thread_t *p_input )
648 {
649     double f_position = 0.0;
650     mtime_t i_time = 0;
651     mtime_t i_length = 0;
652
653     /* update input status variables */
654     if( demux_Control( p_input->p->input.p_demux,
655                        DEMUX_GET_POSITION, &f_position ) )
656         f_position = 0.0;
657
658     if( demux_Control( p_input->p->input.p_demux,
659                        DEMUX_GET_TIME, &i_time ) )
660         i_time = 0;
661     p_input->p->i_time = i_time;
662
663     if( demux_Control( p_input->p->input.p_demux,
664                        DEMUX_GET_LENGTH, &i_length ) )
665         i_length = 0;
666
667     es_out_SetTimes( p_input->p->p_es_out, f_position, i_time, i_length );
668
669     /* update current bookmark */
670     vlc_mutex_lock( &p_input->p->p_item->lock );
671     p_input->p->bookmark.i_time_offset = i_time;
672     p_input->p->bookmark.i_byte_offset = -1;
673     vlc_mutex_unlock( &p_input->p->p_item->lock );
674 }
675
676 /**
677  * MainLoopStatistic
678  * It updates the globals statics
679  */
680 static void MainLoopStatistic( input_thread_t *p_input )
681 {
682     stats_ComputeInputStats( p_input, p_input->p->p_item->p_stats );
683     input_SendEventStatistics( p_input );
684 }
685
686 /**
687  * MainLoop
688  * The main input loop.
689  */
690 static void MainLoop( input_thread_t *p_input, bool b_interactive )
691 {
692     mtime_t i_start_mdate = mdate();
693     mtime_t i_intf_update = 0;
694     mtime_t i_statistic_update = 0;
695     mtime_t i_last_seek_mdate = 0;
696     bool b_pause_after_eof = b_interactive &&
697                              var_CreateGetBool( p_input, "play-and-pause" );
698
699     while( vlc_object_alive( p_input ) && !p_input->b_error )
700     {
701         bool b_force_update;
702         vlc_value_t val;
703         mtime_t i_current;
704         mtime_t i_wakeup;
705         bool b_paused;
706         bool b_demux_polled;
707
708         /* Demux data */
709         b_force_update = false;
710         i_wakeup = 0;
711         /* FIXME if p_input->p->i_state == PAUSE_S the access/access_demux
712          * is paused -> this may cause problem with some of them
713          * The same problem can be seen when seeking while paused */
714         b_paused = p_input->p->i_state == PAUSE_S &&
715                    ( !es_out_GetBuffering( p_input->p->p_es_out ) || p_input->p->input.b_eof );
716
717         b_demux_polled = true;
718         if( !b_paused )
719         {
720             if( !p_input->p->input.b_eof )
721             {
722                 MainLoopDemux( p_input, &b_force_update, &b_demux_polled, i_start_mdate );
723
724                 i_wakeup = es_out_GetWakeup( p_input->p->p_es_out );
725             }
726             else if( !es_out_GetEmpty( p_input->p->p_es_out ) )
727             {
728                 msg_Dbg( p_input, "waiting decoder fifos to empty" );
729                 i_wakeup = mdate() + INPUT_IDLE_SLEEP;
730             }
731             /* Pause after eof only if the input is pausable.
732              * This way we won't trigger timeshifting for nothing */
733             else if( b_pause_after_eof && p_input->p->b_can_pause )
734             {
735                 msg_Dbg( p_input, "pausing at EOF (pause after each)");
736                 val.i_int = PAUSE_S;
737                 Control( p_input, INPUT_CONTROL_SET_STATE, val );
738
739                 b_paused = true;
740             }
741             else
742             {
743                 if( MainLoopTryRepeat( p_input, &i_start_mdate ) )
744                     break;
745                 b_pause_after_eof = var_GetBool( p_input, "play-and-pause" );
746             }
747         }
748
749         /* */
750         do {
751             mtime_t i_deadline = i_wakeup;
752             if( b_paused || !b_demux_polled )
753                 i_deadline = __MIN( i_intf_update, i_statistic_update );
754
755             /* Handle control */
756             for( ;; )
757             {
758                 mtime_t i_limit = i_deadline;
759
760                 /* We will postpone the execution of a seek until we have
761                  * finished the ES bufferisation (postpone is limited to
762                  * 125ms) */
763                 bool b_buffering = es_out_GetBuffering( p_input->p->p_es_out ) &&
764                                    !p_input->p->input.b_eof;
765                 if( b_buffering )
766                 {
767                     /* When postpone is in order, check the ES level every 20ms */
768                     mtime_t i_current = mdate();
769                     if( i_last_seek_mdate + INT64_C(125000) >= i_current )
770                         i_limit = __MIN( i_deadline, i_current + INT64_C(20000) );
771                 }
772
773                 int i_type;
774                 if( ControlPop( p_input, &i_type, &val, i_limit, b_buffering ) )
775                 {
776                     if( b_buffering && i_limit < i_deadline )
777                         continue;
778                     break;
779                 }
780
781 #ifndef NDEBUG
782                 msg_Dbg( p_input, "control type=%d", i_type );
783 #endif
784
785                 if( Control( p_input, i_type, val ) )
786                 {
787                     if( ControlIsSeekRequest( i_type ) )
788                         i_last_seek_mdate = mdate();
789                     b_force_update = true;
790                 }
791             }
792
793             /* Update interface and statistics */
794             i_current = mdate();
795             if( i_intf_update < i_current || b_force_update )
796             {
797                 MainLoopInterface( p_input );
798                 i_intf_update = i_current + INT64_C(250000);
799                 b_force_update = false;
800             }
801             if( i_statistic_update < i_current )
802             {
803                 MainLoopStatistic( p_input );
804                 i_statistic_update = i_current + INT64_C(1000000);
805             }
806
807             /* Update the wakeup time */
808             if( i_wakeup != 0 )
809                 i_wakeup = es_out_GetWakeup( p_input->p->p_es_out );
810         } while( i_current < i_wakeup );
811     }
812
813     if( !p_input->b_error )
814         input_ChangeState( p_input, END_S );
815 }
816
817 static void InitStatistics( input_thread_t * p_input )
818 {
819     if( p_input->b_preparsing ) return;
820
821     /* Prepare statistics */
822 #define INIT_COUNTER( c, compute ) p_input->p->counters.p_##c = \
823  stats_CounterCreate( STATS_##compute);
824     if( libvlc_stats( p_input ) )
825     {
826         INIT_COUNTER( read_bytes, COUNTER );
827         INIT_COUNTER( read_packets, COUNTER );
828         INIT_COUNTER( demux_read, COUNTER );
829         INIT_COUNTER( input_bitrate, DERIVATIVE );
830         INIT_COUNTER( demux_bitrate, DERIVATIVE );
831         INIT_COUNTER( demux_corrupted, COUNTER );
832         INIT_COUNTER( demux_discontinuity, COUNTER );
833         INIT_COUNTER( played_abuffers, COUNTER );
834         INIT_COUNTER( lost_abuffers, COUNTER );
835         INIT_COUNTER( displayed_pictures, COUNTER );
836         INIT_COUNTER( lost_pictures, COUNTER );
837         INIT_COUNTER( decoded_audio, COUNTER );
838         INIT_COUNTER( decoded_video, COUNTER );
839         INIT_COUNTER( decoded_sub, COUNTER );
840         p_input->p->counters.p_sout_send_bitrate = NULL;
841         p_input->p->counters.p_sout_sent_packets = NULL;
842         p_input->p->counters.p_sout_sent_bytes = NULL;
843     }
844 }
845
846 #ifdef ENABLE_SOUT
847 static int InitSout( input_thread_t * p_input )
848 {
849     if( p_input->b_preparsing )
850         return VLC_SUCCESS;
851
852     /* Find a usable sout and attach it to p_input */
853     char *psz = var_GetNonEmptyString( p_input, "sout" );
854     if( psz && strncasecmp( p_input->p->p_item->psz_uri, "vlc:", 4 ) )
855     {
856         p_input->p->p_sout  = input_resource_RequestSout( p_input->p->p_resource, NULL, psz );
857         if( !p_input->p->p_sout )
858         {
859             input_ChangeState( p_input, ERROR_S );
860             msg_Err( p_input, "cannot start stream output instance, " \
861                               "aborting" );
862             free( psz );
863             return VLC_EGENERIC;
864         }
865         if( libvlc_stats( p_input ) )
866         {
867             INIT_COUNTER( sout_sent_packets, COUNTER );
868             INIT_COUNTER( sout_sent_bytes, COUNTER );
869             INIT_COUNTER( sout_send_bitrate, DERIVATIVE );
870         }
871     }
872     else
873     {
874         input_resource_RequestSout( p_input->p->p_resource, NULL, NULL );
875     }
876     free( psz );
877
878     return VLC_SUCCESS;
879 }
880 #endif
881
882 static void InitTitle( input_thread_t * p_input )
883 {
884     input_source_t *p_master = &p_input->p->input;
885
886     if( p_input->b_preparsing )
887         return;
888
889     vlc_mutex_lock( &p_input->p->p_item->lock );
890     /* Create global title (from master) */
891     p_input->p->i_title = p_master->i_title;
892     p_input->p->title   = p_master->title;
893     p_input->p->i_title_offset = p_master->i_title_offset;
894     p_input->p->i_seekpoint_offset = p_master->i_seekpoint_offset;
895     if( p_input->p->i_title > 0 )
896     {
897         /* Setup variables */
898         input_ControlVarNavigation( p_input );
899         input_SendEventTitle( p_input, 0 );
900     }
901
902     /* Global flag */
903     p_input->p->b_can_pace_control    = p_master->b_can_pace_control;
904     p_input->p->b_can_pause        = p_master->b_can_pause;
905     p_input->p->b_can_rate_control = p_master->b_can_rate_control;
906     vlc_mutex_unlock( &p_input->p->p_item->lock );
907 }
908
909 static void StartTitle( input_thread_t * p_input )
910 {
911     vlc_value_t val;
912
913     /* Start title/chapter */
914     val.i_int = p_input->p->input.i_title_start -
915                 p_input->p->input.i_title_offset;
916     if( val.i_int > 0 && val.i_int < p_input->p->input.i_title )
917         input_ControlPush( p_input, INPUT_CONTROL_SET_TITLE, &val );
918
919     val.i_int = p_input->p->input.i_seekpoint_start -
920                 p_input->p->input.i_seekpoint_offset;
921     if( val.i_int > 0 /* TODO: check upper boundary */ )
922         input_ControlPush( p_input, INPUT_CONTROL_SET_SEEKPOINT, &val );
923
924     /* Start/stop/run time */
925     p_input->p->i_start = (int64_t)(1000000.0
926                                      * var_GetFloat( p_input, "start-time" ));
927     p_input->p->i_stop  = (int64_t)(1000000.0
928                                      * var_GetFloat( p_input, "stop-time" ));
929     p_input->p->i_run   = (int64_t)(1000000.0
930                                      * var_GetFloat( p_input, "run-time" ));
931     if( p_input->p->i_run < 0 )
932     {
933         msg_Warn( p_input, "invalid run-time ignored" );
934         p_input->p->i_run = 0;
935     }
936
937     if( p_input->p->i_start > 0 )
938     {
939         vlc_value_t s;
940
941         msg_Dbg( p_input, "starting at time: %ds",
942                  (int)( p_input->p->i_start / INT64_C(1000000) ) );
943
944         s.i_time = p_input->p->i_start;
945         input_ControlPush( p_input, INPUT_CONTROL_SET_TIME, &s );
946     }
947     if( p_input->p->i_stop > 0 && p_input->p->i_stop <= p_input->p->i_start )
948     {
949         msg_Warn( p_input, "invalid stop-time ignored" );
950         p_input->p->i_stop = 0;
951     }
952     p_input->p->b_fast_seek = var_GetBool( p_input, "input-fast-seek" );
953 }
954
955 static void LoadSubtitles( input_thread_t *p_input )
956 {
957     /* Load subtitles */
958     /* Get fps and set it if not already set */
959     const double f_fps = p_input->p->f_fps;
960     if( f_fps > 1.0 )
961     {
962         float f_requested_fps;
963
964         var_Create( p_input, "sub-original-fps", VLC_VAR_FLOAT );
965         var_SetFloat( p_input, "sub-original-fps", f_fps );
966
967         f_requested_fps = var_CreateGetFloat( p_input, "sub-fps" );
968         if( f_requested_fps != f_fps )
969         {
970             var_Create( p_input, "sub-fps", VLC_VAR_FLOAT|
971                                             VLC_VAR_DOINHERIT );
972             var_SetFloat( p_input, "sub-fps", f_requested_fps );
973         }
974     }
975
976     const int i_delay = var_CreateGetInteger( p_input, "sub-delay" );
977     if( i_delay != 0 )
978         var_SetTime( p_input, "spu-delay", (mtime_t)i_delay * 100000 );
979
980     /* Look for and add subtitle files */
981     unsigned i_flags = SUB_FORCED;
982
983     char *psz_subtitle = var_GetNonEmptyString( p_input, "sub-file" );
984     if( psz_subtitle != NULL )
985     {
986         msg_Dbg( p_input, "forced subtitle: %s", psz_subtitle );
987         input_SubtitleFileAdd( p_input, psz_subtitle, i_flags );
988         i_flags = SUB_NOFLAG;
989     }
990
991     if( var_GetBool( p_input, "sub-autodetect-file" ) )
992     {
993         char *psz_autopath = var_GetNonEmptyString( p_input, "sub-autodetect-path" );
994         char **ppsz_subs = subtitles_Detect( p_input, psz_autopath,
995                                              p_input->p->p_item->psz_uri );
996         free( psz_autopath );
997
998         for( int i = 0; ppsz_subs && ppsz_subs[i]; i++ )
999         {
1000             if( !psz_subtitle || strcmp( psz_subtitle, ppsz_subs[i] ) )
1001             {
1002                 i_flags |= SUB_CANFAIL;
1003                 input_SubtitleFileAdd( p_input, ppsz_subs[i], i_flags );
1004                 i_flags = SUB_NOFLAG;
1005             }
1006
1007             free( ppsz_subs[i] );
1008         }
1009         free( ppsz_subs );
1010     }
1011     free( psz_subtitle );
1012
1013     /* Load subtitles from attachments */
1014     int i_attachment = 0;
1015     input_attachment_t **pp_attachment = NULL;
1016
1017     vlc_mutex_lock( &p_input->p->p_item->lock );
1018     for( int i = 0; i < p_input->p->i_attachment; i++ )
1019     {
1020         const input_attachment_t *a = p_input->p->attachment[i];
1021         if( !strcmp( a->psz_mime, "application/x-srt" ) )
1022             TAB_APPEND( i_attachment, pp_attachment,
1023                         vlc_input_attachment_New( a->psz_name, NULL,
1024                                                   a->psz_description, NULL, 0 ) );
1025     }
1026     vlc_mutex_unlock( &p_input->p->p_item->lock );
1027
1028     if( i_attachment > 0 )
1029         var_Create( p_input, "sub-description", VLC_VAR_STRING );
1030     for( int i = 0; i < i_attachment; i++ )
1031     {
1032         input_attachment_t *a = pp_attachment[i];
1033         if( !a )
1034             continue;
1035         char *psz_mrl;
1036         if( a->psz_name[i] &&
1037             asprintf( &psz_mrl, "attachment://%s", a->psz_name ) >= 0 )
1038         {
1039             var_SetString( p_input, "sub-description", a->psz_description ? a->psz_description : "");
1040
1041             input_SubtitleAdd( p_input, psz_mrl, i_flags );
1042
1043             i_flags = SUB_NOFLAG;
1044             free( psz_mrl );
1045         }
1046         vlc_input_attachment_Delete( a );
1047     }
1048     free( pp_attachment );
1049     if( i_attachment > 0 )
1050         var_Destroy( p_input, "sub-description" );
1051 }
1052
1053 static void LoadSlaves( input_thread_t *p_input )
1054 {
1055     char *psz = var_GetNonEmptyString( p_input, "input-slave" );
1056     if( !psz )
1057         return;
1058
1059     char *psz_org = psz;
1060     while( psz && *psz )
1061     {
1062         while( *psz == ' ' || *psz == '#' )
1063             psz++;
1064
1065         char *psz_delim = strchr( psz, '#' );
1066         if( psz_delim )
1067             *psz_delim++ = '\0';
1068
1069         if( *psz == 0 )
1070             break;
1071
1072         char *uri = strstr(psz, "://")
1073                                    ? strdup( psz ) : vlc_path2uri( psz, NULL );
1074         psz = psz_delim;
1075         if( uri == NULL )
1076             continue;
1077         msg_Dbg( p_input, "adding slave input '%s'", uri );
1078
1079         input_source_t *p_slave = InputSourceNew( p_input );
1080         if( p_slave && !InputSourceInit( p_input, p_slave, uri, NULL, false ) )
1081             TAB_APPEND( p_input->p->i_slave, p_input->p->slave, p_slave );
1082         else
1083             free( p_slave );
1084         free( uri );
1085     }
1086     free( psz_org );
1087 }
1088
1089 static void UpdatePtsDelay( input_thread_t *p_input )
1090 {
1091     input_thread_private_t *p_sys = p_input->p;
1092
1093     /* Get max pts delay from input source */
1094     mtime_t i_pts_delay = p_sys->input.i_pts_delay;
1095     for( int i = 0; i < p_sys->i_slave; i++ )
1096         i_pts_delay = __MAX( i_pts_delay, p_sys->slave[i]->i_pts_delay );
1097
1098     if( i_pts_delay < 0 )
1099         i_pts_delay = 0;
1100
1101     /* Take care of audio/spu delay */
1102     const mtime_t i_audio_delay = var_GetTime( p_input, "audio-delay" );
1103     const mtime_t i_spu_delay   = var_GetTime( p_input, "spu-delay" );
1104     const mtime_t i_extra_delay = __MIN( i_audio_delay, i_spu_delay );
1105     if( i_extra_delay < 0 )
1106         i_pts_delay -= i_extra_delay;
1107
1108     /* Update cr_average depending on the caching */
1109     const int i_cr_average = var_GetInteger( p_input, "cr-average" ) * i_pts_delay / DEFAULT_PTS_DELAY;
1110
1111     /* */
1112     es_out_SetDelay( p_input->p->p_es_out_display, AUDIO_ES, i_audio_delay );
1113     es_out_SetDelay( p_input->p->p_es_out_display, SPU_ES, i_spu_delay );
1114     es_out_SetJitter( p_input->p->p_es_out, i_pts_delay, 0, i_cr_average );
1115 }
1116
1117 static void InitPrograms( input_thread_t * p_input )
1118 {
1119     int i_es_out_mode;
1120     vlc_list_t list;
1121
1122     /* Compute correct pts_delay */
1123     UpdatePtsDelay( p_input );
1124
1125     /* Set up es_out */
1126     i_es_out_mode = ES_OUT_MODE_AUTO;
1127     if( p_input->p->p_sout )
1128     {
1129         char *prgms;
1130
1131         if( var_GetBool( p_input, "sout-all" ) )
1132         {
1133             i_es_out_mode = ES_OUT_MODE_ALL;
1134         }
1135         else
1136         if( (prgms = var_GetNonEmptyString( p_input, "programs" )) != NULL )
1137         {
1138             char *buf;
1139
1140             TAB_INIT( list.i_count, list.p_values );
1141             for( const char *prgm = strtok_r( prgms, ",", &buf );
1142                  prgm != NULL;
1143                  prgm = strtok_r( NULL, ",", &buf ) )
1144             {
1145                 vlc_value_t val = { .i_int = atoi( prgm ) };
1146                 INSERT_ELEM( list.p_values, list.i_count, list.i_count, val );
1147             }
1148
1149             if( list.i_count > 0 )
1150                 i_es_out_mode = ES_OUT_MODE_PARTIAL;
1151                 /* Note : we should remove the "program" callback. */
1152
1153             free( prgms );
1154         }
1155     }
1156     es_out_SetMode( p_input->p->p_es_out, i_es_out_mode );
1157
1158     /* Inform the demuxer about waited group (needed only for DVB) */
1159     if( i_es_out_mode == ES_OUT_MODE_ALL )
1160     {
1161         demux_Control( p_input->p->input.p_demux, DEMUX_SET_GROUP, -1, NULL );
1162     }
1163     else if( i_es_out_mode == ES_OUT_MODE_PARTIAL )
1164     {
1165         demux_Control( p_input->p->input.p_demux, DEMUX_SET_GROUP, -1,
1166                        &list );
1167         TAB_CLEAN( list.i_count, list.p_values );
1168     }
1169     else
1170     {
1171         demux_Control( p_input->p->input.p_demux, DEMUX_SET_GROUP,
1172                        es_out_GetGroupForced( p_input->p->p_es_out ), NULL );
1173     }
1174 }
1175
1176 static int Init( input_thread_t * p_input )
1177 {
1178     vlc_meta_t *p_meta;
1179     int i;
1180
1181     for( i = 0; i < p_input->p->p_item->i_options; i++ )
1182     {
1183         if( !strncmp( p_input->p->p_item->ppsz_options[i], "meta-file", 9 ) )
1184         {
1185             msg_Dbg( p_input, "Input is a meta file: disabling unneeded options" );
1186             var_SetString( p_input, "sout", "" );
1187             var_SetBool( p_input, "sout-all", false );
1188             var_SetString( p_input, "input-slave", "" );
1189             var_SetInteger( p_input, "input-repeat", 0 );
1190             var_SetString( p_input, "sub-file", "" );
1191             var_SetBool( p_input, "sub-autodetect-file", false );
1192         }
1193     }
1194
1195     InitStatistics( p_input );
1196 #ifdef ENABLE_SOUT
1197     if( InitSout( p_input ) )
1198         goto error;
1199 #endif
1200
1201     /* Create es out */
1202     p_input->p->p_es_out = input_EsOutTimeshiftNew( p_input, p_input->p->p_es_out_display, p_input->p->i_rate );
1203
1204     /* */
1205     input_ChangeState( p_input, OPENING_S );
1206     input_SendEventCache( p_input, 0.0 );
1207
1208     /* */
1209     if( InputSourceInit( p_input, &p_input->p->input,
1210                          p_input->p->p_item->psz_uri, NULL, false ) )
1211     {
1212         goto error;
1213     }
1214
1215     InitTitle( p_input );
1216
1217     /* Load master infos */
1218     /* Init length */
1219     mtime_t i_length;
1220     if( demux_Control( p_input->p->input.p_demux, DEMUX_GET_LENGTH,
1221                          &i_length ) )
1222         i_length = 0;
1223     if( i_length <= 0 )
1224         i_length = input_item_GetDuration( p_input->p->p_item );
1225     input_SendEventLength( p_input, i_length );
1226
1227     input_SendEventPosition( p_input, 0.0, 0 );
1228
1229     if( !p_input->b_preparsing )
1230     {
1231         StartTitle( p_input );
1232         LoadSubtitles( p_input );
1233         LoadSlaves( p_input );
1234         InitPrograms( p_input );
1235
1236         double f_rate = var_InheritFloat( p_input, "rate" );
1237         if( f_rate != 0.0 && f_rate != 1.0 )
1238         {
1239             vlc_value_t val = { .i_int = INPUT_RATE_DEFAULT / f_rate };
1240             input_ControlPush( p_input, INPUT_CONTROL_SET_RATE, &val );
1241         }
1242     }
1243
1244     if( !p_input->b_preparsing && p_input->p->p_sout )
1245     {
1246         p_input->p->b_out_pace_control = (p_input->p->p_sout->i_out_pace_nocontrol > 0);
1247
1248         if( p_input->p->b_can_pace_control && p_input->p->b_out_pace_control )
1249         {
1250             /* We don't want a high input priority here or we'll
1251              * end-up sucking up all the CPU time */
1252             vlc_set_priority( p_input->p->thread, VLC_THREAD_PRIORITY_LOW );
1253         }
1254
1255         msg_Dbg( p_input, "starting in %s mode",
1256                  p_input->p->b_out_pace_control ? "async" : "sync" );
1257     }
1258
1259     p_meta = vlc_meta_New();
1260     if( p_meta )
1261     {
1262         /* Get meta data from users */
1263         InputMetaUser( p_input, p_meta );
1264
1265         /* Get meta data from master input */
1266         InputSourceMeta( p_input, &p_input->p->input, p_meta );
1267
1268         /* And from slave */
1269         for( int i = 0; i < p_input->p->i_slave; i++ )
1270             InputSourceMeta( p_input, p_input->p->slave[i], p_meta );
1271
1272         /* */
1273         InputUpdateMeta( p_input, p_meta );
1274     }
1275
1276     msg_Dbg( p_input, "`%s' successfully opened",
1277              p_input->p->p_item->psz_uri );
1278
1279     /* initialization is complete */
1280     input_ChangeState( p_input, PLAYING_S );
1281
1282     return VLC_SUCCESS;
1283
1284 error:
1285     input_ChangeState( p_input, ERROR_S );
1286
1287     if( p_input->p->p_es_out )
1288         es_out_Delete( p_input->p->p_es_out );
1289     es_out_SetMode( p_input->p->p_es_out_display, ES_OUT_MODE_END );
1290     if( p_input->p->p_resource )
1291     {
1292         if( p_input->p->p_sout )
1293             input_resource_RequestSout( p_input->p->p_resource,
1294                                          p_input->p->p_sout, NULL );
1295         input_resource_SetInput( p_input->p->p_resource, NULL );
1296         if( p_input->p->p_resource_private )
1297             input_resource_Terminate( p_input->p->p_resource_private );
1298     }
1299
1300     if( !p_input->b_preparsing && libvlc_stats( p_input ) )
1301     {
1302 #define EXIT_COUNTER( c ) do { if( p_input->p->counters.p_##c ) \
1303                                    stats_CounterClean( p_input->p->counters.p_##c );\
1304                                p_input->p->counters.p_##c = NULL; } while(0)
1305         EXIT_COUNTER( read_bytes );
1306         EXIT_COUNTER( read_packets );
1307         EXIT_COUNTER( demux_read );
1308         EXIT_COUNTER( input_bitrate );
1309         EXIT_COUNTER( demux_bitrate );
1310         EXIT_COUNTER( demux_corrupted );
1311         EXIT_COUNTER( demux_discontinuity );
1312         EXIT_COUNTER( played_abuffers );
1313         EXIT_COUNTER( lost_abuffers );
1314         EXIT_COUNTER( displayed_pictures );
1315         EXIT_COUNTER( lost_pictures );
1316         EXIT_COUNTER( decoded_audio );
1317         EXIT_COUNTER( decoded_video );
1318         EXIT_COUNTER( decoded_sub );
1319
1320         if( p_input->p->p_sout )
1321         {
1322             EXIT_COUNTER( sout_sent_packets );
1323             EXIT_COUNTER( sout_sent_bytes );
1324             EXIT_COUNTER( sout_send_bitrate );
1325         }
1326 #undef EXIT_COUNTER
1327     }
1328
1329     /* Mark them deleted */
1330     p_input->p->input.p_demux = NULL;
1331     p_input->p->p_es_out = NULL;
1332     p_input->p->p_sout = NULL;
1333
1334     return VLC_EGENERIC;
1335 }
1336
1337 /*****************************************************************************
1338  * End: end the input thread
1339  *****************************************************************************/
1340 static void End( input_thread_t * p_input )
1341 {
1342     int i;
1343
1344     /* We are at the end */
1345     input_ChangeState( p_input, END_S );
1346
1347     /* Clean control variables */
1348     input_ControlVarStop( p_input );
1349
1350     /* Stop es out activity */
1351     es_out_SetMode( p_input->p->p_es_out, ES_OUT_MODE_NONE );
1352
1353     /* Clean up master */
1354     InputSourceClean( &p_input->p->input );
1355
1356     /* Delete slave */
1357     for( i = 0; i < p_input->p->i_slave; i++ )
1358     {
1359         InputSourceClean( p_input->p->slave[i] );
1360         free( p_input->p->slave[i] );
1361     }
1362     free( p_input->p->slave );
1363
1364     /* Unload all modules */
1365     if( p_input->p->p_es_out )
1366         es_out_Delete( p_input->p->p_es_out );
1367     es_out_SetMode( p_input->p->p_es_out_display, ES_OUT_MODE_END );
1368
1369     if( !p_input->b_preparsing )
1370     {
1371 #define CL_CO( c ) stats_CounterClean( p_input->p->counters.p_##c ); p_input->p->counters.p_##c = NULL;
1372         if( libvlc_stats( p_input ) )
1373         {
1374             /* make sure we are up to date */
1375             stats_ComputeInputStats( p_input, p_input->p->p_item->p_stats );
1376             CL_CO( read_bytes );
1377             CL_CO( read_packets );
1378             CL_CO( demux_read );
1379             CL_CO( input_bitrate );
1380             CL_CO( demux_bitrate );
1381             CL_CO( demux_corrupted );
1382             CL_CO( demux_discontinuity );
1383             CL_CO( played_abuffers );
1384             CL_CO( lost_abuffers );
1385             CL_CO( displayed_pictures );
1386             CL_CO( lost_pictures );
1387             CL_CO( decoded_audio) ;
1388             CL_CO( decoded_video );
1389             CL_CO( decoded_sub) ;
1390         }
1391
1392         /* Close optional stream output instance */
1393         if( p_input->p->p_sout )
1394         {
1395             CL_CO( sout_sent_packets );
1396             CL_CO( sout_sent_bytes );
1397             CL_CO( sout_send_bitrate );
1398         }
1399 #undef CL_CO
1400     }
1401
1402     vlc_mutex_lock( &p_input->p->p_item->lock );
1403     if( p_input->p->i_attachment > 0 )
1404     {
1405         for( i = 0; i < p_input->p->i_attachment; i++ )
1406             vlc_input_attachment_Delete( p_input->p->attachment[i] );
1407         TAB_CLEAN( p_input->p->i_attachment, p_input->p->attachment );
1408     }
1409     vlc_mutex_unlock( &p_input->p->p_item->lock );
1410
1411     /* */
1412     input_resource_RequestSout( p_input->p->p_resource,
1413                                  p_input->p->p_sout, NULL );
1414     input_resource_SetInput( p_input->p->p_resource, NULL );
1415     if( p_input->p->p_resource_private )
1416         input_resource_Terminate( p_input->p->p_resource_private );
1417 }
1418
1419 /*****************************************************************************
1420  * Control
1421  *****************************************************************************/
1422 void input_ControlPush( input_thread_t *p_input,
1423                         int i_type, vlc_value_t *p_val )
1424 {
1425     vlc_mutex_lock( &p_input->p->lock_control );
1426     if( i_type == INPUT_CONTROL_SET_DIE )
1427     {
1428         /* Special case, empty the control */
1429         for( int i = 0; i < p_input->p->i_control; i++ )
1430         {
1431             input_control_t *p_ctrl = &p_input->p->control[i];
1432             ControlRelease( p_ctrl->i_type, p_ctrl->val );
1433         }
1434         p_input->p->i_control = 0;
1435     }
1436
1437     if( p_input->p->i_control >= INPUT_CONTROL_FIFO_SIZE )
1438     {
1439         msg_Err( p_input, "input control fifo overflow, trashing type=%d",
1440                  i_type );
1441         if( p_val )
1442             ControlRelease( i_type, *p_val );
1443     }
1444     else
1445     {
1446         input_control_t c;
1447         c.i_type = i_type;
1448         if( p_val )
1449             c.val = *p_val;
1450         else
1451             memset( &c.val, 0, sizeof(c.val) );
1452
1453         p_input->p->control[p_input->p->i_control++] = c;
1454     }
1455     vlc_cond_signal( &p_input->p->wait_control );
1456     vlc_mutex_unlock( &p_input->p->lock_control );
1457 }
1458
1459 static int ControlGetReducedIndexLocked( input_thread_t *p_input )
1460 {
1461     const int i_lt = p_input->p->control[0].i_type;
1462     int i;
1463     for( i = 1; i < p_input->p->i_control; i++ )
1464     {
1465         const int i_ct = p_input->p->control[i].i_type;
1466
1467         if( i_lt == i_ct &&
1468             ( i_ct == INPUT_CONTROL_SET_STATE ||
1469               i_ct == INPUT_CONTROL_SET_RATE ||
1470               i_ct == INPUT_CONTROL_SET_POSITION ||
1471               i_ct == INPUT_CONTROL_SET_TIME ||
1472               i_ct == INPUT_CONTROL_SET_PROGRAM ||
1473               i_ct == INPUT_CONTROL_SET_TITLE ||
1474               i_ct == INPUT_CONTROL_SET_SEEKPOINT ||
1475               i_ct == INPUT_CONTROL_SET_BOOKMARK ) )
1476         {
1477             continue;
1478         }
1479         else
1480         {
1481             /* TODO but that's not that important
1482                 - merge SET_X with SET_X_CMD
1483                 - ignore SET_SEEKPOINT/SET_POSITION/SET_TIME before a SET_TITLE
1484                 - ignore SET_SEEKPOINT/SET_POSITION/SET_TIME before another among them
1485                 - ?
1486                 */
1487             break;
1488         }
1489     }
1490     return i - 1;
1491 }
1492
1493
1494 static inline int ControlPop( input_thread_t *p_input,
1495                               int *pi_type, vlc_value_t *p_val,
1496                               mtime_t i_deadline, bool b_postpone_seek )
1497 {
1498     input_thread_private_t *p_sys = p_input->p;
1499
1500     vlc_mutex_lock( &p_sys->lock_control );
1501     while( p_sys->i_control <= 0 ||
1502            ( b_postpone_seek && ControlIsSeekRequest( p_sys->control[0].i_type ) ) )
1503     {
1504         if( !vlc_object_alive( p_input ) || i_deadline < 0 )
1505         {
1506             vlc_mutex_unlock( &p_sys->lock_control );
1507             return VLC_EGENERIC;
1508         }
1509
1510         if( vlc_cond_timedwait( &p_sys->wait_control, &p_sys->lock_control,
1511                                 i_deadline ) )
1512         {
1513             vlc_mutex_unlock( &p_sys->lock_control );
1514             return VLC_EGENERIC;
1515         }
1516     }
1517
1518     /* */
1519     const int i_index = ControlGetReducedIndexLocked( p_input );
1520
1521     /* */
1522     *pi_type = p_sys->control[i_index].i_type;
1523     *p_val   = p_sys->control[i_index].val;
1524
1525     p_sys->i_control -= i_index + 1;
1526     if( p_sys->i_control > 0 )
1527         memmove( &p_sys->control[0], &p_sys->control[i_index+1],
1528                  sizeof(*p_sys->control) * p_sys->i_control );
1529     vlc_mutex_unlock( &p_sys->lock_control );
1530
1531     return VLC_SUCCESS;
1532 }
1533 static bool ControlIsSeekRequest( int i_type )
1534 {
1535     switch( i_type )
1536     {
1537     case INPUT_CONTROL_SET_POSITION:
1538     case INPUT_CONTROL_SET_TIME:
1539     case INPUT_CONTROL_SET_TITLE:
1540     case INPUT_CONTROL_SET_TITLE_NEXT:
1541     case INPUT_CONTROL_SET_TITLE_PREV:
1542     case INPUT_CONTROL_SET_SEEKPOINT:
1543     case INPUT_CONTROL_SET_SEEKPOINT_NEXT:
1544     case INPUT_CONTROL_SET_SEEKPOINT_PREV:
1545     case INPUT_CONTROL_SET_BOOKMARK:
1546     case INPUT_CONTROL_NAV_ACTIVATE:
1547     case INPUT_CONTROL_NAV_UP:
1548     case INPUT_CONTROL_NAV_DOWN:
1549     case INPUT_CONTROL_NAV_LEFT:
1550     case INPUT_CONTROL_NAV_RIGHT:
1551         return true;
1552     default:
1553         return false;
1554     }
1555 }
1556
1557 static void ControlRelease( int i_type, vlc_value_t val )
1558 {
1559     switch( i_type )
1560     {
1561     case INPUT_CONTROL_ADD_SUBTITLE:
1562     case INPUT_CONTROL_ADD_SLAVE:
1563         free( val.psz_string );
1564         break;
1565
1566     default:
1567         break;
1568     }
1569 }
1570
1571 /* Pause input */
1572 static void ControlPause( input_thread_t *p_input, mtime_t i_control_date )
1573 {
1574     int i_ret = VLC_SUCCESS;
1575     int i_state = PAUSE_S;
1576
1577     if( p_input->p->b_can_pause )
1578     {
1579         demux_t *p_demux = p_input->p->input.p_demux;
1580
1581         if( p_demux->s != NULL )
1582             i_ret = stream_Control( p_demux->s, STREAM_SET_PAUSE_STATE, true );
1583         else
1584             i_ret = demux_Control( p_demux, DEMUX_SET_PAUSE_STATE, true );
1585
1586         if( i_ret )
1587         {
1588             msg_Warn( p_input, "cannot set pause state" );
1589             return;
1590         }
1591     }
1592
1593     /* */
1594     i_ret = es_out_SetPauseState( p_input->p->p_es_out,
1595                                   p_input->p->b_can_pause, true,
1596                                   i_control_date );
1597     if( i_ret )
1598     {
1599         msg_Warn( p_input, "cannot set pause state at es_out level" );
1600         return;
1601     }
1602
1603     /* Switch to new state */
1604     input_ChangeState( p_input, i_state );
1605 }
1606
1607 static void ControlUnpause( input_thread_t *p_input, mtime_t i_control_date )
1608 {
1609     int i_ret = VLC_SUCCESS;
1610
1611     if( p_input->p->b_can_pause )
1612     {
1613         demux_t *p_demux = p_input->p->input.p_demux;
1614
1615         if( p_demux->s != NULL )
1616             i_ret = stream_Control( p_demux->s, STREAM_SET_PAUSE_STATE, false );
1617         else
1618             i_ret = demux_Control( p_demux, DEMUX_SET_PAUSE_STATE, false );
1619         if( i_ret )
1620         {
1621             /* FIXME What to do ? */
1622             msg_Warn( p_input, "cannot unset pause -> EOF" );
1623             input_ControlPush( p_input, INPUT_CONTROL_SET_DIE, NULL );
1624         }
1625     }
1626
1627     /* Switch to play */
1628     input_ChangeState( p_input, PLAYING_S );
1629
1630     /* */
1631     if( !i_ret )
1632         es_out_SetPauseState( p_input->p->p_es_out, false, false, i_control_date );
1633 }
1634
1635 static bool Control( input_thread_t *p_input,
1636                      int i_type, vlc_value_t val )
1637 {
1638     const mtime_t i_control_date = mdate();
1639     /* FIXME b_force_update is abused, it should be carefully checked */
1640     bool b_force_update = false;
1641
1642     if( !p_input )
1643         return b_force_update;
1644
1645     switch( i_type )
1646     {
1647         case INPUT_CONTROL_SET_DIE:
1648             msg_Dbg( p_input, "control: stopping input" );
1649
1650             /* Mark all submodules to die */
1651             ObjectKillChildrens( VLC_OBJECT(p_input) );
1652             break;
1653
1654         case INPUT_CONTROL_SET_POSITION:
1655         {
1656             double f_pos;
1657
1658             if( p_input->p->b_recording )
1659             {
1660                 msg_Err( p_input, "INPUT_CONTROL_SET_POSITION(_OFFSET) ignored while recording" );
1661                 break;
1662             }
1663             f_pos = val.f_float;
1664             if( i_type != INPUT_CONTROL_SET_POSITION )
1665                 f_pos += var_GetFloat( p_input, "position" );
1666             if( f_pos < 0.0 )
1667                 f_pos = 0.0;
1668             else if( f_pos > 1.0 )
1669                 f_pos = 1.0;
1670             /* Reset the decoders states and clock sync (before calling the demuxer */
1671             es_out_SetTime( p_input->p->p_es_out, -1 );
1672             if( demux_Control( p_input->p->input.p_demux, DEMUX_SET_POSITION,
1673                                 f_pos, !p_input->p->b_fast_seek ) )
1674             {
1675                 msg_Err( p_input, "INPUT_CONTROL_SET_POSITION(_OFFSET) "
1676                          "%2.1f%% failed", f_pos * 100 );
1677             }
1678             else
1679             {
1680                 if( p_input->p->i_slave > 0 )
1681                     SlaveSeek( p_input );
1682                 p_input->p->input.b_eof = false;
1683
1684                 b_force_update = true;
1685             }
1686             break;
1687         }
1688
1689         case INPUT_CONTROL_SET_TIME:
1690         {
1691             int64_t i_time;
1692             int i_ret;
1693
1694             if( p_input->p->b_recording )
1695             {
1696                 msg_Err( p_input, "INPUT_CONTROL_SET_TIME(_OFFSET) ignored while recording" );
1697                 break;
1698             }
1699
1700             i_time = val.i_time;
1701             if( i_type != INPUT_CONTROL_SET_TIME )
1702                 i_time += var_GetTime( p_input, "time" );
1703
1704             if( i_time < 0 )
1705                 i_time = 0;
1706
1707             /* Reset the decoders states and clock sync (before calling the demuxer */
1708             es_out_SetTime( p_input->p->p_es_out, -1 );
1709
1710             i_ret = demux_Control( p_input->p->input.p_demux,
1711                                    DEMUX_SET_TIME, i_time,
1712                                    !p_input->p->b_fast_seek );
1713             if( i_ret )
1714             {
1715                 int64_t i_length;
1716
1717                 /* Emulate it with a SET_POS */
1718                 if( !demux_Control( p_input->p->input.p_demux,
1719                                     DEMUX_GET_LENGTH, &i_length ) && i_length > 0 )
1720                 {
1721                     double f_pos = (double)i_time / (double)i_length;
1722                     i_ret = demux_Control( p_input->p->input.p_demux,
1723                                             DEMUX_SET_POSITION, f_pos,
1724                                             !p_input->p->b_fast_seek );
1725                 }
1726             }
1727             if( i_ret )
1728             {
1729                 msg_Warn( p_input, "INPUT_CONTROL_SET_TIME(_OFFSET) %"PRId64
1730                          " failed or not possible", i_time );
1731             }
1732             else
1733             {
1734                 if( p_input->p->i_slave > 0 )
1735                     SlaveSeek( p_input );
1736                 p_input->p->input.b_eof = false;
1737
1738                 b_force_update = true;
1739             }
1740             break;
1741         }
1742
1743         case INPUT_CONTROL_SET_STATE:
1744             if( val.i_int != PLAYING_S && val.i_int != PAUSE_S )
1745                 msg_Err( p_input, "invalid state in INPUT_CONTROL_SET_STATE" );
1746             else if( p_input->p->i_state == PAUSE_S )
1747             {
1748                 ControlUnpause( p_input, i_control_date );
1749
1750                 b_force_update = true;
1751             }
1752             else if( val.i_int == PAUSE_S && p_input->p->i_state == PLAYING_S /* &&
1753                      p_input->p->b_can_pause */ )
1754             {
1755                 ControlPause( p_input, i_control_date );
1756
1757                 b_force_update = true;
1758             }
1759             else if( val.i_int == PAUSE_S && !p_input->p->b_can_pause && 0 )
1760             {
1761                 b_force_update = true;
1762
1763                 /* Correct "state" value */
1764                 input_ChangeState( p_input, p_input->p->i_state );
1765             }
1766             break;
1767
1768         case INPUT_CONTROL_SET_RATE:
1769         {
1770             /* Get rate and direction */
1771             int i_rate = abs( val.i_int );
1772             int i_rate_sign = val.i_int < 0 ? -1 : 1;
1773
1774             /* Check rate bound */
1775             if( i_rate < INPUT_RATE_MIN )
1776             {
1777                 msg_Dbg( p_input, "cannot set rate faster" );
1778                 i_rate = INPUT_RATE_MIN;
1779             }
1780             else if( i_rate > INPUT_RATE_MAX )
1781             {
1782                 msg_Dbg( p_input, "cannot set rate slower" );
1783                 i_rate = INPUT_RATE_MAX;
1784             }
1785
1786             /* Apply direction */
1787             if( i_rate_sign < 0 )
1788             {
1789                 if( p_input->p->input.b_rescale_ts )
1790                 {
1791                     msg_Dbg( p_input, "cannot set negative rate" );
1792                     i_rate = p_input->p->i_rate;
1793                     assert( i_rate > 0 );
1794                 }
1795                 else
1796                 {
1797                     i_rate *= i_rate_sign;
1798                 }
1799             }
1800
1801             if( i_rate != INPUT_RATE_DEFAULT &&
1802                 ( ( !p_input->p->b_can_rate_control && !p_input->p->input.b_rescale_ts ) ||
1803                   ( p_input->p->p_sout && !p_input->p->b_out_pace_control ) ) )
1804             {
1805                 msg_Dbg( p_input, "cannot change rate" );
1806                 i_rate = INPUT_RATE_DEFAULT;
1807             }
1808             if( i_rate != p_input->p->i_rate &&
1809                 !p_input->p->b_can_pace_control && p_input->p->b_can_rate_control )
1810             {
1811                 demux_t *p_demux = p_input->p->input.p_demux;
1812                 int i_ret = VLC_EGENERIC;
1813
1814                 if( p_demux->s == NULL )
1815                 {
1816                     if( !p_input->p->input.b_rescale_ts )
1817                         es_out_Control( p_input->p->p_es_out, ES_OUT_RESET_PCR );
1818
1819                     i_ret = demux_Control( p_input->p->input.p_demux,
1820                                             DEMUX_SET_RATE, &i_rate );
1821                 }
1822                 if( i_ret )
1823                 {
1824                     msg_Warn( p_input, "ACCESS/DEMUX_SET_RATE failed" );
1825                     i_rate = p_input->p->i_rate;
1826                 }
1827             }
1828
1829             /* */
1830             if( i_rate != p_input->p->i_rate )
1831             {
1832                 p_input->p->i_rate = i_rate;
1833                 input_SendEventRate( p_input, i_rate );
1834
1835                 if( p_input->p->input.b_rescale_ts )
1836                 {
1837                     const int i_rate_source = (p_input->p->b_can_pace_control || p_input->p->b_can_rate_control ) ? i_rate : INPUT_RATE_DEFAULT;
1838                     es_out_SetRate( p_input->p->p_es_out, i_rate_source, i_rate );
1839                 }
1840
1841                 b_force_update = true;
1842             }
1843             break;
1844         }
1845
1846         case INPUT_CONTROL_SET_PROGRAM:
1847             /* No need to force update, es_out does it if needed */
1848             es_out_Control( p_input->p->p_es_out,
1849                             ES_OUT_SET_GROUP, val.i_int );
1850
1851             demux_Control( p_input->p->input.p_demux, DEMUX_SET_GROUP, val.i_int,
1852                             NULL );
1853             break;
1854
1855         case INPUT_CONTROL_SET_ES:
1856             /* No need to force update, es_out does it if needed */
1857             es_out_Control( p_input->p->p_es_out_display,
1858                             ES_OUT_SET_ES_BY_ID, (int)val.i_int );
1859             break;
1860
1861         case INPUT_CONTROL_RESTART_ES:
1862             es_out_Control( p_input->p->p_es_out_display,
1863                             ES_OUT_RESTART_ES_BY_ID, (int)val.i_int );
1864             break;
1865
1866         case INPUT_CONTROL_SET_AUDIO_DELAY:
1867             input_SendEventAudioDelay( p_input, val.i_time );
1868             UpdatePtsDelay( p_input );
1869             break;
1870
1871         case INPUT_CONTROL_SET_SPU_DELAY:
1872             input_SendEventSubtitleDelay( p_input, val.i_time );
1873             UpdatePtsDelay( p_input );
1874             break;
1875
1876         case INPUT_CONTROL_SET_TITLE:
1877         case INPUT_CONTROL_SET_TITLE_NEXT:
1878         case INPUT_CONTROL_SET_TITLE_PREV:
1879         {
1880             if( p_input->p->b_recording )
1881             {
1882                 msg_Err( p_input, "INPUT_CONTROL_SET_TITLE(*) ignored while recording" );
1883                 break;
1884             }
1885             if( p_input->p->input.i_title <= 0 )
1886                 break;
1887
1888             int i_title = p_input->p->input.p_demux->info.i_title;
1889             if( i_type == INPUT_CONTROL_SET_TITLE_PREV )
1890                 i_title--;
1891             else if( i_type == INPUT_CONTROL_SET_TITLE_NEXT )
1892                 i_title++;
1893             else
1894                 i_title = val.i_int;
1895             if( i_title < 0 || i_title >= p_input->p->input.i_title )
1896                 break;
1897
1898             es_out_SetTime( p_input->p->p_es_out, -1 );
1899             demux_Control( p_input->p->input.p_demux,
1900                            DEMUX_SET_TITLE, i_title );
1901             input_SendEventTitle( p_input, i_title );
1902             break;
1903         }
1904         case INPUT_CONTROL_SET_SEEKPOINT:
1905         case INPUT_CONTROL_SET_SEEKPOINT_NEXT:
1906         case INPUT_CONTROL_SET_SEEKPOINT_PREV:
1907         {
1908             if( p_input->p->b_recording )
1909             {
1910                 msg_Err( p_input, "INPUT_CONTROL_SET_SEEKPOINT(*) ignored while recording" );
1911                 break;
1912             }
1913             if( p_input->p->input.i_title <= 0 )
1914                 break;
1915
1916             demux_t *p_demux = p_input->p->input.p_demux;
1917
1918             int i_title = p_demux->info.i_title;
1919             int i_seekpoint = p_demux->info.i_seekpoint;
1920
1921             if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
1922             {
1923                 int64_t i_seekpoint_time = p_input->p->input.title[i_title]->seekpoint[i_seekpoint]->i_time_offset;
1924                 int64_t i_input_time = var_GetTime( p_input, "time" );
1925                 if( i_seekpoint_time >= 0 && i_input_time >= 0 )
1926                 {
1927                     if( i_input_time < i_seekpoint_time + 3000000 )
1928                         i_seekpoint--;
1929                 }
1930                 else
1931                     i_seekpoint--;
1932             }
1933             else if( i_type == INPUT_CONTROL_SET_SEEKPOINT_NEXT )
1934                 i_seekpoint++;
1935             else
1936                 i_seekpoint = val.i_int;
1937             if( i_seekpoint < 0
1938              || i_seekpoint >= p_input->p->input.title[i_title]->i_seekpoint )
1939                 break;
1940
1941             es_out_SetTime( p_input->p->p_es_out, -1 );
1942             demux_Control( p_input->p->input.p_demux,
1943                            DEMUX_SET_SEEKPOINT, i_seekpoint );
1944             input_SendEventSeekpoint( p_input, i_title, i_seekpoint );
1945             break;
1946         }
1947
1948         case INPUT_CONTROL_ADD_SUBTITLE:
1949             if( val.psz_string )
1950                 input_SubtitleFileAdd( p_input, val.psz_string, true );
1951             break;
1952
1953         case INPUT_CONTROL_ADD_SLAVE:
1954             if( val.psz_string )
1955             {
1956                 const char *uri = val.psz_string;
1957                 input_source_t *slave = InputSourceNew( p_input );
1958
1959                 if( slave && !InputSourceInit( p_input, slave, uri, NULL, false ) )
1960                 {
1961                     vlc_meta_t *p_meta;
1962                     int64_t i_time;
1963
1964                     /* Add the slave */
1965                     msg_Dbg( p_input, "adding %s as slave on the fly", uri );
1966
1967                     /* Set position */
1968                     if( demux_Control( p_input->p->input.p_demux,
1969                                         DEMUX_GET_TIME, &i_time ) )
1970                     {
1971                         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
1972                         InputSourceClean( slave );
1973                         free( slave );
1974                         break;
1975                     }
1976                     if( demux_Control( slave->p_demux,
1977                                        DEMUX_SET_TIME, i_time, true ) )
1978                     {
1979                         msg_Err( p_input, "seek failed for new slave" );
1980                         InputSourceClean( slave );
1981                         free( slave );
1982                         break;
1983                     }
1984
1985                     /* Get meta (access and demux) */
1986                     p_meta = vlc_meta_New();
1987                     if( p_meta )
1988                     {
1989                         demux_Control( slave->p_demux, DEMUX_GET_META, p_meta );
1990                         InputUpdateMeta( p_input, p_meta );
1991                     }
1992
1993                     TAB_APPEND( p_input->p->i_slave, p_input->p->slave, slave );
1994                 }
1995                 else
1996                 {
1997                     free( slave );
1998                     msg_Warn( p_input, "failed to add %s as slave", uri );
1999                 }
2000             }
2001             break;
2002
2003         case INPUT_CONTROL_SET_RECORD_STATE:
2004             if( !!p_input->p->b_recording != !!val.b_bool )
2005             {
2006                 if( p_input->p->input.b_can_stream_record )
2007                 {
2008                     if( demux_Control( p_input->p->input.p_demux,
2009                                        DEMUX_SET_RECORD_STATE, val.b_bool ) )
2010                         val.b_bool = false;
2011                 }
2012                 else
2013                 {
2014                     if( es_out_SetRecordState( p_input->p->p_es_out_display, val.b_bool ) )
2015                         val.b_bool = false;
2016                 }
2017                 p_input->p->b_recording = val.b_bool;
2018
2019                 input_SendEventRecord( p_input, val.b_bool );
2020
2021                 b_force_update = true;
2022             }
2023             break;
2024
2025         case INPUT_CONTROL_SET_FRAME_NEXT:
2026             if( p_input->p->i_state == PAUSE_S )
2027             {
2028                 es_out_SetFrameNext( p_input->p->p_es_out );
2029             }
2030             else if( p_input->p->i_state == PLAYING_S )
2031             {
2032                 ControlPause( p_input, i_control_date );
2033             }
2034             else
2035             {
2036                 msg_Err( p_input, "invalid state for frame next" );
2037             }
2038             b_force_update = true;
2039             break;
2040
2041         case INPUT_CONTROL_SET_BOOKMARK:
2042         {
2043             mtime_t time_offset = -1;
2044
2045             vlc_mutex_lock( &p_input->p->p_item->lock );
2046             if( val.i_int >= 0 && val.i_int < p_input->p->i_bookmark )
2047             {
2048                 const seekpoint_t *p_bookmark = p_input->p->pp_bookmark[val.i_int];
2049                 time_offset = p_bookmark->i_time_offset;
2050             }
2051             vlc_mutex_unlock( &p_input->p->p_item->lock );
2052
2053             if( time_offset < 0 )
2054             {
2055                 msg_Err( p_input, "invalid bookmark %"PRId64, val.i_int );
2056                 break;
2057             }
2058
2059             val.i_time = time_offset;
2060             b_force_update = Control( p_input, INPUT_CONTROL_SET_TIME, val );
2061             break;
2062         }
2063
2064         case INPUT_CONTROL_NAV_ACTIVATE:
2065         case INPUT_CONTROL_NAV_UP:
2066         case INPUT_CONTROL_NAV_DOWN:
2067         case INPUT_CONTROL_NAV_LEFT:
2068         case INPUT_CONTROL_NAV_RIGHT:
2069             demux_Control( p_input->p->input.p_demux, i_type
2070                            - INPUT_CONTROL_NAV_ACTIVATE + DEMUX_NAV_ACTIVATE );
2071             break;
2072
2073         default:
2074             msg_Err( p_input, "not yet implemented" );
2075             break;
2076     }
2077
2078     ControlRelease( i_type, val );
2079     return b_force_update;
2080 }
2081
2082 /*****************************************************************************
2083  * UpdateTitleSeekpoint
2084  *****************************************************************************/
2085 static int UpdateTitleSeekpoint( input_thread_t *p_input,
2086                                  int i_title, int i_seekpoint )
2087 {
2088     int i_title_end = p_input->p->input.i_title_end -
2089                         p_input->p->input.i_title_offset;
2090     int i_seekpoint_end = p_input->p->input.i_seekpoint_end -
2091                             p_input->p->input.i_seekpoint_offset;
2092
2093     if( i_title_end >= 0 && i_seekpoint_end >= 0 )
2094     {
2095         if( i_title > i_title_end ||
2096             ( i_title == i_title_end && i_seekpoint > i_seekpoint_end ) )
2097             return 0;
2098     }
2099     else if( i_seekpoint_end >= 0 )
2100     {
2101         if( i_seekpoint > i_seekpoint_end )
2102             return 0;
2103     }
2104     else if( i_title_end >= 0 )
2105     {
2106         if( i_title > i_title_end )
2107             return 0;
2108     }
2109     return 1;
2110 }
2111 /*****************************************************************************
2112  * Update*FromDemux:
2113  *****************************************************************************/
2114 static int UpdateTitleSeekpointFromDemux( input_thread_t *p_input )
2115 {
2116     demux_t *p_demux = p_input->p->input.p_demux;
2117
2118     /* TODO event-like */
2119     if( p_demux->info.i_update & INPUT_UPDATE_TITLE )
2120     {
2121         input_SendEventTitle( p_input, p_demux->info.i_title );
2122
2123         p_demux->info.i_update &= ~INPUT_UPDATE_TITLE;
2124     }
2125     if( p_demux->info.i_update & INPUT_UPDATE_SEEKPOINT )
2126     {
2127         input_SendEventSeekpoint( p_input,
2128                                   p_demux->info.i_title, p_demux->info.i_seekpoint );
2129
2130         p_demux->info.i_update &= ~INPUT_UPDATE_SEEKPOINT;
2131     }
2132
2133     /* Hmmm only works with master input */
2134     if( p_input->p->input.p_demux == p_demux )
2135         return UpdateTitleSeekpoint( p_input,
2136                                      p_demux->info.i_title,
2137                                      p_demux->info.i_seekpoint );
2138     return 1;
2139 }
2140
2141 static void UpdateGenericFromDemux( input_thread_t *p_input )
2142 {
2143     demux_t *p_demux = p_input->p->input.p_demux;
2144
2145     if( p_demux->info.i_update & INPUT_UPDATE_META )
2146     {
2147         vlc_meta_t *p_meta = vlc_meta_New();
2148         if( p_meta )
2149         {
2150             demux_Control( p_input->p->input.p_demux, DEMUX_GET_META, p_meta );
2151             InputUpdateMeta( p_input, p_meta );
2152         }
2153         p_demux->info.i_update &= ~INPUT_UPDATE_META;
2154     }
2155     {
2156         double quality;
2157         double strength;
2158
2159         if( !demux_Control( p_demux, DEMUX_GET_SIGNAL, &quality, &strength ) )
2160             input_SendEventSignal( p_input, quality, strength );
2161     }
2162 }
2163
2164 static void UpdateTitleListfromDemux( input_thread_t *p_input )
2165 {
2166     input_source_t *in = &p_input->p->input;
2167
2168     /* Delete the preexisting titles */
2169     if( in->i_title > 0 )
2170     {
2171         for( int i = 0; i < in->i_title; i++ )
2172             vlc_input_title_Delete( in->title[i] );
2173         TAB_CLEAN( in->i_title, in->title );
2174         in->b_title_demux = false;
2175     }
2176
2177     /* Get the new title list */
2178     if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2179                        &in->title, &in->i_title,
2180                        &in->i_title_offset, &in->i_seekpoint_offset ) )
2181         TAB_INIT( in->i_title, in->title );
2182     else
2183         in->b_title_demux = true;
2184
2185     InitTitle( p_input );
2186 }
2187
2188
2189 /*****************************************************************************
2190  * InputSourceNew:
2191  *****************************************************************************/
2192 static input_source_t *InputSourceNew( input_thread_t *p_input )
2193 {
2194     VLC_UNUSED(p_input);
2195
2196     return calloc( 1,  sizeof( input_source_t ) );
2197 }
2198
2199 /*****************************************************************************
2200  * InputSourceInit:
2201  *****************************************************************************/
2202 static int InputSourceInit( input_thread_t *p_input,
2203                             input_source_t *in, const char *psz_mrl,
2204                             const char *psz_forced_demux, bool b_in_can_fail )
2205 {
2206     const char *psz_access, *psz_demux, *psz_path, *psz_anchor = NULL;
2207     char *psz_var_demux = NULL;
2208     double f_fps;
2209
2210     assert( psz_mrl );
2211     char *psz_dup = strdup( psz_mrl );
2212
2213     if( psz_dup == NULL )
2214         goto error;
2215
2216     /* Split uri */
2217     input_SplitMRL( &psz_access, &psz_demux, &psz_path, &psz_anchor, psz_dup );
2218
2219     msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'",
2220              psz_mrl, psz_access, psz_demux, psz_path );
2221     if( !p_input->b_preparsing )
2222     {
2223         /* Find optional titles and seekpoints */
2224         MRLSections( psz_anchor, &in->i_title_start, &in->i_title_end,
2225                      &in->i_seekpoint_start, &in->i_seekpoint_end );
2226         if( psz_forced_demux && *psz_forced_demux )
2227         {
2228             psz_demux = psz_forced_demux;
2229         }
2230         else if( *psz_demux == '\0' )
2231         {
2232             /* special hack for forcing a demuxer with --demux=module
2233              * (and do nothing with a list) */
2234             psz_var_demux = var_GetNonEmptyString( p_input, "demux" );
2235
2236             if( psz_var_demux != NULL &&
2237                 !strchr(psz_var_demux, ',' ) &&
2238                 !strchr(psz_var_demux, ':' ) )
2239             {
2240                 psz_demux = psz_var_demux;
2241
2242                 msg_Dbg( p_input, "enforced demux ` %s'", psz_demux );
2243             }
2244         }
2245
2246         /* Try access_demux first */
2247         in->p_demux = demux_New( p_input, p_input, psz_access, psz_demux, psz_path,
2248                                   NULL, p_input->p->p_es_out, false );
2249     }
2250     else
2251     {
2252         /* Preparsing is only for file:// */
2253         if( *psz_demux )
2254             goto error;
2255         if( strcmp( psz_access, "file" ) )
2256             goto error;
2257         msg_Dbg( p_input, "trying to pre-parse %s",  psz_path );
2258     }
2259
2260     mtime_t i_pts_delay;
2261
2262     if( in->p_demux )
2263     {
2264         /* Get infos from access_demux */
2265         in->b_title_demux = true;
2266         if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2267                             &in->title, &in->i_title,
2268                             &in->i_title_offset, &in->i_seekpoint_offset ) )
2269         {
2270             TAB_INIT( in->i_title, in->title );
2271         }
2272         if( demux_Control( in->p_demux, DEMUX_CAN_CONTROL_PACE,
2273                             &in->b_can_pace_control ) )
2274             in->b_can_pace_control = false;
2275
2276         assert( in->p_demux->pf_demux != NULL || !in->b_can_pace_control );
2277
2278         if( !in->b_can_pace_control )
2279         {
2280             if( demux_Control( in->p_demux, DEMUX_CAN_CONTROL_RATE,
2281                                 &in->b_can_rate_control, &in->b_rescale_ts ) )
2282             {
2283                 in->b_can_rate_control = false;
2284                 in->b_rescale_ts = true; /* not used */
2285             }
2286         }
2287         else
2288         {
2289             in->b_can_rate_control = true;
2290             in->b_rescale_ts = true;
2291         }
2292         if( demux_Control( in->p_demux, DEMUX_CAN_PAUSE,
2293                             &in->b_can_pause ) )
2294             in->b_can_pause = false;
2295         var_SetBool( p_input, "can-pause", in->b_can_pause || !in->b_can_pace_control ); /* XXX temporary because of es_out_timeshift*/
2296         var_SetBool( p_input, "can-rate", !in->b_can_pace_control || in->b_can_rate_control ); /* XXX temporary because of es_out_timeshift*/
2297         var_SetBool( p_input, "can-rewind", !in->b_rescale_ts && !in->b_can_pace_control && in->b_can_rate_control );
2298
2299         bool b_can_seek;
2300         if( demux_Control( in->p_demux, DEMUX_CAN_SEEK, &b_can_seek ) )
2301             b_can_seek = false;
2302         var_SetBool( p_input, "can-seek", b_can_seek );
2303     }
2304     else
2305     {   /* Now try a real access */
2306         access_t *p_access = access_New( p_input, p_input,
2307                                          psz_access, psz_demux, psz_path );
2308         if( p_access == NULL )
2309         {
2310             if( vlc_object_alive( p_input ) )
2311             {
2312                 msg_Err( p_input, "open of `%s' failed", psz_mrl );
2313                 if( !b_in_can_fail )
2314                     dialog_Fatal( p_input, _("Your input can't be opened"),
2315                                    _("VLC is unable to open the MRL '%s'."
2316                                      " Check the log for details."), psz_mrl );
2317             }
2318             goto error;
2319         }
2320
2321         /* Access-forced demuxer (PARENTAL ADVISORY: EXPLICIT HACK) */
2322         if( !*psz_demux && *p_access->psz_demux )
2323             psz_demux = p_access->psz_demux;
2324
2325         /* */
2326         int  i_input_list;
2327         char **ppsz_input_list;
2328
2329         TAB_INIT( i_input_list, ppsz_input_list );
2330
2331         /* On master stream only, use input-list */
2332         if( &p_input->p->input == in )
2333         {
2334             char *psz_list;
2335             char *psz_parser;
2336
2337             psz_list =
2338             psz_parser = var_CreateGetNonEmptyString( p_input, "input-list" );
2339
2340             while( psz_parser && *psz_parser )
2341             {
2342                 char *p = strchr( psz_parser, ',' );
2343                 if( p )
2344                     *p++ = '\0';
2345
2346                 if( *psz_parser )
2347                 {
2348                     char *psz_name = strdup( psz_parser );
2349                     if( psz_name )
2350                         TAB_APPEND( i_input_list, ppsz_input_list, psz_name );
2351                 }
2352
2353                 psz_parser = p;
2354             }
2355             free( psz_list );
2356         }
2357         /* Autodetect extra files if none specified */
2358         if( i_input_list <= 0 )
2359         {
2360             InputGetExtraFiles( p_input, &i_input_list, &ppsz_input_list,
2361                                 psz_access, psz_path );
2362         }
2363         if( i_input_list > 0 )
2364             TAB_APPEND( i_input_list, ppsz_input_list, NULL );
2365
2366         /* Create the stream_t */
2367         stream_t *p_stream = stream_AccessNew( p_access, ppsz_input_list );
2368         if( ppsz_input_list )
2369         {
2370             for( int i = 0; ppsz_input_list[i] != NULL; i++ )
2371                 free( ppsz_input_list[i] );
2372             TAB_CLEAN( i_input_list, ppsz_input_list );
2373         }
2374
2375         if( p_stream == NULL )
2376         {
2377             msg_Warn( p_input, "cannot create a stream_t from access" );
2378             goto error;
2379         }
2380
2381         /* Add stream filters */
2382         char *psz_stream_filter = var_GetNonEmptyString( p_input,
2383                                                          "stream-filter" );
2384         p_stream = stream_FilterChainNew( p_stream, psz_stream_filter,
2385                                var_GetBool( p_input, "input-record-native" ) );
2386         free( psz_stream_filter );
2387
2388         if( !p_input->b_preparsing )
2389         {
2390             bool b;
2391
2392             stream_Control( p_stream, STREAM_CAN_CONTROL_PACE,
2393                             &in->b_can_pace_control );
2394             in->b_can_rate_control = in->b_can_pace_control;
2395             in->b_rescale_ts = true;
2396
2397             stream_Control( p_stream, STREAM_CAN_PAUSE, &in->b_can_pause );
2398             var_SetBool( p_input, "can-pause",
2399                          in->b_can_pause || !in->b_can_pace_control ); /* XXX temporary because of es_out_timeshift*/
2400             var_SetBool( p_input, "can-rate",
2401                          !in->b_can_pace_control || in->b_can_rate_control ); /* XXX temporary because of es_out_timeshift*/
2402             var_SetBool( p_input, "can-rewind",
2403                          !in->b_rescale_ts && !in->b_can_pace_control );
2404
2405             stream_Control( p_stream, STREAM_CAN_SEEK, &b );
2406             var_SetBool( p_input, "can-seek", b );
2407
2408             in->b_title_demux = false;
2409
2410             stream_Control( p_stream, STREAM_GET_PTS_DELAY, &i_pts_delay );
2411         }
2412
2413         in->p_demux = demux_New( p_input, p_input, psz_access, psz_demux,
2414                    /* Take access/stream redirections into account: */
2415                             p_stream->psz_path ? p_stream->psz_path : psz_path,
2416                                  p_stream, p_input->p->p_es_out,
2417                                  p_input->b_preparsing );
2418
2419         if( in->p_demux == NULL )
2420         {
2421             stream_Delete( p_stream );
2422             if( vlc_object_alive( p_input ) )
2423             {
2424                 msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
2425                          psz_access, psz_demux, psz_path );
2426                 if( !b_in_can_fail )
2427                     dialog_Fatal( VLC_OBJECT( p_input ),
2428                                   _("VLC can't recognize the input's format"),
2429                                   _("The format of '%s' cannot be detected. "
2430                                     "Have a look at the log for details."), psz_mrl );
2431             }
2432             goto error;
2433         }
2434         assert( in->p_demux->pf_demux != NULL );
2435
2436         /* Get title from demux */
2437         if( !p_input->b_preparsing && in->i_title <= 0 )
2438         {
2439             if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2440                                 &in->title, &in->i_title,
2441                                 &in->i_title_offset, &in->i_seekpoint_offset ))
2442             {
2443                 TAB_INIT( in->i_title, in->title );
2444             }
2445             else
2446             {
2447                 in->b_title_demux = true;
2448             }
2449         }
2450     }
2451
2452     free( psz_var_demux );
2453     free( psz_dup );
2454
2455     /* Set record capabilities */
2456     if( demux_Control( in->p_demux, DEMUX_CAN_RECORD, &in->b_can_stream_record ) )
2457         in->b_can_stream_record = false;
2458 #ifdef ENABLE_SOUT
2459     if( !var_GetBool( p_input, "input-record-native" ) )
2460         in->b_can_stream_record = false;
2461     var_SetBool( p_input, "can-record", true );
2462 #else
2463     var_SetBool( p_input, "can-record", in->b_can_stream_record );
2464 #endif
2465
2466     /* get attachment
2467      * FIXME improve for b_preparsing: move it after GET_META and check psz_arturl */
2468     if( !p_input->b_preparsing )
2469     {
2470         int i_attachment;
2471         input_attachment_t **attachment;
2472         if( !demux_Control( in->p_demux, DEMUX_GET_ATTACHMENTS,
2473                              &attachment, &i_attachment ) )
2474         {
2475             vlc_mutex_lock( &p_input->p->p_item->lock );
2476             AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2477                               i_attachment, attachment );
2478             vlc_mutex_unlock( &p_input->p->p_item->lock );
2479         }
2480
2481         /* PTS delay: request from demux first. This is required for
2482          * access_demux and some special cases like SDP demux. Otherwise,
2483          * fallback to access */
2484         if( demux_Control( in->p_demux, DEMUX_GET_PTS_DELAY,
2485                            &in->i_pts_delay ) )
2486             in->i_pts_delay = i_pts_delay;
2487         if( in->i_pts_delay > INPUT_PTS_DELAY_MAX )
2488             in->i_pts_delay = INPUT_PTS_DELAY_MAX;
2489         else if( in->i_pts_delay < 0 )
2490             in->i_pts_delay = 0;
2491     }
2492
2493     if( !demux_Control( in->p_demux, DEMUX_GET_FPS, &f_fps ) && f_fps > 0.0 )
2494     {
2495         vlc_mutex_lock( &p_input->p->p_item->lock );
2496         p_input->p->f_fps = f_fps;
2497         vlc_mutex_unlock( &p_input->p->p_item->lock );
2498     }
2499
2500     if( var_GetInteger( p_input, "clock-synchro" ) != -1 )
2501         in->b_can_pace_control = !var_GetInteger( p_input, "clock-synchro" );
2502
2503     return VLC_SUCCESS;
2504
2505 error:
2506     if( in->p_demux )
2507         demux_Delete( in->p_demux );
2508
2509     free( psz_var_demux );
2510     free( psz_dup );
2511
2512     return VLC_EGENERIC;
2513 }
2514
2515 /*****************************************************************************
2516  * InputSourceClean:
2517  *****************************************************************************/
2518 static void InputSourceClean( input_source_t *in )
2519 {
2520     int i;
2521
2522     if( in->p_demux )
2523         demux_Delete( in->p_demux );
2524
2525     if( in->i_title > 0 )
2526     {
2527         for( i = 0; i < in->i_title; i++ )
2528             vlc_input_title_Delete( in->title[i] );
2529         TAB_CLEAN( in->i_title, in->title );
2530     }
2531 }
2532
2533 /*****************************************************************************
2534  * InputSourceMeta:
2535  *****************************************************************************/
2536 static void InputSourceMeta( input_thread_t *p_input,
2537                              input_source_t *p_source, vlc_meta_t *p_meta )
2538 {
2539     demux_t *p_demux = p_source->p_demux;
2540
2541     /* XXX Remember that checking against p_item->p_meta->i_status & ITEM_PREPARSED
2542      * is a bad idea */
2543
2544     bool has_meta = false;
2545
2546     /* Read demux meta */
2547     if( !demux_Control( p_demux, DEMUX_GET_META, p_meta ) )
2548         has_meta = true;
2549
2550     bool has_unsupported;
2551     if( demux_Control( p_demux, DEMUX_HAS_UNSUPPORTED_META, &has_unsupported ) )
2552         has_unsupported = true;
2553
2554     /* If the demux report unsupported meta data, or if we don't have meta data
2555      * try an external "meta reader" */
2556     if( has_meta && !has_unsupported )
2557         return;
2558
2559     demux_meta_t *p_demux_meta =
2560         vlc_custom_create( p_demux, sizeof( *p_demux_meta ), "demux meta" );
2561     if( !p_demux_meta )
2562         return;
2563     p_demux_meta->p_demux = p_demux;
2564     p_demux_meta->p_item = p_input->p->p_item;
2565
2566     module_t *p_id3 = module_need( p_demux_meta, "meta reader", NULL, false );
2567     if( p_id3 )
2568     {
2569         if( p_demux_meta->p_meta )
2570         {
2571             vlc_meta_Merge( p_meta, p_demux_meta->p_meta );
2572             vlc_meta_Delete( p_demux_meta->p_meta );
2573         }
2574
2575         if( p_demux_meta->i_attachments > 0 )
2576         {
2577             vlc_mutex_lock( &p_input->p->p_item->lock );
2578             AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2579                               p_demux_meta->i_attachments, p_demux_meta->attachments );
2580             vlc_mutex_unlock( &p_input->p->p_item->lock );
2581         }
2582         module_unneed( p_demux, p_id3 );
2583     }
2584     vlc_object_release( p_demux_meta );
2585 }
2586
2587
2588 static void SlaveDemux( input_thread_t *p_input, bool *pb_demux_polled )
2589 {
2590     int64_t i_time;
2591     int i;
2592
2593     *pb_demux_polled = false;
2594     if( demux_Control( p_input->p->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2595     {
2596         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2597         return;
2598     }
2599
2600     for( i = 0; i < p_input->p->i_slave; i++ )
2601     {
2602         input_source_t *in = p_input->p->slave[i];
2603         int i_ret;
2604
2605         if( in->b_eof )
2606             continue;
2607
2608         const bool b_demux_polled = in->p_demux->pf_demux != NULL;
2609         if( !b_demux_polled )
2610             continue;
2611
2612         *pb_demux_polled = true;
2613
2614         /* Call demux_Demux until we have read enough data */
2615         if( demux_Control( in->p_demux, DEMUX_SET_NEXT_DEMUX_TIME, i_time ) )
2616         {
2617             for( ;; )
2618             {
2619                 int64_t i_stime;
2620                 if( demux_Control( in->p_demux, DEMUX_GET_TIME, &i_stime ) )
2621                 {
2622                     msg_Err( p_input, "slave[%d] doesn't like "
2623                              "DEMUX_GET_TIME -> EOF", i );
2624                     i_ret = 0;
2625                     break;
2626                 }
2627
2628                 if( i_stime >= i_time )
2629                 {
2630                     i_ret = 1;
2631                     break;
2632                 }
2633
2634                 if( ( i_ret = demux_Demux( in->p_demux ) ) <= 0 )
2635                     break;
2636             }
2637         }
2638         else
2639         {
2640             i_ret = demux_Demux( in->p_demux );
2641         }
2642
2643         if( i_ret <= 0 )
2644         {
2645             msg_Dbg( p_input, "slave %d EOF", i );
2646             in->b_eof = true;
2647         }
2648     }
2649 }
2650
2651 static void SlaveSeek( input_thread_t *p_input )
2652 {
2653     int64_t i_time;
2654     int i;
2655
2656     if( demux_Control( p_input->p->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2657     {
2658         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2659         return;
2660     }
2661
2662     for( i = 0; i < p_input->p->i_slave; i++ )
2663     {
2664         input_source_t *in = p_input->p->slave[i];
2665
2666         if( demux_Control( in->p_demux, DEMUX_SET_TIME, i_time, true ) )
2667         {
2668             if( !in->b_eof )
2669                 msg_Err( p_input, "seek failed for slave %d -> EOF", i );
2670             in->b_eof = true;
2671         }
2672         else
2673         {
2674             in->b_eof = false;
2675         }
2676     }
2677 }
2678
2679 /*****************************************************************************
2680  * InputMetaUser:
2681  *****************************************************************************/
2682 static void InputMetaUser( input_thread_t *p_input, vlc_meta_t *p_meta )
2683 {
2684     static const struct { int i_meta; const char *psz_name; } p_list[] = {
2685         { vlc_meta_Title,       "meta-title" },
2686         { vlc_meta_Artist,      "meta-artist" },
2687         { vlc_meta_Genre,       "meta-genre" },
2688         { vlc_meta_Copyright,   "meta-copyright" },
2689         { vlc_meta_Description, "meta-description" },
2690         { vlc_meta_Date,        "meta-date" },
2691         { vlc_meta_URL,         "meta-url" },
2692         { 0, NULL }
2693     };
2694
2695     /* Get meta information from user */
2696     for( int i = 0; p_list[i].psz_name; i++ )
2697     {
2698         char *psz_string = var_GetNonEmptyString( p_input, p_list[i].psz_name );
2699         if( !psz_string )
2700             continue;
2701
2702         EnsureUTF8( psz_string );
2703         vlc_meta_Set( p_meta, p_list[i].i_meta, psz_string );
2704         free( psz_string );
2705     }
2706 }
2707
2708 static void AppendAttachment( int *pi_attachment, input_attachment_t ***ppp_attachment,
2709                               int i_new, input_attachment_t **pp_new )
2710 {
2711     int i_attachment = *pi_attachment;
2712     input_attachment_t **attachment = *ppp_attachment;
2713     int i;
2714
2715     attachment = xrealloc( attachment,
2716                     sizeof(*attachment) * ( i_attachment + i_new ) );
2717     for( i = 0; i < i_new; i++ )
2718         attachment[i_attachment++] = pp_new[i];
2719     free( pp_new );
2720
2721     /* */
2722     *pi_attachment = i_attachment;
2723     *ppp_attachment = attachment;
2724 }
2725
2726 /*****************************************************************************
2727  * InputUpdateMeta: merge p_item meta data with p_meta taking care of
2728  * arturl and locking issue.
2729  *****************************************************************************/
2730 static void InputUpdateMeta( input_thread_t *p_input, vlc_meta_t *p_meta )
2731 {
2732     /* If metadata changed, then the attachments might have changed.
2733        We need to update them in case they contain album art. */
2734     input_source_t *in = &p_input->p->input;
2735     int i_attachment;
2736     input_attachment_t **attachment;
2737     if( !demux_Control( in->p_demux, DEMUX_GET_ATTACHMENTS,
2738                          &attachment, &i_attachment ) )
2739     {
2740         vlc_mutex_lock( &p_input->p->p_item->lock );
2741         if( p_input->p->i_attachment > 0 )
2742         {
2743             for( int i = 0; i < p_input->p->i_attachment; i++ )
2744                 vlc_input_attachment_Delete( p_input->p->attachment[i] );
2745             TAB_CLEAN( p_input->p->i_attachment, p_input->p->attachment );
2746         }
2747         AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2748                           i_attachment, attachment );
2749         vlc_mutex_unlock( &p_input->p->p_item->lock );
2750     }
2751     es_out_ControlSetMeta( p_input->p->p_es_out, p_meta );
2752     vlc_meta_Delete( p_meta );
2753 }
2754
2755 /*****************************************************************************
2756  * InputGetExtraFiles
2757  *  Autodetect extra input list
2758  *****************************************************************************/
2759 static void InputGetExtraFilesPattern( input_thread_t *p_input,
2760                                        int *pi_list, char ***pppsz_list,
2761                                        const char *psz_path,
2762                                        const char *psz_match,
2763                                        const char *psz_format,
2764                                        int i_start, int i_stop )
2765 {
2766     int i_list;
2767     char **ppsz_list;
2768
2769     TAB_INIT( i_list, ppsz_list );
2770
2771     char *psz_base = strdup( psz_path );
2772     if( !psz_base )
2773         goto exit;
2774
2775     /* Remove the extension */
2776     char *psz_end = &psz_base[strlen(psz_base)-strlen(psz_match)];
2777     assert( psz_end >= psz_base);
2778     *psz_end = '\0';
2779
2780     /* Try to list files */
2781     for( int i = i_start; i <= i_stop; i++ )
2782     {
2783         struct stat st;
2784         char *psz_file;
2785
2786         if( asprintf( &psz_file, psz_format, psz_base, i ) < 0 )
2787             break;
2788
2789         char *psz_tmp_path = get_path( psz_file );
2790
2791         if( vlc_stat( psz_tmp_path, &st ) || !S_ISREG( st.st_mode ) || !st.st_size )
2792         {
2793             free( psz_file );
2794             free( psz_tmp_path );
2795             break;
2796         }
2797
2798         msg_Dbg( p_input, "Detected extra file `%s'", psz_file );
2799         TAB_APPEND( i_list, ppsz_list, psz_file );
2800         free( psz_tmp_path );
2801     }
2802     free( psz_base );
2803 exit:
2804     *pi_list = i_list;
2805     *pppsz_list = ppsz_list;
2806 }
2807
2808 static void InputGetExtraFiles( input_thread_t *p_input,
2809                                 int *pi_list, char ***pppsz_list,
2810                                 const char *psz_access, const char *psz_path )
2811 {
2812     static const struct
2813     {
2814         const char *psz_match;
2815         const char *psz_format;
2816         int i_start;
2817         int i_stop;
2818     } p_pattern[] = {
2819         /* XXX the order is important */
2820         { ".001",         "%s.%.3d",        2, 999 },
2821         { NULL, NULL, 0, 0 }
2822     };
2823
2824     TAB_INIT( *pi_list, *pppsz_list );
2825
2826     if( ( psz_access && *psz_access && strcmp( psz_access, "file" ) ) || !psz_path )
2827         return;
2828
2829     const size_t i_path = strlen(psz_path);
2830
2831     for( int i = 0; p_pattern[i].psz_match != NULL; i++ )
2832     {
2833         const size_t i_ext = strlen(p_pattern[i].psz_match );
2834
2835         if( i_path < i_ext )
2836             continue;
2837         if( !strcmp( &psz_path[i_path-i_ext], p_pattern[i].psz_match ) )
2838         {
2839             InputGetExtraFilesPattern( p_input, pi_list, pppsz_list,
2840                                        psz_path,
2841                                        p_pattern[i].psz_match, p_pattern[i].psz_format,
2842                                        p_pattern[i].i_start, p_pattern[i].i_stop );
2843             return;
2844         }
2845     }
2846 }
2847
2848 /* */
2849 static void input_ChangeState( input_thread_t *p_input, int i_state )
2850 {
2851     const bool b_changed = p_input->p->i_state != i_state;
2852
2853     p_input->p->i_state = i_state;
2854     if( i_state == ERROR_S )
2855         p_input->b_error = true;
2856     else if( i_state == END_S )
2857         p_input->b_eof = true;
2858
2859     if( b_changed )
2860     {
2861         input_item_SetErrorWhenReading( p_input->p->p_item, p_input->b_error );
2862         input_SendEventState( p_input, i_state );
2863     }
2864 }
2865
2866
2867 /*****************************************************************************
2868  * MRLSplit: parse the access, demux and url part of the
2869  *           Media Resource Locator.
2870  *****************************************************************************/
2871 void input_SplitMRL( const char **access, const char **demux,
2872                      const char **path, const char **anchor, char *buf )
2873 {
2874     char *p;
2875
2876     /* Separate <path> from <access>[/<demux>]:// */
2877     p = strstr( buf, "://" );
2878     if( p != NULL )
2879     {
2880         *p = '\0';
2881         p += 3; /* skips "://" */
2882         *path = p;
2883
2884         /* Remove HTML anchor if present (not supported).
2885          * The hash symbol itself should be URI-encoded. */
2886         p = strchr( p, '#' );
2887         if( p != NULL )
2888         {
2889             *(p++) = '\0';
2890             *anchor = p;
2891         }
2892         else
2893             *anchor = "";
2894     }
2895     else
2896     {
2897 #ifndef NDEBUG
2898         fprintf( stderr, "%s(\"%s\") probably not a valid URI!\n", __func__,
2899                  buf );
2900 #endif
2901         /* Note: this is a valid non const pointer to "": */
2902         *path = buf + strlen( buf );
2903     }
2904
2905     /* Separate access from demux */
2906     p = strchr( buf, '/' );
2907     if( p != NULL )
2908     {
2909         *(p++) = '\0';
2910         if( p[0] == '$' )
2911             p++;
2912         *demux = p;
2913     }
2914     else
2915         *demux = "";
2916
2917     /* We really don't want module name substitution here! */
2918     p = buf;
2919     if( p[0] == '$' )
2920         p++;
2921     *access = p;
2922 }
2923
2924 static const char *MRLSeekPoint( const char *str, int *title, int *chapter )
2925 {
2926     char *end;
2927     unsigned long u;
2928
2929     /* Look for the title */
2930     u = strtoul( str, &end, 0 );
2931     *title = (str == end || u > (unsigned long)INT_MAX) ? -1 : (int)u;
2932     str = end;
2933
2934     /* Look for the chapter */
2935     if( *str == ':' )
2936     {
2937         str++;
2938         u = strtoul( str, &end, 0 );
2939         *chapter = (str == end || u > (unsigned long)INT_MAX) ? -1 : (int)u;
2940         str = end;
2941     }
2942     else
2943         *chapter = -1;
2944
2945     return str;
2946 }
2947
2948
2949 /*****************************************************************************
2950  * MRLSections: parse title and seekpoint info from the Media Resource Locator.
2951  *
2952  * Syntax:
2953  * [url][@[title_start][:chapter_start][-[title_end][:chapter_end]]]
2954  *****************************************************************************/
2955 static void MRLSections( const char *p,
2956                          int *pi_title_start, int *pi_title_end,
2957                          int *pi_chapter_start, int *pi_chapter_end )
2958 {
2959     *pi_title_start = *pi_title_end = *pi_chapter_start = *pi_chapter_end = -1;
2960
2961     int title_start, chapter_start, title_end, chapter_end;
2962
2963     if( !p )
2964         return;
2965
2966     if( *p != '-' )
2967         p = MRLSeekPoint( p, &title_start, &chapter_start );
2968     else
2969         title_start = chapter_start = -1;
2970
2971     if( *p == '-' )
2972         p = MRLSeekPoint( p + 1, &title_end, &chapter_end );
2973     else
2974         title_end = chapter_end = -1;
2975
2976     if( *p ) /* syntax error */
2977         return;
2978
2979     *pi_title_start = title_start;
2980     *pi_title_end = title_end;
2981     *pi_chapter_start = chapter_start;
2982     *pi_chapter_end = chapter_end;
2983 }
2984
2985 /*****************************************************************************
2986  * input_AddSubtitles: add a subtitle file and enable it
2987  *****************************************************************************/
2988 static void input_SubtitleAdd( input_thread_t *p_input,
2989                                const char *url, unsigned i_flags )
2990 {
2991     input_source_t *sub = InputSourceNew( p_input );
2992     if( sub == NULL )
2993         return;
2994
2995     vlc_value_t count;
2996
2997     var_Change( p_input, "spu-es", VLC_VAR_CHOICESCOUNT, &count, NULL );
2998
2999     if( InputSourceInit( p_input, sub, url, "subtitle",
3000                          (i_flags & SUB_CANFAIL) ) )
3001     {
3002         free( sub );
3003         return;
3004     }
3005     TAB_APPEND( p_input->p->i_slave, p_input->p->slave, sub );
3006
3007     if( !(i_flags & SUB_FORCED) )
3008         return;
3009
3010     /* Select the ES */
3011     vlc_value_t list;
3012
3013     if( var_Change( p_input, "spu-es", VLC_VAR_GETLIST, &list, NULL ) )
3014         return;
3015     if( count.i_int == 0 )
3016         count.i_int++;
3017     /* if it was first one, there is disable too */
3018
3019     if( count.i_int < list.p_list->i_count )
3020     {
3021         const int i_id = list.p_list->p_values[count.i_int].i_int;
3022
3023         es_out_Control( p_input->p->p_es_out_display, ES_OUT_SET_ES_DEFAULT_BY_ID, i_id );
3024         es_out_Control( p_input->p->p_es_out_display, ES_OUT_SET_ES_BY_ID, i_id );
3025     }
3026     var_FreeList( &list, NULL );
3027 }
3028
3029 static void input_SubtitleFileAdd( input_thread_t *p_input, char *psz_subtitle,
3030                                    unsigned i_flags )
3031 {
3032     /* if we are provided a subtitle.sub file,
3033      * see if we don't have a subtitle.idx and use it instead */
3034     char *psz_path = strdup( psz_subtitle );
3035     if( likely(psz_path != NULL) )
3036     {
3037         char *psz_extension = strrchr( psz_path, '.');
3038         if( psz_extension && strcmp( psz_extension, ".sub" ) == 0 )
3039         {
3040             struct stat st;
3041
3042             strcpy( psz_extension, ".idx" );
3043
3044             if( !vlc_stat( psz_path, &st ) && S_ISREG( st.st_mode ) )
3045             {
3046                 msg_Dbg( p_input, "using %s as subtitle file instead of %s",
3047                          psz_path, psz_subtitle );
3048                 strcpy( psz_subtitle, psz_path ); /* <- FIXME! constify */
3049             }
3050         }
3051         free( psz_path );
3052     }
3053
3054     char *url = vlc_path2uri( psz_subtitle, NULL );
3055     if( url == NULL )
3056         return;
3057
3058     input_SubtitleAdd( p_input, url, i_flags );
3059     free( url );
3060 }
3061
3062 /*****************************************************************************
3063  * Statistics
3064  *****************************************************************************/
3065 void input_UpdateStatistic( input_thread_t *p_input,
3066                             input_statistic_t i_type, int i_delta )
3067 {
3068     assert( p_input->p->i_state != INIT_S );
3069
3070     vlc_mutex_lock( &p_input->p->counters.counters_lock);
3071     switch( i_type )
3072     {
3073 #define I(c) stats_Update( p_input->p->counters.c, i_delta, NULL )
3074     case INPUT_STATISTIC_DECODED_VIDEO:
3075         I(p_decoded_video);
3076         break;
3077     case INPUT_STATISTIC_DECODED_AUDIO:
3078         I(p_decoded_audio);
3079         break;
3080     case INPUT_STATISTIC_DECODED_SUBTITLE:
3081         I(p_decoded_sub);
3082         break;
3083     case INPUT_STATISTIC_SENT_PACKET:
3084         I(p_sout_sent_packets);
3085         break;
3086 #undef I
3087     case INPUT_STATISTIC_SENT_BYTE:
3088     {
3089         uint64_t bytes;
3090
3091         stats_Update( p_input->p->counters.p_sout_sent_bytes, i_delta, &bytes );
3092         stats_Update( p_input->p->counters.p_sout_send_bitrate, bytes, NULL );
3093         break;
3094     }
3095     default:
3096         msg_Err( p_input, "Invalid statistic type %d (internal error)", i_type );
3097         break;
3098     }
3099     vlc_mutex_unlock( &p_input->p->counters.counters_lock);
3100 }
3101
3102 /**/
3103 /* TODO FIXME nearly the same logic that snapshot code */
3104 char *input_CreateFilename( vlc_object_t *p_obj, const char *psz_path, const char *psz_prefix, const char *psz_extension )
3105 {
3106     char *psz_file;
3107     DIR *path;
3108
3109     path = vlc_opendir( psz_path );
3110     if( path )
3111     {
3112         closedir( path );
3113
3114         char *psz_tmp = str_format( pl_Get(p_obj), psz_prefix );
3115         if( !psz_tmp )
3116             return NULL;
3117
3118         filename_sanitize( psz_tmp );
3119
3120         if( asprintf( &psz_file, "%s"DIR_SEP"%s%s%s",
3121                       psz_path, psz_tmp,
3122                       psz_extension ? "." : "",
3123                       psz_extension ? psz_extension : "" ) < 0 )
3124             psz_file = NULL;
3125         free( psz_tmp );
3126         return psz_file;
3127     }
3128     else
3129     {
3130         psz_file = str_format( pl_Get(p_obj), psz_path );
3131         path_sanitize( psz_file );
3132         return psz_file;
3133     }
3134 }
3135