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