]> git.sesse.net Git - vlc/blob - src/input/input.c
87bbfe8da8b946dcf9ab7c615697d13aac343af2
[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 <vlc_dialog.h>
51 #include <vlc_url.h>
52 #include <vlc_charset.h>
53 #include <vlc_fs.h>
54 #include <vlc_strings.h>
55 #include <vlc_modules.h>
56
57 /*****************************************************************************
58  * Local prototypes
59  *****************************************************************************/
60 static void Destructor( input_thread_t * p_input );
61
62 static  void *Run            ( void * );
63
64 static input_thread_t * Create  ( vlc_object_t *, input_item_t *,
65                                   const char *, bool, input_resource_t * );
66 static  int             Init    ( input_thread_t *p_input );
67 static void             End     ( input_thread_t *p_input );
68 static void             MainLoop( input_thread_t *p_input, bool b_interactive );
69
70 static inline int ControlPop( input_thread_t *, int *, vlc_value_t *, mtime_t i_deadline, bool b_postpone_seek );
71 static void       ControlRelease( int i_type, vlc_value_t val );
72 static bool       ControlIsSeekRequest( int i_type );
73 static bool       Control( input_thread_t *, int, vlc_value_t );
74
75 static int  UpdateTitleSeekpointFromDemux( input_thread_t * );
76 static void UpdateGenericFromDemux( input_thread_t * );
77 static void UpdateTitleListfromDemux( input_thread_t * );
78
79 static void MRLSections( const char *, int *, int *, int *, int *);
80
81 static input_source_t *InputSourceNew( input_thread_t *);
82 static int  InputSourceInit( input_thread_t *, input_source_t *,
83                              const char *, const char *psz_forced_demux,
84                              bool b_in_can_fail );
85 static void InputSourceClean( input_source_t * );
86 static void InputSourceMeta( input_thread_t *, input_source_t *, vlc_meta_t * );
87
88 /* TODO */
89 //static void InputGetAttachments( input_thread_t *, input_source_t * );
90 static void SlaveDemux( input_thread_t *p_input, bool *pb_demux_polled );
91 static void SlaveSeek( input_thread_t *p_input );
92
93 static void InputMetaUser( input_thread_t *p_input, vlc_meta_t *p_meta );
94 static void InputUpdateMeta( input_thread_t *p_input, vlc_meta_t *p_meta );
95 static void InputGetExtraFiles( input_thread_t *p_input,
96                                 int *pi_list, char ***pppsz_list,
97                                 const char *psz_access, const char *psz_path );
98
99 static void AppendAttachment( int *pi_attachment, input_attachment_t ***ppp_attachment,
100                               int i_new, input_attachment_t **pp_new );
101
102 enum {
103     SUB_NOFLAG = 0x00,
104     SUB_FORCED = 0x01,
105     SUB_CANFAIL = 0x02,
106 };
107
108 static void input_SubtitleAdd( input_thread_t *, const char *, unsigned );
109 static void input_SubtitleFileAdd( input_thread_t *, char *, unsigned );
110 static void input_ChangeState( input_thread_t *p_input, int i_state ); /* TODO fix name */
111
112 #undef input_Create
113 /**
114  * Create a new input_thread_t.
115  *
116  * You need to call input_Start on it when you are done
117  * adding callback on the variables/events you want to monitor.
118  *
119  * \param p_parent a vlc_object
120  * \param p_item an input item
121  * \param psz_log an optional prefix for this input logs
122  * \param p_resource an optional input ressource
123  * \return a pointer to the spawned input thread
124  */
125 input_thread_t *input_Create( vlc_object_t *p_parent,
126                               input_item_t *p_item,
127                               const char *psz_log, input_resource_t *p_resource )
128 {
129     return Create( p_parent, p_item, psz_log, false, p_resource );
130 }
131
132 #undef input_CreateAndStart
133 /**
134  * Create a new input_thread_t and start it.
135  *
136  * Provided for convenience.
137  *
138  * \see input_Create
139  */
140 input_thread_t *input_CreateAndStart( vlc_object_t *p_parent,
141                                       input_item_t *p_item, const char *psz_log )
142 {
143     input_thread_t *p_input = input_Create( p_parent, p_item, psz_log, NULL );
144
145     if( input_Start( p_input ) )
146     {
147         vlc_object_release( p_input );
148         return NULL;
149     }
150     return p_input;
151 }
152
153 #undef input_Read
154 /**
155  * Initialize an input thread and run it until it stops by itself.
156  *
157  * \param p_parent a vlc_object
158  * \param p_item an input item
159  * \return an error code, VLC_SUCCESS on success
160  */
161 int input_Read( vlc_object_t *p_parent, input_item_t *p_item )
162 {
163     input_thread_t *p_input = Create( p_parent, p_item, NULL, false, NULL );
164     if( !p_input )
165         return VLC_EGENERIC;
166
167     if( !Init( p_input ) )
168     {
169         MainLoop( p_input, false );
170         End( p_input );
171     }
172
173     vlc_object_release( p_input );
174     return VLC_SUCCESS;
175 }
176
177 /**
178  * Initialize an input and initialize it to preparse the item
179  * This function is blocking. It will only accept parsing regular files.
180  *
181  * \param p_parent a vlc_object_t
182  * \param p_item an input item
183  * \return VLC_SUCCESS or an error
184  */
185 int input_Preparse( vlc_object_t *p_parent, input_item_t *p_item )
186 {
187     input_thread_t *p_input;
188
189     /* Allocate descriptor */
190     p_input = Create( p_parent, p_item, NULL, true, NULL );
191     if( !p_input )
192         return VLC_EGENERIC;
193
194     if( !Init( p_input ) )
195         End( p_input );
196
197     vlc_object_release( p_input );
198
199     return VLC_SUCCESS;
200 }
201
202 /**
203  * Start a input_thread_t created by input_Create.
204  *
205  * You must not start an already running input_thread_t.
206  *
207  * \param the input thread to start
208  */
209 int input_Start( input_thread_t *p_input )
210 {
211     /* Create thread and wait for its readiness. */
212     p_input->p->is_running = !vlc_clone( &p_input->p->thread,
213                                          Run, p_input, VLC_THREAD_PRIORITY_INPUT );
214     if( !p_input->p->is_running )
215     {
216         input_ChangeState( p_input, ERROR_S );
217         msg_Err( p_input, "cannot create input thread" );
218         return VLC_EGENERIC;
219     }
220     return VLC_SUCCESS;
221 }
222
223 /**
224  * Request a running input thread to stop and die
225  *
226  * b_abort must be true when a user stop is requested and not because you have
227  * detected an error or an eof. It will be used to properly send the
228  * INPUT_EVENT_ABORT event.
229  *
230  * \param p_input the input thread to stop
231  * \param b_abort true if the input has been aborted by a user request
232  */
233 void input_Stop( input_thread_t *p_input, bool b_abort )
234 {
235     /* Set die for input and ALL of this childrens (even (grand-)grand-childrens)
236      * It is needed here even if it is done in INPUT_CONTROL_SET_DIE handler to
237      * unlock the control loop */
238     ObjectKillChildrens( VLC_OBJECT(p_input) );
239
240     vlc_mutex_lock( &p_input->p->lock_control );
241     p_input->p->b_abort |= b_abort;
242     vlc_mutex_unlock( &p_input->p->lock_control );
243
244     input_ControlPush( p_input, INPUT_CONTROL_SET_DIE, NULL );
245 }
246
247 void input_Join( input_thread_t *p_input )
248 {
249     if( p_input->p->is_running )
250         vlc_join( p_input->p->thread, NULL );
251 }
252
253 void input_Release( input_thread_t *p_input )
254 {
255     vlc_object_release( p_input );
256 }
257
258 /**
259  * Close an input
260  *
261  * It does not call input_Stop itself.
262  */
263 void input_Close( input_thread_t *p_input )
264 {
265     input_Join( p_input );
266     input_Release( p_input );
267 }
268
269 /**
270  * Get the item from an input thread
271  * FIXME it does not increase ref count of the item.
272  * if it is used after p_input is destroyed nothing prevent it from
273  * being freed.
274  */
275 input_item_t *input_GetItem( input_thread_t *p_input )
276 {
277     assert( p_input && p_input->p );
278     return p_input->p->p_item;
279 }
280
281 /*****************************************************************************
282  * This function creates a new input, and returns a pointer
283  * to its description. On error, it returns NULL.
284  *
285  * XXX Do not forget to update vlc_input.h if you add new variables.
286  *****************************************************************************/
287 static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
288                                const char *psz_header, bool b_quick,
289                                input_resource_t *p_resource )
290 {
291     input_thread_t *p_input = NULL;                 /* thread descriptor */
292     int i;
293
294     /* Allocate descriptor */
295     p_input = vlc_custom_create( p_parent, sizeof( *p_input ), "input" );
296     if( p_input == NULL )
297         return NULL;
298
299     /* Construct a nice name for the input timer */
300     char psz_timer_name[255];
301     char * psz_name = input_item_GetName( p_item );
302     snprintf( psz_timer_name, sizeof(psz_timer_name),
303               "input launching for '%s'", psz_name );
304
305     msg_Dbg( p_input, "Creating an input for '%s'", psz_name);
306
307     free( psz_name );
308
309     p_input->p = calloc( 1, sizeof( input_thread_private_t ) );
310     if( !p_input->p )
311     {
312         vlc_object_release( p_input );
313         return NULL;
314     }
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                                                         CLOCK_FREQ;
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 + CLOCK_FREQ;
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 / CLOCK_FREQ ) );
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
1860             demux_Control( p_input->p->input.p_demux, DEMUX_SET_ES, (int)val.i_int );
1861             break;
1862
1863         case INPUT_CONTROL_RESTART_ES:
1864             es_out_Control( p_input->p->p_es_out_display,
1865                             ES_OUT_RESTART_ES_BY_ID, (int)val.i_int );
1866             break;
1867
1868         case INPUT_CONTROL_SET_AUDIO_DELAY:
1869             input_SendEventAudioDelay( p_input, val.i_time );
1870             UpdatePtsDelay( p_input );
1871             break;
1872
1873         case INPUT_CONTROL_SET_SPU_DELAY:
1874             input_SendEventSubtitleDelay( p_input, val.i_time );
1875             UpdatePtsDelay( p_input );
1876             break;
1877
1878         case INPUT_CONTROL_SET_TITLE:
1879         case INPUT_CONTROL_SET_TITLE_NEXT:
1880         case INPUT_CONTROL_SET_TITLE_PREV:
1881         {
1882             if( p_input->p->b_recording )
1883             {
1884                 msg_Err( p_input, "INPUT_CONTROL_SET_TITLE(*) ignored while recording" );
1885                 break;
1886             }
1887             if( p_input->p->input.i_title <= 0 )
1888                 break;
1889
1890             int i_title = p_input->p->input.p_demux->info.i_title;
1891             if( i_type == INPUT_CONTROL_SET_TITLE_PREV )
1892                 i_title--;
1893             else if( i_type == INPUT_CONTROL_SET_TITLE_NEXT )
1894                 i_title++;
1895             else
1896                 i_title = val.i_int;
1897             if( i_title < 0 || i_title >= p_input->p->input.i_title )
1898                 break;
1899
1900             es_out_SetTime( p_input->p->p_es_out, -1 );
1901             demux_Control( p_input->p->input.p_demux,
1902                            DEMUX_SET_TITLE, i_title );
1903             input_SendEventTitle( p_input, i_title );
1904             break;
1905         }
1906         case INPUT_CONTROL_SET_SEEKPOINT:
1907         case INPUT_CONTROL_SET_SEEKPOINT_NEXT:
1908         case INPUT_CONTROL_SET_SEEKPOINT_PREV:
1909         {
1910             if( p_input->p->b_recording )
1911             {
1912                 msg_Err( p_input, "INPUT_CONTROL_SET_SEEKPOINT(*) ignored while recording" );
1913                 break;
1914             }
1915             if( p_input->p->input.i_title <= 0 )
1916                 break;
1917
1918             demux_t *p_demux = p_input->p->input.p_demux;
1919
1920             int i_title = p_demux->info.i_title;
1921             int i_seekpoint = p_demux->info.i_seekpoint;
1922
1923             if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
1924             {
1925                 int64_t i_seekpoint_time = p_input->p->input.title[i_title]->seekpoint[i_seekpoint]->i_time_offset;
1926                 int64_t i_input_time = var_GetTime( p_input, "time" );
1927                 if( i_seekpoint_time >= 0 && i_input_time >= 0 )
1928                 {
1929                     if( i_input_time < i_seekpoint_time + 3000000 )
1930                         i_seekpoint--;
1931                 }
1932                 else
1933                     i_seekpoint--;
1934             }
1935             else if( i_type == INPUT_CONTROL_SET_SEEKPOINT_NEXT )
1936                 i_seekpoint++;
1937             else
1938                 i_seekpoint = val.i_int;
1939             if( i_seekpoint < 0
1940              || i_seekpoint >= p_input->p->input.title[i_title]->i_seekpoint )
1941                 break;
1942
1943             es_out_SetTime( p_input->p->p_es_out, -1 );
1944             demux_Control( p_input->p->input.p_demux,
1945                            DEMUX_SET_SEEKPOINT, i_seekpoint );
1946             input_SendEventSeekpoint( p_input, i_title, i_seekpoint );
1947             break;
1948         }
1949
1950         case INPUT_CONTROL_ADD_SUBTITLE:
1951             if( val.psz_string )
1952                 input_SubtitleFileAdd( p_input, val.psz_string, true );
1953             break;
1954
1955         case INPUT_CONTROL_ADD_SLAVE:
1956             if( val.psz_string )
1957             {
1958                 const char *uri = val.psz_string;
1959                 input_source_t *slave = InputSourceNew( p_input );
1960
1961                 if( slave && !InputSourceInit( p_input, slave, uri, NULL, false ) )
1962                 {
1963                     vlc_meta_t *p_meta;
1964                     int64_t i_time;
1965
1966                     /* Add the slave */
1967                     msg_Dbg( p_input, "adding %s as slave on the fly", uri );
1968
1969                     /* Set position */
1970                     if( demux_Control( p_input->p->input.p_demux,
1971                                         DEMUX_GET_TIME, &i_time ) )
1972                     {
1973                         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
1974                         InputSourceClean( slave );
1975                         free( slave );
1976                         break;
1977                     }
1978                     if( demux_Control( slave->p_demux,
1979                                        DEMUX_SET_TIME, i_time, true ) )
1980                     {
1981                         msg_Err( p_input, "seek failed for new slave" );
1982                         InputSourceClean( slave );
1983                         free( slave );
1984                         break;
1985                     }
1986
1987                     /* Get meta (access and demux) */
1988                     p_meta = vlc_meta_New();
1989                     if( p_meta )
1990                     {
1991                         demux_Control( slave->p_demux, DEMUX_GET_META, p_meta );
1992                         InputUpdateMeta( p_input, p_meta );
1993                     }
1994
1995                     TAB_APPEND( p_input->p->i_slave, p_input->p->slave, slave );
1996                 }
1997                 else
1998                 {
1999                     free( slave );
2000                     msg_Warn( p_input, "failed to add %s as slave", uri );
2001                 }
2002             }
2003             break;
2004
2005         case INPUT_CONTROL_SET_RECORD_STATE:
2006             if( !!p_input->p->b_recording != !!val.b_bool )
2007             {
2008                 if( p_input->p->input.b_can_stream_record )
2009                 {
2010                     if( demux_Control( p_input->p->input.p_demux,
2011                                        DEMUX_SET_RECORD_STATE, val.b_bool ) )
2012                         val.b_bool = false;
2013                 }
2014                 else
2015                 {
2016                     if( es_out_SetRecordState( p_input->p->p_es_out_display, val.b_bool ) )
2017                         val.b_bool = false;
2018                 }
2019                 p_input->p->b_recording = val.b_bool;
2020
2021                 input_SendEventRecord( p_input, val.b_bool );
2022
2023                 b_force_update = true;
2024             }
2025             break;
2026
2027         case INPUT_CONTROL_SET_FRAME_NEXT:
2028             if( p_input->p->i_state == PAUSE_S )
2029             {
2030                 es_out_SetFrameNext( p_input->p->p_es_out );
2031             }
2032             else if( p_input->p->i_state == PLAYING_S )
2033             {
2034                 ControlPause( p_input, i_control_date );
2035             }
2036             else
2037             {
2038                 msg_Err( p_input, "invalid state for frame next" );
2039             }
2040             b_force_update = true;
2041             break;
2042
2043         case INPUT_CONTROL_SET_BOOKMARK:
2044         {
2045             mtime_t time_offset = -1;
2046
2047             vlc_mutex_lock( &p_input->p->p_item->lock );
2048             if( val.i_int >= 0 && val.i_int < p_input->p->i_bookmark )
2049             {
2050                 const seekpoint_t *p_bookmark = p_input->p->pp_bookmark[val.i_int];
2051                 time_offset = p_bookmark->i_time_offset;
2052             }
2053             vlc_mutex_unlock( &p_input->p->p_item->lock );
2054
2055             if( time_offset < 0 )
2056             {
2057                 msg_Err( p_input, "invalid bookmark %"PRId64, val.i_int );
2058                 break;
2059             }
2060
2061             val.i_time = time_offset;
2062             b_force_update = Control( p_input, INPUT_CONTROL_SET_TIME, val );
2063             break;
2064         }
2065
2066         case INPUT_CONTROL_NAV_ACTIVATE:
2067         case INPUT_CONTROL_NAV_UP:
2068         case INPUT_CONTROL_NAV_DOWN:
2069         case INPUT_CONTROL_NAV_LEFT:
2070         case INPUT_CONTROL_NAV_RIGHT:
2071             demux_Control( p_input->p->input.p_demux, i_type
2072                            - INPUT_CONTROL_NAV_ACTIVATE + DEMUX_NAV_ACTIVATE );
2073             break;
2074
2075         default:
2076             msg_Err( p_input, "not yet implemented" );
2077             break;
2078     }
2079
2080     ControlRelease( i_type, val );
2081     return b_force_update;
2082 }
2083
2084 /*****************************************************************************
2085  * UpdateTitleSeekpoint
2086  *****************************************************************************/
2087 static int UpdateTitleSeekpoint( input_thread_t *p_input,
2088                                  int i_title, int i_seekpoint )
2089 {
2090     int i_title_end = p_input->p->input.i_title_end -
2091                         p_input->p->input.i_title_offset;
2092     int i_seekpoint_end = p_input->p->input.i_seekpoint_end -
2093                             p_input->p->input.i_seekpoint_offset;
2094
2095     if( i_title_end >= 0 && i_seekpoint_end >= 0 )
2096     {
2097         if( i_title > i_title_end ||
2098             ( i_title == i_title_end && i_seekpoint > i_seekpoint_end ) )
2099             return 0;
2100     }
2101     else if( i_seekpoint_end >= 0 )
2102     {
2103         if( i_seekpoint > i_seekpoint_end )
2104             return 0;
2105     }
2106     else if( i_title_end >= 0 )
2107     {
2108         if( i_title > i_title_end )
2109             return 0;
2110     }
2111     return 1;
2112 }
2113 /*****************************************************************************
2114  * Update*FromDemux:
2115  *****************************************************************************/
2116 static int UpdateTitleSeekpointFromDemux( input_thread_t *p_input )
2117 {
2118     demux_t *p_demux = p_input->p->input.p_demux;
2119
2120     /* TODO event-like */
2121     if( p_demux->info.i_update & INPUT_UPDATE_TITLE )
2122     {
2123         input_SendEventTitle( p_input, p_demux->info.i_title );
2124
2125         p_demux->info.i_update &= ~INPUT_UPDATE_TITLE;
2126     }
2127     if( p_demux->info.i_update & INPUT_UPDATE_SEEKPOINT )
2128     {
2129         input_SendEventSeekpoint( p_input,
2130                                   p_demux->info.i_title, p_demux->info.i_seekpoint );
2131
2132         p_demux->info.i_update &= ~INPUT_UPDATE_SEEKPOINT;
2133     }
2134
2135     /* Hmmm only works with master input */
2136     if( p_input->p->input.p_demux == p_demux )
2137         return UpdateTitleSeekpoint( p_input,
2138                                      p_demux->info.i_title,
2139                                      p_demux->info.i_seekpoint );
2140     return 1;
2141 }
2142
2143 static void UpdateGenericFromDemux( input_thread_t *p_input )
2144 {
2145     demux_t *p_demux = p_input->p->input.p_demux;
2146
2147     if( p_demux->info.i_update & INPUT_UPDATE_META )
2148     {
2149         vlc_meta_t *p_meta = vlc_meta_New();
2150         if( p_meta )
2151         {
2152             demux_Control( p_input->p->input.p_demux, DEMUX_GET_META, p_meta );
2153             InputUpdateMeta( p_input, p_meta );
2154         }
2155         p_demux->info.i_update &= ~INPUT_UPDATE_META;
2156     }
2157     {
2158         double quality;
2159         double strength;
2160
2161         if( !demux_Control( p_demux, DEMUX_GET_SIGNAL, &quality, &strength ) )
2162             input_SendEventSignal( p_input, quality, strength );
2163     }
2164 }
2165
2166 static void UpdateTitleListfromDemux( input_thread_t *p_input )
2167 {
2168     input_source_t *in = &p_input->p->input;
2169
2170     /* Delete the preexisting titles */
2171     if( in->i_title > 0 )
2172     {
2173         for( int i = 0; i < in->i_title; i++ )
2174             vlc_input_title_Delete( in->title[i] );
2175         TAB_CLEAN( in->i_title, in->title );
2176         in->b_title_demux = false;
2177     }
2178
2179     /* Get the new title list */
2180     if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2181                        &in->title, &in->i_title,
2182                        &in->i_title_offset, &in->i_seekpoint_offset ) )
2183         TAB_INIT( in->i_title, in->title );
2184     else
2185         in->b_title_demux = true;
2186
2187     InitTitle( p_input );
2188 }
2189
2190
2191 /*****************************************************************************
2192  * InputSourceNew:
2193  *****************************************************************************/
2194 static input_source_t *InputSourceNew( input_thread_t *p_input )
2195 {
2196     VLC_UNUSED(p_input);
2197
2198     return calloc( 1,  sizeof( input_source_t ) );
2199 }
2200
2201 /*****************************************************************************
2202  * InputSourceInit:
2203  *****************************************************************************/
2204 static int InputSourceInit( input_thread_t *p_input,
2205                             input_source_t *in, const char *psz_mrl,
2206                             const char *psz_forced_demux, bool b_in_can_fail )
2207 {
2208     const char *psz_access, *psz_demux, *psz_path, *psz_anchor = NULL;
2209     char *psz_var_demux = NULL;
2210     double f_fps;
2211
2212     assert( psz_mrl );
2213     char *psz_dup = strdup( psz_mrl );
2214
2215     if( psz_dup == NULL )
2216         goto error;
2217
2218     /* Split uri */
2219     input_SplitMRL( &psz_access, &psz_demux, &psz_path, &psz_anchor, psz_dup );
2220
2221     msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'",
2222              psz_mrl, psz_access, psz_demux, psz_path );
2223     if( !p_input->b_preparsing )
2224     {
2225         /* Find optional titles and seekpoints */
2226         MRLSections( psz_anchor, &in->i_title_start, &in->i_title_end,
2227                      &in->i_seekpoint_start, &in->i_seekpoint_end );
2228         if( psz_forced_demux && *psz_forced_demux )
2229         {
2230             psz_demux = psz_forced_demux;
2231         }
2232         else if( *psz_demux == '\0' )
2233         {
2234             /* special hack for forcing a demuxer with --demux=module
2235              * (and do nothing with a list) */
2236             psz_var_demux = var_GetNonEmptyString( p_input, "demux" );
2237             psz_demux = psz_var_demux;
2238             msg_Dbg( p_input, "specified demux `%s'", psz_demux );
2239         }
2240
2241         /* Try access_demux first */
2242         in->p_demux = demux_New( p_input, p_input, psz_access, psz_demux,
2243                                  psz_path, NULL, p_input->p->p_es_out, false );
2244     }
2245     else
2246     {
2247         /* Preparsing is only for file:// */
2248         if( *psz_demux )
2249             goto error;
2250         if( strcmp( psz_access, "file" ) )
2251             goto error;
2252         msg_Dbg( p_input, "trying to pre-parse %s",  psz_path );
2253     }
2254
2255     mtime_t i_pts_delay;
2256
2257     if( in->p_demux )
2258     {
2259         /* Get infos from access_demux */
2260         in->b_title_demux = true;
2261         if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2262                             &in->title, &in->i_title,
2263                             &in->i_title_offset, &in->i_seekpoint_offset ) )
2264         {
2265             TAB_INIT( in->i_title, in->title );
2266         }
2267         if( demux_Control( in->p_demux, DEMUX_CAN_CONTROL_PACE,
2268                             &in->b_can_pace_control ) )
2269             in->b_can_pace_control = false;
2270
2271         assert( in->p_demux->pf_demux != NULL || !in->b_can_pace_control );
2272
2273         if( !in->b_can_pace_control )
2274         {
2275             if( demux_Control( in->p_demux, DEMUX_CAN_CONTROL_RATE,
2276                                 &in->b_can_rate_control, &in->b_rescale_ts ) )
2277             {
2278                 in->b_can_rate_control = false;
2279                 in->b_rescale_ts = true; /* not used */
2280             }
2281         }
2282         else
2283         {
2284             in->b_can_rate_control = true;
2285             in->b_rescale_ts = true;
2286         }
2287         if( demux_Control( in->p_demux, DEMUX_CAN_PAUSE,
2288                             &in->b_can_pause ) )
2289             in->b_can_pause = false;
2290         var_SetBool( p_input, "can-pause", in->b_can_pause || !in->b_can_pace_control ); /* XXX temporary because of es_out_timeshift*/
2291         var_SetBool( p_input, "can-rate", !in->b_can_pace_control || in->b_can_rate_control ); /* XXX temporary because of es_out_timeshift*/
2292         var_SetBool( p_input, "can-rewind", !in->b_rescale_ts && !in->b_can_pace_control && in->b_can_rate_control );
2293
2294         bool b_can_seek;
2295         if( demux_Control( in->p_demux, DEMUX_CAN_SEEK, &b_can_seek ) )
2296             b_can_seek = false;
2297         var_SetBool( p_input, "can-seek", b_can_seek );
2298     }
2299     else
2300     {   /* Now try a real access */
2301         access_t *p_access = access_New( p_input, p_input,
2302                                          psz_access, psz_demux, psz_path );
2303         if( p_access == NULL )
2304         {
2305             if( vlc_object_alive( p_input ) )
2306             {
2307                 msg_Err( p_input, "open of `%s' failed", psz_mrl );
2308                 if( !b_in_can_fail )
2309                     dialog_Fatal( p_input, _("Your input can't be opened"),
2310                                    _("VLC is unable to open the MRL '%s'."
2311                                      " Check the log for details."), psz_mrl );
2312             }
2313             goto error;
2314         }
2315
2316         /* Access-forced demuxer (PARENTAL ADVISORY: EXPLICIT HACK) */
2317         if( !psz_demux[0] || !strcasecmp( psz_demux, "any" ) )
2318             psz_demux = p_access->psz_demux;
2319
2320         /* */
2321         int  i_input_list;
2322         char **ppsz_input_list;
2323
2324         TAB_INIT( i_input_list, ppsz_input_list );
2325
2326         /* On master stream only, use input-list */
2327         if( &p_input->p->input == in )
2328         {
2329             char *psz_list;
2330             char *psz_parser;
2331
2332             psz_list =
2333             psz_parser = var_CreateGetNonEmptyString( p_input, "input-list" );
2334
2335             while( psz_parser && *psz_parser )
2336             {
2337                 char *p = strchr( psz_parser, ',' );
2338                 if( p )
2339                     *p++ = '\0';
2340
2341                 if( *psz_parser )
2342                 {
2343                     char *psz_name = strdup( psz_parser );
2344                     if( psz_name )
2345                         TAB_APPEND( i_input_list, ppsz_input_list, psz_name );
2346                 }
2347
2348                 psz_parser = p;
2349             }
2350             free( psz_list );
2351         }
2352         /* Autodetect extra files if none specified */
2353         if( i_input_list <= 0 )
2354         {
2355             InputGetExtraFiles( p_input, &i_input_list, &ppsz_input_list,
2356                                 psz_access, psz_path );
2357         }
2358         if( i_input_list > 0 )
2359             TAB_APPEND( i_input_list, ppsz_input_list, NULL );
2360
2361         /* Create the stream_t */
2362         stream_t *p_stream = stream_AccessNew( p_access, ppsz_input_list );
2363         if( ppsz_input_list )
2364         {
2365             for( int i = 0; ppsz_input_list[i] != NULL; i++ )
2366                 free( ppsz_input_list[i] );
2367             TAB_CLEAN( i_input_list, ppsz_input_list );
2368         }
2369
2370         if( p_stream == NULL )
2371         {
2372             msg_Warn( p_input, "cannot create a stream_t from access" );
2373             goto error;
2374         }
2375
2376         /* Add stream filters */
2377         char *psz_stream_filter = var_GetNonEmptyString( p_input,
2378                                                          "stream-filter" );
2379         p_stream = stream_FilterChainNew( p_stream, psz_stream_filter,
2380                                var_GetBool( p_input, "input-record-native" ) );
2381         free( psz_stream_filter );
2382
2383         if( !p_input->b_preparsing )
2384         {
2385             bool b;
2386
2387             stream_Control( p_stream, STREAM_CAN_CONTROL_PACE,
2388                             &in->b_can_pace_control );
2389             in->b_can_rate_control = in->b_can_pace_control;
2390             in->b_rescale_ts = true;
2391
2392             stream_Control( p_stream, STREAM_CAN_PAUSE, &in->b_can_pause );
2393             var_SetBool( p_input, "can-pause",
2394                          in->b_can_pause || !in->b_can_pace_control ); /* XXX temporary because of es_out_timeshift*/
2395             var_SetBool( p_input, "can-rate",
2396                          !in->b_can_pace_control || in->b_can_rate_control ); /* XXX temporary because of es_out_timeshift*/
2397             var_SetBool( p_input, "can-rewind",
2398                          !in->b_rescale_ts && !in->b_can_pace_control );
2399
2400             stream_Control( p_stream, STREAM_CAN_SEEK, &b );
2401             var_SetBool( p_input, "can-seek", b );
2402
2403             in->b_title_demux = false;
2404
2405             stream_Control( p_stream, STREAM_GET_PTS_DELAY, &i_pts_delay );
2406         }
2407
2408         in->p_demux = demux_New( p_input, p_input, psz_access, psz_demux,
2409                    /* Take access/stream redirections into account: */
2410                             p_stream->psz_path ? p_stream->psz_path : psz_path,
2411                                  p_stream, p_input->p->p_es_out,
2412                                  p_input->b_preparsing );
2413
2414         if( in->p_demux == NULL )
2415         {
2416             stream_Delete( p_stream );
2417             if( vlc_object_alive( p_input ) )
2418             {
2419                 msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
2420                          psz_access, psz_demux, psz_path );
2421                 if( !b_in_can_fail )
2422                     dialog_Fatal( VLC_OBJECT( p_input ),
2423                                   _("VLC can't recognize the input's format"),
2424                                   _("The format of '%s' cannot be detected. "
2425                                     "Have a look at the log for details."), psz_mrl );
2426             }
2427             goto error;
2428         }
2429         assert( in->p_demux->pf_demux != NULL );
2430
2431         /* Get title from demux */
2432         if( !p_input->b_preparsing && in->i_title <= 0 )
2433         {
2434             if( demux_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2435                                 &in->title, &in->i_title,
2436                                 &in->i_title_offset, &in->i_seekpoint_offset ))
2437             {
2438                 TAB_INIT( in->i_title, in->title );
2439             }
2440             else
2441             {
2442                 in->b_title_demux = true;
2443             }
2444         }
2445     }
2446
2447     free( psz_var_demux );
2448     free( psz_dup );
2449
2450     /* Set record capabilities */
2451     if( demux_Control( in->p_demux, DEMUX_CAN_RECORD, &in->b_can_stream_record ) )
2452         in->b_can_stream_record = false;
2453 #ifdef ENABLE_SOUT
2454     if( !var_GetBool( p_input, "input-record-native" ) )
2455         in->b_can_stream_record = false;
2456     var_SetBool( p_input, "can-record", true );
2457 #else
2458     var_SetBool( p_input, "can-record", in->b_can_stream_record );
2459 #endif
2460
2461     /* get attachment
2462      * FIXME improve for b_preparsing: move it after GET_META and check psz_arturl */
2463     if( !p_input->b_preparsing )
2464     {
2465         int i_attachment;
2466         input_attachment_t **attachment;
2467         if( !demux_Control( in->p_demux, DEMUX_GET_ATTACHMENTS,
2468                              &attachment, &i_attachment ) )
2469         {
2470             vlc_mutex_lock( &p_input->p->p_item->lock );
2471             AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2472                               i_attachment, attachment );
2473             vlc_mutex_unlock( &p_input->p->p_item->lock );
2474         }
2475
2476         /* PTS delay: request from demux first. This is required for
2477          * access_demux and some special cases like SDP demux. Otherwise,
2478          * fallback to access */
2479         if( demux_Control( in->p_demux, DEMUX_GET_PTS_DELAY,
2480                            &in->i_pts_delay ) )
2481             in->i_pts_delay = i_pts_delay;
2482         if( in->i_pts_delay > INPUT_PTS_DELAY_MAX )
2483             in->i_pts_delay = INPUT_PTS_DELAY_MAX;
2484         else if( in->i_pts_delay < 0 )
2485             in->i_pts_delay = 0;
2486     }
2487
2488     if( !demux_Control( in->p_demux, DEMUX_GET_FPS, &f_fps ) && f_fps > 0.0 )
2489     {
2490         vlc_mutex_lock( &p_input->p->p_item->lock );
2491         p_input->p->f_fps = f_fps;
2492         vlc_mutex_unlock( &p_input->p->p_item->lock );
2493     }
2494
2495     if( var_GetInteger( p_input, "clock-synchro" ) != -1 )
2496         in->b_can_pace_control = !var_GetInteger( p_input, "clock-synchro" );
2497
2498     return VLC_SUCCESS;
2499
2500 error:
2501     if( in->p_demux )
2502         demux_Delete( in->p_demux );
2503
2504     free( psz_var_demux );
2505     free( psz_dup );
2506
2507     return VLC_EGENERIC;
2508 }
2509
2510 /*****************************************************************************
2511  * InputSourceClean:
2512  *****************************************************************************/
2513 static void InputSourceClean( input_source_t *in )
2514 {
2515     int i;
2516
2517     if( in->p_demux )
2518         demux_Delete( in->p_demux );
2519
2520     if( in->i_title > 0 )
2521     {
2522         for( i = 0; i < in->i_title; i++ )
2523             vlc_input_title_Delete( in->title[i] );
2524         TAB_CLEAN( in->i_title, in->title );
2525     }
2526 }
2527
2528 /*****************************************************************************
2529  * InputSourceMeta:
2530  *****************************************************************************/
2531 static void InputSourceMeta( input_thread_t *p_input,
2532                              input_source_t *p_source, vlc_meta_t *p_meta )
2533 {
2534     demux_t *p_demux = p_source->p_demux;
2535
2536     /* XXX Remember that checking against p_item->p_meta->i_status & ITEM_PREPARSED
2537      * is a bad idea */
2538
2539     bool has_meta = false;
2540
2541     /* Read demux meta */
2542     if( !demux_Control( p_demux, DEMUX_GET_META, p_meta ) )
2543         has_meta = true;
2544
2545     bool has_unsupported;
2546     if( demux_Control( p_demux, DEMUX_HAS_UNSUPPORTED_META, &has_unsupported ) )
2547         has_unsupported = true;
2548
2549     /* If the demux report unsupported meta data, or if we don't have meta data
2550      * try an external "meta reader" */
2551     if( has_meta && !has_unsupported )
2552         return;
2553
2554     demux_meta_t *p_demux_meta =
2555         vlc_custom_create( p_demux, sizeof( *p_demux_meta ), "demux meta" );
2556     if( !p_demux_meta )
2557         return;
2558     p_demux_meta->p_demux = p_demux;
2559     p_demux_meta->p_item = p_input->p->p_item;
2560
2561     module_t *p_id3 = module_need( p_demux_meta, "meta reader", NULL, false );
2562     if( p_id3 )
2563     {
2564         if( p_demux_meta->p_meta )
2565         {
2566             vlc_meta_Merge( p_meta, p_demux_meta->p_meta );
2567             vlc_meta_Delete( p_demux_meta->p_meta );
2568         }
2569
2570         if( p_demux_meta->i_attachments > 0 )
2571         {
2572             vlc_mutex_lock( &p_input->p->p_item->lock );
2573             AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2574                               p_demux_meta->i_attachments, p_demux_meta->attachments );
2575             vlc_mutex_unlock( &p_input->p->p_item->lock );
2576         }
2577         module_unneed( p_demux, p_id3 );
2578     }
2579     vlc_object_release( p_demux_meta );
2580 }
2581
2582
2583 static void SlaveDemux( input_thread_t *p_input, bool *pb_demux_polled )
2584 {
2585     int64_t i_time;
2586     int i;
2587
2588     *pb_demux_polled = false;
2589     if( demux_Control( p_input->p->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2590     {
2591         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2592         return;
2593     }
2594
2595     for( i = 0; i < p_input->p->i_slave; i++ )
2596     {
2597         input_source_t *in = p_input->p->slave[i];
2598         int i_ret;
2599
2600         if( in->b_eof )
2601             continue;
2602
2603         const bool b_demux_polled = in->p_demux->pf_demux != NULL;
2604         if( !b_demux_polled )
2605             continue;
2606
2607         *pb_demux_polled = true;
2608
2609         /* Call demux_Demux until we have read enough data */
2610         if( demux_Control( in->p_demux, DEMUX_SET_NEXT_DEMUX_TIME, i_time ) )
2611         {
2612             for( ;; )
2613             {
2614                 int64_t i_stime;
2615                 if( demux_Control( in->p_demux, DEMUX_GET_TIME, &i_stime ) )
2616                 {
2617                     msg_Err( p_input, "slave[%d] doesn't like "
2618                              "DEMUX_GET_TIME -> EOF", i );
2619                     i_ret = 0;
2620                     break;
2621                 }
2622
2623                 if( i_stime >= i_time )
2624                 {
2625                     i_ret = 1;
2626                     break;
2627                 }
2628
2629                 if( ( i_ret = demux_Demux( in->p_demux ) ) <= 0 )
2630                     break;
2631             }
2632         }
2633         else
2634         {
2635             i_ret = demux_Demux( in->p_demux );
2636         }
2637
2638         if( i_ret <= 0 )
2639         {
2640             msg_Dbg( p_input, "slave %d EOF", i );
2641             in->b_eof = true;
2642         }
2643     }
2644 }
2645
2646 static void SlaveSeek( input_thread_t *p_input )
2647 {
2648     int64_t i_time;
2649     int i;
2650
2651     if( demux_Control( p_input->p->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2652     {
2653         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2654         return;
2655     }
2656
2657     for( i = 0; i < p_input->p->i_slave; i++ )
2658     {
2659         input_source_t *in = p_input->p->slave[i];
2660
2661         if( demux_Control( in->p_demux, DEMUX_SET_TIME, i_time, true ) )
2662         {
2663             if( !in->b_eof )
2664                 msg_Err( p_input, "seek failed for slave %d -> EOF", i );
2665             in->b_eof = true;
2666         }
2667         else
2668         {
2669             in->b_eof = false;
2670         }
2671     }
2672 }
2673
2674 /*****************************************************************************
2675  * InputMetaUser:
2676  *****************************************************************************/
2677 static void InputMetaUser( input_thread_t *p_input, vlc_meta_t *p_meta )
2678 {
2679     static const struct { int i_meta; const char *psz_name; } p_list[] = {
2680         { vlc_meta_Title,       "meta-title" },
2681         { vlc_meta_Artist,      "meta-artist" },
2682         { vlc_meta_Genre,       "meta-genre" },
2683         { vlc_meta_Copyright,   "meta-copyright" },
2684         { vlc_meta_Description, "meta-description" },
2685         { vlc_meta_Date,        "meta-date" },
2686         { vlc_meta_URL,         "meta-url" },
2687         { 0, NULL }
2688     };
2689
2690     /* Get meta information from user */
2691     for( int i = 0; p_list[i].psz_name; i++ )
2692     {
2693         char *psz_string = var_GetNonEmptyString( p_input, p_list[i].psz_name );
2694         if( !psz_string )
2695             continue;
2696
2697         EnsureUTF8( psz_string );
2698         vlc_meta_Set( p_meta, p_list[i].i_meta, psz_string );
2699         free( psz_string );
2700     }
2701 }
2702
2703 static void AppendAttachment( int *pi_attachment, input_attachment_t ***ppp_attachment,
2704                               int i_new, input_attachment_t **pp_new )
2705 {
2706     int i_attachment = *pi_attachment;
2707     input_attachment_t **attachment = *ppp_attachment;
2708     int i;
2709
2710     attachment = xrealloc( attachment,
2711                     sizeof(*attachment) * ( i_attachment + i_new ) );
2712     for( i = 0; i < i_new; i++ )
2713         attachment[i_attachment++] = pp_new[i];
2714     free( pp_new );
2715
2716     /* */
2717     *pi_attachment = i_attachment;
2718     *ppp_attachment = attachment;
2719 }
2720
2721 /*****************************************************************************
2722  * InputUpdateMeta: merge p_item meta data with p_meta taking care of
2723  * arturl and locking issue.
2724  *****************************************************************************/
2725 static void InputUpdateMeta( input_thread_t *p_input, vlc_meta_t *p_meta )
2726 {
2727     /* If metadata changed, then the attachments might have changed.
2728        We need to update them in case they contain album art. */
2729     input_source_t *in = &p_input->p->input;
2730     int i_attachment;
2731     input_attachment_t **attachment;
2732     if( !demux_Control( in->p_demux, DEMUX_GET_ATTACHMENTS,
2733                          &attachment, &i_attachment ) )
2734     {
2735         vlc_mutex_lock( &p_input->p->p_item->lock );
2736         if( p_input->p->i_attachment > 0 )
2737         {
2738             for( int i = 0; i < p_input->p->i_attachment; i++ )
2739                 vlc_input_attachment_Delete( p_input->p->attachment[i] );
2740             TAB_CLEAN( p_input->p->i_attachment, p_input->p->attachment );
2741         }
2742         AppendAttachment( &p_input->p->i_attachment, &p_input->p->attachment,
2743                           i_attachment, attachment );
2744         vlc_mutex_unlock( &p_input->p->p_item->lock );
2745     }
2746     es_out_ControlSetMeta( p_input->p->p_es_out, p_meta );
2747     vlc_meta_Delete( p_meta );
2748 }
2749
2750 /*****************************************************************************
2751  * InputGetExtraFiles
2752  *  Autodetect extra input list
2753  *****************************************************************************/
2754 static void InputGetExtraFilesPattern( input_thread_t *p_input,
2755                                        int *pi_list, char ***pppsz_list,
2756                                        const char *psz_path,
2757                                        const char *psz_match,
2758                                        const char *psz_format,
2759                                        int i_start, int i_stop )
2760 {
2761     int i_list;
2762     char **ppsz_list;
2763
2764     TAB_INIT( i_list, ppsz_list );
2765
2766     char *psz_base = strdup( psz_path );
2767     if( !psz_base )
2768         goto exit;
2769
2770     /* Remove the extension */
2771     char *psz_end = &psz_base[strlen(psz_base)-strlen(psz_match)];
2772     assert( psz_end >= psz_base);
2773     *psz_end = '\0';
2774
2775     /* Try to list files */
2776     for( int i = i_start; i <= i_stop; i++ )
2777     {
2778         struct stat st;
2779         char *psz_file;
2780
2781         if( asprintf( &psz_file, psz_format, psz_base, i ) < 0 )
2782             break;
2783
2784         char *psz_tmp_path = get_path( psz_file );
2785
2786         if( vlc_stat( psz_tmp_path, &st ) || !S_ISREG( st.st_mode ) || !st.st_size )
2787         {
2788             free( psz_file );
2789             free( psz_tmp_path );
2790             break;
2791         }
2792
2793         msg_Dbg( p_input, "Detected extra file `%s'", psz_file );
2794         TAB_APPEND( i_list, ppsz_list, psz_file );
2795         free( psz_tmp_path );
2796     }
2797     free( psz_base );
2798 exit:
2799     *pi_list = i_list;
2800     *pppsz_list = ppsz_list;
2801 }
2802
2803 static void InputGetExtraFiles( input_thread_t *p_input,
2804                                 int *pi_list, char ***pppsz_list,
2805                                 const char *psz_access, const char *psz_path )
2806 {
2807     static const struct
2808     {
2809         const char *psz_match;
2810         const char *psz_format;
2811         int i_start;
2812         int i_stop;
2813     } p_pattern[] = {
2814         /* XXX the order is important */
2815         { ".001",         "%s.%.3d",        2, 999 },
2816         { NULL, NULL, 0, 0 }
2817     };
2818
2819     TAB_INIT( *pi_list, *pppsz_list );
2820
2821     if( ( psz_access && *psz_access && strcmp( psz_access, "file" ) ) || !psz_path )
2822         return;
2823
2824     const size_t i_path = strlen(psz_path);
2825
2826     for( int i = 0; p_pattern[i].psz_match != NULL; i++ )
2827     {
2828         const size_t i_ext = strlen(p_pattern[i].psz_match );
2829
2830         if( i_path < i_ext )
2831             continue;
2832         if( !strcmp( &psz_path[i_path-i_ext], p_pattern[i].psz_match ) )
2833         {
2834             InputGetExtraFilesPattern( p_input, pi_list, pppsz_list,
2835                                        psz_path,
2836                                        p_pattern[i].psz_match, p_pattern[i].psz_format,
2837                                        p_pattern[i].i_start, p_pattern[i].i_stop );
2838             return;
2839         }
2840     }
2841 }
2842
2843 /* */
2844 static void input_ChangeState( input_thread_t *p_input, int i_state )
2845 {
2846     const bool b_changed = p_input->p->i_state != i_state;
2847
2848     p_input->p->i_state = i_state;
2849     if( i_state == ERROR_S )
2850         p_input->b_error = true;
2851     else if( i_state == END_S )
2852         p_input->b_eof = true;
2853
2854     if( b_changed )
2855     {
2856         input_item_SetErrorWhenReading( p_input->p->p_item, p_input->b_error );
2857         input_SendEventState( p_input, i_state );
2858     }
2859 }
2860
2861
2862 /*****************************************************************************
2863  * MRLSplit: parse the access, demux and url part of the
2864  *           Media Resource Locator.
2865  *****************************************************************************/
2866 void input_SplitMRL( const char **access, const char **demux,
2867                      const char **path, const char **anchor, char *buf )
2868 {
2869     char *p;
2870
2871     /* Separate <path> from <access>[/<demux>]:// */
2872     p = strstr( buf, "://" );
2873     if( p != NULL )
2874     {
2875         *p = '\0';
2876         p += 3; /* skips "://" */
2877         *path = p;
2878
2879         /* Remove HTML anchor if present (not supported).
2880          * The hash symbol itself should be URI-encoded. */
2881         p = strchr( p, '#' );
2882         if( p != NULL )
2883         {
2884             *(p++) = '\0';
2885             *anchor = p;
2886         }
2887         else
2888             *anchor = "";
2889     }
2890     else
2891     {
2892 #ifndef NDEBUG
2893         fprintf( stderr, "%s(\"%s\") probably not a valid URI!\n", __func__,
2894                  buf );
2895 #endif
2896         /* Note: this is a valid non const pointer to "": */
2897         *path = buf + strlen( buf );
2898     }
2899
2900     /* Separate access from demux */
2901     p = strchr( buf, '/' );
2902     if( p != NULL )
2903     {
2904         *(p++) = '\0';
2905         if( p[0] == '$' )
2906             p++;
2907         *demux = p;
2908     }
2909     else
2910         *demux = "";
2911
2912     /* We really don't want module name substitution here! */
2913     p = buf;
2914     if( p[0] == '$' )
2915         p++;
2916     *access = p;
2917 }
2918
2919 static const char *MRLSeekPoint( const char *str, int *title, int *chapter )
2920 {
2921     char *end;
2922     unsigned long u;
2923
2924     /* Look for the title */
2925     u = strtoul( str, &end, 0 );
2926     *title = (str == end || u > (unsigned long)INT_MAX) ? -1 : (int)u;
2927     str = end;
2928
2929     /* Look for the chapter */
2930     if( *str == ':' )
2931     {
2932         str++;
2933         u = strtoul( str, &end, 0 );
2934         *chapter = (str == end || u > (unsigned long)INT_MAX) ? -1 : (int)u;
2935         str = end;
2936     }
2937     else
2938         *chapter = -1;
2939
2940     return str;
2941 }
2942
2943
2944 /*****************************************************************************
2945  * MRLSections: parse title and seekpoint info from the Media Resource Locator.
2946  *
2947  * Syntax:
2948  * [url][@[title_start][:chapter_start][-[title_end][:chapter_end]]]
2949  *****************************************************************************/
2950 static void MRLSections( const char *p,
2951                          int *pi_title_start, int *pi_title_end,
2952                          int *pi_chapter_start, int *pi_chapter_end )
2953 {
2954     *pi_title_start = *pi_title_end = *pi_chapter_start = *pi_chapter_end = -1;
2955
2956     int title_start, chapter_start, title_end, chapter_end;
2957
2958     if( !p )
2959         return;
2960
2961     if( *p != '-' )
2962         p = MRLSeekPoint( p, &title_start, &chapter_start );
2963     else
2964         title_start = chapter_start = -1;
2965
2966     if( *p == '-' )
2967         p = MRLSeekPoint( p + 1, &title_end, &chapter_end );
2968     else
2969         title_end = chapter_end = -1;
2970
2971     if( *p ) /* syntax error */
2972         return;
2973
2974     *pi_title_start = title_start;
2975     *pi_title_end = title_end;
2976     *pi_chapter_start = chapter_start;
2977     *pi_chapter_end = chapter_end;
2978 }
2979
2980 /*****************************************************************************
2981  * input_AddSubtitles: add a subtitle file and enable it
2982  *****************************************************************************/
2983 static void input_SubtitleAdd( input_thread_t *p_input,
2984                                const char *url, unsigned i_flags )
2985 {
2986     input_source_t *sub = InputSourceNew( p_input );
2987     if( sub == NULL )
2988         return;
2989
2990     vlc_value_t count;
2991
2992     var_Change( p_input, "spu-es", VLC_VAR_CHOICESCOUNT, &count, NULL );
2993
2994     if( InputSourceInit( p_input, sub, url, "subtitle",
2995                          (i_flags & SUB_CANFAIL) ) )
2996     {
2997         free( sub );
2998         return;
2999     }
3000     TAB_APPEND( p_input->p->i_slave, p_input->p->slave, sub );
3001
3002     if( !(i_flags & SUB_FORCED) )
3003         return;
3004
3005     /* Select the ES */
3006     vlc_value_t list;
3007
3008     if( var_Change( p_input, "spu-es", VLC_VAR_GETLIST, &list, NULL ) )
3009         return;
3010     if( count.i_int == 0 )
3011         count.i_int++;
3012     /* if it was first one, there is disable too */
3013
3014     if( count.i_int < list.p_list->i_count )
3015     {
3016         const int i_id = list.p_list->p_values[count.i_int].i_int;
3017
3018         es_out_Control( p_input->p->p_es_out_display, ES_OUT_SET_ES_DEFAULT_BY_ID, i_id );
3019         es_out_Control( p_input->p->p_es_out_display, ES_OUT_SET_ES_BY_ID, i_id );
3020     }
3021     var_FreeList( &list, NULL );
3022 }
3023
3024 static void input_SubtitleFileAdd( input_thread_t *p_input, char *psz_subtitle,
3025                                    unsigned i_flags )
3026 {
3027     /* if we are provided a subtitle.sub file,
3028      * see if we don't have a subtitle.idx and use it instead */
3029     char *psz_path = strdup( psz_subtitle );
3030     if( likely(psz_path != NULL) )
3031     {
3032         char *psz_extension = strrchr( psz_path, '.');
3033         if( psz_extension && strcmp( psz_extension, ".sub" ) == 0 )
3034         {
3035             struct stat st;
3036
3037             strcpy( psz_extension, ".idx" );
3038
3039             if( !vlc_stat( psz_path, &st ) && S_ISREG( st.st_mode ) )
3040             {
3041                 msg_Dbg( p_input, "using %s as subtitle file instead of %s",
3042                          psz_path, psz_subtitle );
3043                 strcpy( psz_subtitle, psz_path ); /* <- FIXME! constify */
3044             }
3045         }
3046         free( psz_path );
3047     }
3048
3049     char *url = vlc_path2uri( psz_subtitle, NULL );
3050     if( url == NULL )
3051         return;
3052
3053     input_SubtitleAdd( p_input, url, i_flags );
3054     free( url );
3055 }
3056
3057 /*****************************************************************************
3058  * Statistics
3059  *****************************************************************************/
3060 void input_UpdateStatistic( input_thread_t *p_input,
3061                             input_statistic_t i_type, int i_delta )
3062 {
3063     assert( p_input->p->i_state != INIT_S );
3064
3065     vlc_mutex_lock( &p_input->p->counters.counters_lock);
3066     switch( i_type )
3067     {
3068 #define I(c) stats_Update( p_input->p->counters.c, i_delta, NULL )
3069     case INPUT_STATISTIC_DECODED_VIDEO:
3070         I(p_decoded_video);
3071         break;
3072     case INPUT_STATISTIC_DECODED_AUDIO:
3073         I(p_decoded_audio);
3074         break;
3075     case INPUT_STATISTIC_DECODED_SUBTITLE:
3076         I(p_decoded_sub);
3077         break;
3078     case INPUT_STATISTIC_SENT_PACKET:
3079         I(p_sout_sent_packets);
3080         break;
3081 #undef I
3082     case INPUT_STATISTIC_SENT_BYTE:
3083     {
3084         uint64_t bytes;
3085
3086         stats_Update( p_input->p->counters.p_sout_sent_bytes, i_delta, &bytes );
3087         stats_Update( p_input->p->counters.p_sout_send_bitrate, bytes, NULL );
3088         break;
3089     }
3090     default:
3091         msg_Err( p_input, "Invalid statistic type %d (internal error)", i_type );
3092         break;
3093     }
3094     vlc_mutex_unlock( &p_input->p->counters.counters_lock);
3095 }
3096
3097 /**/
3098 /* TODO FIXME nearly the same logic that snapshot code */
3099 char *input_CreateFilename( input_thread_t *input, const char *psz_path, const char *psz_prefix, const char *psz_extension )
3100 {
3101     char *psz_file;
3102     DIR *path;
3103
3104     path = vlc_opendir( psz_path );
3105     if( path )
3106     {
3107         closedir( path );
3108
3109         char *psz_tmp = str_format( input, psz_prefix );
3110         if( !psz_tmp )
3111             return NULL;
3112
3113         filename_sanitize( psz_tmp );
3114
3115         if( asprintf( &psz_file, "%s"DIR_SEP"%s%s%s",
3116                       psz_path, psz_tmp,
3117                       psz_extension ? "." : "",
3118                       psz_extension ? psz_extension : "" ) < 0 )
3119             psz_file = NULL;
3120         free( psz_tmp );
3121         return psz_file;
3122     }
3123     else
3124     {
3125         psz_file = str_format( input, psz_path );
3126         path_sanitize( psz_file );
3127         return psz_file;
3128     }
3129 }