]> git.sesse.net Git - vlc/blob - src/input/input.c
74d1cf814647aa8b3a1443287306561f8d113caf
[vlc] / src / input / input.c
1 /*****************************************************************************
2  * input.c: input thread
3  *****************************************************************************
4  * Copyright (C) 1998-2004 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 #include <stdlib.h>
29 #include <ctype.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33 #include <vlc/decoder.h>
34 #include <vlc/vout.h>
35
36 #include "input_internal.h"
37
38 #include "stream_output.h"
39 #include "vlc_playlist.h"
40 #include "vlc_interface.h"
41 #include "vlc_interaction.h"
42 #include "vlc_url.h"
43
44 #include "charset.h"
45
46 #ifdef HAVE_SYS_STAT_H
47 #   include <sys/stat.h>
48 #endif
49
50 /*****************************************************************************
51  * Local prototypes
52  *****************************************************************************/
53 static  int Run  ( input_thread_t *p_input );
54 static  int RunAndClean  ( input_thread_t *p_input );
55
56 static input_thread_t * Create  ( vlc_object_t *, input_item_t *, char *,
57                                   vlc_bool_t );
58 static  int             Init    ( input_thread_t *p_input );
59 static void             Error   ( input_thread_t *p_input );
60 static void             End     ( input_thread_t *p_input );
61 static void             MainLoop( input_thread_t *p_input );
62
63 static inline int ControlPopNoLock( input_thread_t *, int *, vlc_value_t * );
64 static void       ControlReduce( input_thread_t * );
65 static vlc_bool_t Control( input_thread_t *, int, vlc_value_t );
66
67 static int  UpdateFromAccess( input_thread_t * );
68 static int  UpdateFromDemux( input_thread_t * );
69 static int  UpdateMeta( input_thread_t * );
70
71 static void UpdateItemLength( input_thread_t *, int64_t i_length );
72
73 static void MRLSections( input_thread_t *, char *, int *, int *, int *, int *);
74
75 static input_source_t *InputSourceNew( input_thread_t *);
76 static int  InputSourceInit( input_thread_t *, input_source_t *,
77                              char *, char *psz_forced_demux );
78 static void InputSourceClean( input_thread_t *, input_source_t * );
79
80 static void SlaveDemux( input_thread_t *p_input );
81 static void SlaveSeek( input_thread_t *p_input );
82
83 static void InputMetaUser( input_thread_t *p_input );
84
85 /*****************************************************************************
86  * This function creates a new input, and returns a pointer
87  * to its description. On error, it returns NULL.
88  *
89  * Variables for _public_ use:
90  * * Get and Set:
91  *  - state
92  *  - rate,rate-slower, rate-faster
93  *  - position, position-offset
94  *  - time, time-offset
95  *  - title,title-next,title-prev
96  *  - chapter,chapter-next, chapter-prev
97  *  - program, audio-es, video-es, spu-es
98  *  - audio-delay, spu-delay
99  *  - bookmark
100  * * Get only:
101  *  - length
102  *  - bookmarks
103  *  - seekable (if you can seek, it doesn't say if 'bar display' has be shown or not, for that check position != 0.0)
104  * * For intf callback upon changes
105  *  - intf-change
106  * TODO explain when Callback is called
107  * TODO complete this list (?)
108  *****************************************************************************/
109 static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
110                                char *psz_header, vlc_bool_t b_quick )
111 {
112     input_thread_t *p_input = NULL;                 /* thread descriptor */
113     vlc_value_t val;
114     int i;
115
116     /* Allocate descriptor */
117     p_input = vlc_object_create( p_parent, VLC_OBJECT_INPUT );
118     if( p_input == NULL )
119     {
120         msg_Err( p_parent, "out of memory" );
121         return NULL;
122     }
123
124     /* One "randomly" selected input thread is responsible for computing
125      * the global stats. Check if there is already someone doing this */
126     if( p_input->p_libvlc->p_playlist->p_stats && !b_quick )
127     {
128         vlc_mutex_lock( &p_input->p_libvlc->p_playlist->p_stats->lock );
129         if( p_input->p_libvlc->p_playlist->p_stats_computer == NULL )
130         {
131             p_input->p_libvlc->p_playlist->p_stats_computer = p_input;
132         }
133         vlc_mutex_unlock( &p_input->p_libvlc->p_playlist->p_stats->lock );
134     }
135
136     p_input->b_preparsing = b_quick;
137     p_input->psz_header = psz_header ? strdup( psz_header ) : NULL;
138
139     /* Init Common fields */
140     p_input->b_eof = VLC_FALSE;
141     p_input->b_can_pace_control = VLC_TRUE;
142     p_input->i_start = 0;
143     p_input->i_time  = 0;
144     p_input->i_stop  = 0;
145     p_input->i_title = 0;
146     p_input->title   = NULL;
147     p_input->i_title_offset = p_input->i_seekpoint_offset = 0;
148     p_input->i_state = INIT_S;
149     p_input->i_rate  = INPUT_RATE_DEFAULT;
150     p_input->i_bookmark = 0;
151     p_input->bookmark = NULL;
152     p_input->p_meta  = NULL;
153     p_input->p_es_out = NULL;
154     p_input->p_sout  = NULL;
155     p_input->b_out_pace_control = VLC_FALSE;
156     p_input->i_pts_delay = 0;
157
158     /* Init Input fields */
159     p_input->input.p_item = p_item;
160     p_input->input.p_access = NULL;
161     p_input->input.p_stream = NULL;
162     p_input->input.p_demux  = NULL;
163     p_input->input.b_title_demux = VLC_FALSE;
164     p_input->input.i_title  = 0;
165     p_input->input.title    = NULL;
166     p_input->input.i_title_offset = p_input->input.i_seekpoint_offset = 0;
167     p_input->input.b_can_pace_control = VLC_TRUE;
168     p_input->input.b_eof = VLC_FALSE;
169     p_input->input.i_cr_average = 0;
170
171     if( !p_input->input.p_item->p_meta )
172         p_input->input.p_item->p_meta = vlc_meta_New();
173
174     if( !p_item->p_stats )
175     {
176         p_item->p_stats = (input_stats_t*)malloc( sizeof( input_stats_t ) );
177         vlc_mutex_init( p_input, &p_item->p_stats->lock );
178         stats_ReinitInputStats( p_item->p_stats );
179     }
180
181     /* No slave */
182     p_input->i_slave = 0;
183     p_input->slave   = NULL;
184
185     /* Init control buffer */
186     vlc_mutex_init( p_input, &p_input->lock_control );
187     p_input->i_control = 0;
188
189     /* Parse input options */
190     vlc_mutex_lock( &p_item->lock );
191     for( i = 0; i < p_item->i_options; i++ )
192     {
193         var_OptionParse( p_input, p_item->ppsz_options[i] );
194     }
195     vlc_mutex_unlock( &p_item->lock );
196
197     /* Create Object Variables for private use only */
198     input_ConfigVarInit( p_input );
199
200     /* Create Objects variables for public Get and Set */
201     input_ControlVarInit( p_input );
202     p_input->input.i_cr_average = var_GetInteger( p_input, "cr-average" );
203
204     if( !p_input->b_preparsing )
205     {
206         var_Get( p_input, "bookmarks", &val );
207         if( val.psz_string )
208         {
209             /* FIXME: have a common cfg parsing routine used by sout and others */
210             char *psz_parser, *psz_start, *psz_end;
211             psz_parser = val.psz_string;
212             while( (psz_start = strchr( psz_parser, '{' ) ) )
213             {
214                  seekpoint_t *p_seekpoint = vlc_seekpoint_New();
215                  char backup;
216                  psz_start++;
217                  psz_end = strchr( psz_start, '}' );
218                  if( !psz_end ) break;
219                  psz_parser = psz_end + 1;
220                  backup = *psz_parser;
221                  *psz_parser = 0;
222                  *psz_end = ',';
223                  while( (psz_end = strchr( psz_start, ',' ) ) )
224                  {
225                      *psz_end = 0;
226                      if( !strncmp( psz_start, "name=", 5 ) )
227                      {
228                          p_seekpoint->psz_name = psz_start + 5;
229                      }
230                      else if( !strncmp( psz_start, "bytes=", 6 ) )
231                      {
232                          p_seekpoint->i_byte_offset = atoll(psz_start + 6);
233                      }
234                      else if( !strncmp( psz_start, "time=", 5 ) )
235                      {
236                          p_seekpoint->i_time_offset = atoll(psz_start + 5) *
237                                                         1000000;
238                      }
239                      psz_start = psz_end + 1;
240                 }
241                 msg_Dbg( p_input, "adding bookmark: %s, bytes="I64Fd", time="I64Fd,
242                                   p_seekpoint->psz_name, p_seekpoint->i_byte_offset,
243                                   p_seekpoint->i_time_offset );
244                 input_Control( p_input, INPUT_ADD_BOOKMARK, p_seekpoint );
245                 vlc_seekpoint_Delete( p_seekpoint );
246                 *psz_parser = backup;
247             }
248             free( val.psz_string );
249         }
250     }
251
252     /* Remove 'Now playing' info as it is probably outdated */
253     input_Control( p_input, INPUT_DEL_INFO, _(VLC_META_INFO_CAT),
254                    VLC_META_NOW_PLAYING );     /* ? Don't translate as it might has been copied ? */
255
256     return p_input;
257 }
258
259 /**
260  * Initialize an input thread and run it. You will need to monitor the
261  * thread to clean up after it is done
262  *
263  * \param p_parent a vlc_object
264  * \param p_item an input item
265  * \return a pointer to the spawned input thread
266  */
267 input_thread_t *__input_CreateThread( vlc_object_t *p_parent,
268                                       input_item_t *p_item )
269 {
270     return __input_CreateThread2( p_parent, p_item, NULL );
271 }
272
273 /* Gruik ! */
274 input_thread_t *__input_CreateThread2( vlc_object_t *p_parent,
275                                        input_item_t *p_item,
276                                        char *psz_header )
277 {
278     input_thread_t *p_input = NULL;      /* thread descriptor */
279
280     p_input = Create( p_parent, p_item, psz_header, VLC_FALSE );
281     if( !p_input )
282         return NULL;
283
284     /* Now we can attach our new input */
285     vlc_object_attach( p_input, p_parent );
286
287     /* Create thread and wait for its readiness. */
288     if( vlc_thread_create( p_input, "input", Run,
289                             VLC_THREAD_PRIORITY_INPUT, VLC_TRUE ) )
290     {
291         input_ChangeState( p_input, ERROR_S );
292         msg_Err( p_input, "cannot create input thread" );
293         vlc_object_detach( p_input );
294         vlc_object_destroy( p_input );
295         return NULL;
296     }
297
298     return p_input;
299 }
300
301 /**
302  * Initialize an input thread and run it. This thread will clean after himself,
303  * you can forget about it. It can work either in blocking or non-blocking mode
304  *
305  * \param p_parent a vlc_object
306  * \param p_item an input item
307  * \param b_block should we block until read is finished ?
308  * \return the input object id if non blocking, an error code else
309  */
310 int __input_Read( vlc_object_t *p_parent, input_item_t *p_item,
311                    vlc_bool_t b_block )
312 {
313     input_thread_t *p_input = NULL;         /* thread descriptor */
314
315     p_input = Create( p_parent, p_item, NULL, VLC_FALSE );
316     if( !p_input )
317         return VLC_EGENERIC;
318
319     /* Now we can attach our new input */
320     vlc_object_attach( p_input, p_parent );
321
322     if( b_block )
323     {
324         RunAndClean( p_input );
325         return VLC_SUCCESS;
326     }
327     else
328     {
329         if( vlc_thread_create( p_input, "input", RunAndClean,
330                                VLC_THREAD_PRIORITY_INPUT, VLC_TRUE ) )
331         {
332             input_ChangeState( p_input, ERROR_S );
333             msg_Err( p_input, "cannot create input thread" );
334             vlc_object_detach( p_input );
335             vlc_object_destroy( p_input );
336             return VLC_EGENERIC;
337         }
338     }
339     return p_input->i_object_id;
340 }
341
342 /**
343  * Initialize an input and initialize it to preparse the item
344  * This function is blocking. It will only accept to parse files
345  *
346  * \param p_parent a vlc_object_t
347  * \param p_item an input item
348  * \return VLC_SUCCESS or an error
349  */
350 int __input_Preparse( vlc_object_t *p_parent, input_item_t *p_item )
351 {
352     input_thread_t *p_input = NULL;           /* thread descriptor */
353
354     /* Allocate descriptor */
355     p_input = Create( p_parent, p_item, NULL, VLC_TRUE );
356     if( !p_input )
357         return VLC_EGENERIC;
358
359     p_input->i_flags |= OBJECT_FLAGS_QUIET;
360     p_input->i_flags |= OBJECT_FLAGS_NOINTERACT;
361
362     /* Now we can attach our new input */
363     vlc_object_attach( p_input, p_parent );
364
365     Init( p_input );
366
367     /* Clean up master */
368     InputSourceClean( p_input, &p_input->input );
369
370     /* Unload all modules */
371     if( p_input->p_es_out ) input_EsOutDelete( p_input->p_es_out );
372
373     vlc_object_detach( p_input );
374     vlc_object_destroy( p_input );
375
376     return VLC_SUCCESS;
377 }
378
379 /**
380  * Request a running input thread to stop and die
381  *
382  * \param the input thread to stop
383  */
384 void input_StopThread( input_thread_t *p_input )
385 {
386     vlc_list_t *p_list;
387     int i;
388
389     /* Set die for input */
390     p_input->b_die = VLC_TRUE;
391
392     /* We cannot touch p_input fields directly (we come from another thread),
393      * so use the vlc_object_find way, it's perfectly safe */
394
395     /* Set die for all access */
396     p_list = vlc_list_find( p_input, VLC_OBJECT_ACCESS, FIND_CHILD );
397     for( i = 0; i < p_list->i_count; i++ )
398     {
399         p_list->p_values[i].p_object->b_die = VLC_TRUE;
400     }
401     vlc_list_release( p_list );
402
403     /* Set die for all stream */
404     p_list = vlc_list_find( p_input, VLC_OBJECT_STREAM, FIND_CHILD );
405     for( i = 0; i < p_list->i_count; i++ )
406     {
407         p_list->p_values[i].p_object->b_die = VLC_TRUE;
408     }
409     vlc_list_release( p_list );
410
411     /* Set die for all demux */
412     p_list = vlc_list_find( p_input, VLC_OBJECT_DEMUX, FIND_CHILD );
413     for( i = 0; i < p_list->i_count; i++ )
414     {
415         p_list->p_values[i].p_object->b_die = VLC_TRUE;
416     }
417     vlc_list_release( p_list );
418
419     input_ControlPush( p_input, INPUT_CONTROL_SET_DIE, NULL );
420 }
421
422 /**
423  * Clean up a dead input thread
424  * This function does not return until the thread is effectively cancelled.
425  *
426  * \param the input thread to kill
427  */
428 void input_DestroyThread( input_thread_t *p_input )
429 {
430     /* Join the thread */
431     vlc_thread_join( p_input );
432
433     /* Delete input lock (only after thread joined) */
434     vlc_mutex_destroy( &p_input->lock_control );
435
436     /* TODO: maybe input_DestroyThread should also delete p_input instead
437      * of the playlist but I'm not sure if it's possible */
438 }
439
440 /*****************************************************************************
441  * Run: main thread loop
442  * This is the "normal" thread that spawns the input processing chain,
443  * reads the stream, cleans up and waits
444  *****************************************************************************/
445 static int Run( input_thread_t *p_input )
446 {
447     /* Signal that the thread is launched */
448     vlc_thread_ready( p_input );
449
450     if( Init( p_input ) )
451     {
452         /* If we failed, wait before we are killed, and exit */
453         p_input->b_error = VLC_TRUE;
454         playlist_Signal( pl_Get( p_input ) );
455
456         Error( p_input );
457
458         /* Tell we're dead */
459         p_input->b_dead = VLC_TRUE;
460
461         return 0;
462     }
463
464     MainLoop( p_input );
465
466     if( !p_input->b_eof && !p_input->b_error && p_input->input.b_eof )
467     {
468         /* We have finish to demux data but not to play them */
469         while( !p_input->b_die )
470         {
471             if( input_EsOutDecodersEmpty( p_input->p_es_out ) )
472                 break;
473
474             msg_Dbg( p_input, "waiting decoder fifos to empty" );
475
476             msleep( INPUT_IDLE_SLEEP );
477         }
478
479         /* We have finished */
480         p_input->b_eof = VLC_TRUE;
481         playlist_Signal( pl_Get( p_input ) );
482     }
483
484     /* Wait until we are asked to die */
485     if( !p_input->b_die )
486     {
487         Error( p_input );
488     }
489
490     /* Clean up */
491     End( p_input );
492
493     return 0;
494 }
495
496 /*****************************************************************************
497  * RunAndClean: main thread loop
498  * This is the "just forget me" thread that spawns the input processing chain,
499  * reads the stream, cleans up and releases memory
500  *****************************************************************************/
501 static int RunAndClean( input_thread_t *p_input )
502 {
503     /* Signal that the thread is launched */
504     vlc_thread_ready( p_input );
505
506     if( Init( p_input ) )
507     {
508         /* If we failed, just exit */
509         return 0;
510     }
511
512     MainLoop( p_input );
513
514     if( !p_input->b_eof && !p_input->b_error && p_input->input.b_eof )
515     {
516         /* We have finished demuxing data but not playing it */
517         while( !p_input->b_die )
518         {
519             if( input_EsOutDecodersEmpty( p_input->p_es_out ) )
520                 break;
521
522             msg_Dbg( p_input, "waiting decoder fifos to empty" );
523
524             msleep( INPUT_IDLE_SLEEP );
525         }
526
527         /* We have finished */
528         p_input->b_eof = VLC_TRUE;
529     }
530
531     /* Clean up */
532     End( p_input );
533
534     /* Release memory */
535     vlc_object_detach( p_input );
536     vlc_object_destroy( p_input );
537
538     return 0;
539 }
540
541 /*****************************************************************************
542  * Main loop: Fill buffers from access, and demux
543  *****************************************************************************/
544 static void MainLoop( input_thread_t *p_input )
545 {
546     int64_t i_intf_update = 0;
547     int i_updates = 0;
548     while( !p_input->b_die && !p_input->b_error && !p_input->input.b_eof )
549     {
550         vlc_bool_t b_force_update = VLC_FALSE;
551         int i_ret;
552         int i_type;
553         vlc_value_t val;
554
555         /* Do the read */
556         if( p_input->i_state != PAUSE_S  )
557         {
558             if( p_input->i_stop <= 0 || p_input->i_time < p_input->i_stop )
559                 i_ret=p_input->input.p_demux->pf_demux(p_input->input.p_demux);
560             else
561                 i_ret = 0;  /* EOF */
562
563             if( i_ret > 0 )
564             {
565                 /* TODO */
566                 if( p_input->input.b_title_demux &&
567                     p_input->input.p_demux->info.i_update )
568                 {
569                     i_ret = UpdateFromDemux( p_input );
570                     b_force_update = VLC_TRUE;
571                 }
572                 else if( !p_input->input.b_title_demux &&
573                           p_input->input.p_access &&
574                           p_input->input.p_access->info.i_update )
575                 {
576                     i_ret = UpdateFromAccess( p_input );
577                     b_force_update = VLC_TRUE;
578                 }
579             }
580
581             if( i_ret == 0 )    /* EOF */
582             {
583                 vlc_value_t repeat;
584
585                 var_Get( p_input, "input-repeat", &repeat );
586                 if( repeat.i_int == 0 )
587                 {
588                     /* End of file - we do not set b_die because only the
589                      * playlist is allowed to do so. */
590                     input_ChangeState( p_input, END_S );
591                     msg_Dbg( p_input, "EOF reached" );
592                     p_input->input.b_eof = VLC_TRUE;
593                 }
594                 else
595                 {
596                     msg_Dbg( p_input, "repeating the same input (%d)",
597                              repeat.i_int );
598                     if( repeat.i_int > 0 )
599                     {
600                         repeat.i_int--;
601                         var_Set( p_input, "input-repeat", repeat );
602                     }
603
604                     /* Seek to start title/seekpoint */
605                     val.i_int = p_input->input.i_title_start -
606                         p_input->input.i_title_offset;
607                     if( val.i_int < 0 || val.i_int >= p_input->input.i_title )
608                         val.i_int = 0;
609                     input_ControlPush( p_input,
610                                        INPUT_CONTROL_SET_TITLE, &val );
611
612                     val.i_int = p_input->input.i_seekpoint_start -
613                         p_input->input.i_seekpoint_offset;
614                     if( val.i_int > 0 /* TODO: check upper boundary */ )
615                         input_ControlPush( p_input,
616                                            INPUT_CONTROL_SET_SEEKPOINT, &val );
617
618                     /* Seek to start position */
619                     if( p_input->i_start > 0 )
620                     {
621                         val.i_time = p_input->i_start;
622                         input_ControlPush( p_input, INPUT_CONTROL_SET_TIME,
623                                            &val );
624                     }
625                     else
626                     {
627                         val.f_float = 0.0;
628                         input_ControlPush( p_input, INPUT_CONTROL_SET_POSITION,
629                                            &val );
630                     }
631                 }
632             }
633             else if( i_ret < 0 )
634             {
635                 p_input->b_error = VLC_TRUE;
636             }
637
638             if( i_ret > 0 && p_input->i_slave > 0 )
639             {
640                 SlaveDemux( p_input );
641             }
642         }
643         else
644         {
645             /* Small wait */
646             msleep( 10*1000 );
647         }
648
649         /* Handle control */
650         vlc_mutex_lock( &p_input->lock_control );
651         ControlReduce( p_input );
652         while( !ControlPopNoLock( p_input, &i_type, &val ) )
653         {
654             msg_Dbg( p_input, "control type=%d", i_type );
655             if( Control( p_input, i_type, val ) )
656                 b_force_update = VLC_TRUE;
657         }
658         vlc_mutex_unlock( &p_input->lock_control );
659
660         if( b_force_update || i_intf_update < mdate() )
661         {
662             vlc_value_t val;
663             double f_pos;
664             int64_t i_time, i_length;
665             /* update input status variables */
666             if( !demux2_Control( p_input->input.p_demux,
667                                  DEMUX_GET_POSITION, &f_pos ) )
668             {
669                 val.f_float = (float)f_pos;
670                 var_Change( p_input, "position", VLC_VAR_SETVALUE, &val, NULL );
671             }
672             if( !demux2_Control( p_input->input.p_demux,
673                                  DEMUX_GET_TIME, &i_time ) )
674             {
675                 p_input->i_time = i_time;
676                 val.i_time = i_time;
677                 var_Change( p_input, "time", VLC_VAR_SETVALUE, &val, NULL );
678             }
679             if( !demux2_Control( p_input->input.p_demux,
680                                  DEMUX_GET_LENGTH, &i_length ) )
681             {
682                 vlc_value_t old_val;
683                 var_Get( p_input, "length", &old_val );
684                 val.i_time = i_length;
685                 var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL );
686
687                 if( old_val.i_time != val.i_time )
688                 {
689                     UpdateItemLength( p_input, i_length );
690                 }
691             }
692
693             var_SetBool( p_input, "intf-change", VLC_TRUE );
694             i_intf_update = mdate() + I64C(150000);
695         }
696         /* 150ms * 8 = ~ 1 second */
697         if( ++i_updates % 8 == 0 )
698         {
699             stats_ComputeInputStats( p_input, p_input->input.p_item->p_stats );
700             /* Are we the thread responsible for computing global stats ? */
701             if( p_input->p_libvlc->p_playlist->p_stats_computer == p_input )
702             {
703                 stats_ComputeGlobalStats( p_input->p_libvlc->p_playlist,
704                                      p_input->p_libvlc->p_playlist->p_stats );
705             }
706         }
707     }
708 }
709
710 static int Init( input_thread_t * p_input )
711 {
712     char *psz;
713     char *psz_subtitle;
714     vlc_value_t val;
715     double f_fps;
716     vlc_meta_t *p_meta;
717     int i_es_out_mode;
718     int i, i_delay;
719
720     /* Initialize optional stream output. (before access/demuxer)
721      * XXX: we add a special case if the uri starts by vlc.
722      * else 'vlc in.file --sout "" vlc:quit'  cannot work (the output will
723      * be destroyed in case of a file).
724      * (this will break playing of file starting by 'vlc:' but I don't
725      * want to add more logic, just force file by file:// or code it ;)
726      */
727     memset( &p_input->counters, 0, sizeof( p_input->counters ) );
728     vlc_mutex_init( p_input, &p_input->counters.counters_lock );
729
730     if( !p_input->b_preparsing )
731     {
732         /* Prepare statistics */
733 #define INIT_COUNTER( p, type, compute ) p_input->counters.p_##p = \
734      stats_CounterCreate( p_input, VLC_VAR_##type, STATS_##compute);
735         if( p_input->p_libvlc->b_stats )
736         {
737             INIT_COUNTER( read_bytes, INTEGER, COUNTER );
738             INIT_COUNTER( read_packets, INTEGER, COUNTER );
739             INIT_COUNTER( demux_read, INTEGER, COUNTER );
740             INIT_COUNTER( input_bitrate, FLOAT, DERIVATIVE );
741             INIT_COUNTER( demux_bitrate, FLOAT, DERIVATIVE );
742             INIT_COUNTER( played_abuffers, INTEGER, COUNTER );
743             INIT_COUNTER( lost_abuffers, INTEGER, COUNTER );
744             INIT_COUNTER( displayed_pictures, INTEGER, COUNTER );
745             INIT_COUNTER( lost_pictures, INTEGER, COUNTER );
746             INIT_COUNTER( decoded_audio, INTEGER, COUNTER );
747             INIT_COUNTER( decoded_video, INTEGER, COUNTER );
748             INIT_COUNTER( decoded_sub, INTEGER, COUNTER );
749             p_input->counters.p_sout_send_bitrate = NULL;
750             p_input->counters.p_sout_sent_packets = NULL;
751             p_input->counters.p_sout_sent_bytes = NULL;
752             if( p_input->counters.p_demux_bitrate )
753                 p_input->counters.p_demux_bitrate->update_interval = 1000000;
754             if( p_input->counters.p_input_bitrate )
755                 p_input->counters.p_input_bitrate->update_interval = 1000000;
756         }
757
758         /* handle sout */
759         psz = var_GetString( p_input, "sout" );
760         if( *psz && strncasecmp( p_input->input.p_item->psz_uri, "vlc:", 4 ) )
761         {
762             p_input->p_sout = sout_NewInstance( p_input, psz );
763             if( p_input->p_sout == NULL )
764             {
765                 input_ChangeState( p_input, ERROR_S );
766                 msg_Err( p_input, "cannot start stream output instance, " \
767                                   "aborting" );
768                 free( psz );
769                 return VLC_EGENERIC;
770             }
771             if( p_input->p_libvlc->b_stats )
772             {
773                 INIT_COUNTER( sout_sent_packets, INTEGER, COUNTER );
774                 INIT_COUNTER (sout_sent_bytes, INTEGER, COUNTER );
775                 INIT_COUNTER( sout_send_bitrate, FLOAT, DERIVATIVE );
776                 if( p_input->counters.p_sout_send_bitrate )
777                      p_input->counters.p_sout_send_bitrate->update_interval =
778                              1000000;
779             }
780         }
781         free( psz );
782     }
783
784     /* Create es out */
785     p_input->p_es_out = input_EsOutNew( p_input );
786     es_out_Control( p_input->p_es_out, ES_OUT_SET_ACTIVE, VLC_FALSE );
787     es_out_Control( p_input->p_es_out, ES_OUT_SET_MODE, ES_OUT_MODE_NONE );
788
789     var_Create( p_input, "bit-rate", VLC_VAR_INTEGER );
790     var_Create( p_input, "sample-rate", VLC_VAR_INTEGER );
791
792     if( InputSourceInit( p_input, &p_input->input,
793                          p_input->input.p_item->psz_uri, NULL ) )
794     {
795         goto error;
796     }
797
798     /* Create global title (from master) */
799     if( !p_input->b_preparsing )
800     {
801         p_input->i_title = p_input->input.i_title;
802         p_input->title   = p_input->input.title;
803         p_input->i_title_offset = p_input->input.i_title_offset;
804         p_input->i_seekpoint_offset = p_input->input.i_seekpoint_offset;
805         if( p_input->i_title > 0 )
806         {
807             /* Setup variables */
808             input_ControlVarNavigation( p_input );
809             input_ControlVarTitle( p_input, 0 );
810         }
811
812         /* Global flag */
813         p_input->b_can_pace_control = p_input->input.b_can_pace_control;
814         p_input->b_can_pause        = p_input->input.b_can_pause;
815
816         /* Fix pts delay */
817         if( p_input->i_pts_delay < 0 )
818             p_input->i_pts_delay = 0;
819
820         /* If the desynchronisation requested by the user is < 0, we need to
821          * cache more data. */
822         var_Get( p_input, "audio-desync", &val );
823         if( val.i_int < 0 ) p_input->i_pts_delay -= (val.i_int * 1000);
824
825         /* Update cr_average depending on the caching */
826         p_input->input.i_cr_average *= (10 * p_input->i_pts_delay / 200000);
827         p_input->input.i_cr_average /= 10;
828         if( p_input->input.i_cr_average < 10 ) p_input->input.i_cr_average = 10;
829     }
830
831     /* Load master infos */
832     /* Init length */
833     if( !demux2_Control( p_input->input.p_demux, DEMUX_GET_LENGTH,
834                          &val.i_time ) && val.i_time > 0 )
835     {
836         var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL );
837         UpdateItemLength( p_input, val.i_time );
838         p_input->input.p_item->i_duration = val.i_time;
839     }
840
841     /* Start title/chapter */
842     if( !p_input->b_preparsing )
843     {
844         val.i_int = p_input->input.i_title_start -
845                     p_input->input.i_title_offset;
846         if( val.i_int > 0 && val.i_int < p_input->input.i_title )
847             input_ControlPush( p_input, INPUT_CONTROL_SET_TITLE, &val );
848         val.i_int = p_input->input.i_seekpoint_start -
849                     p_input->input.i_seekpoint_offset;
850         if( val.i_int > 0 /* TODO: check upper boundary */ )
851             input_ControlPush( p_input, INPUT_CONTROL_SET_SEEKPOINT, &val );
852
853         /* Start time*/
854         /* Set start time */
855         p_input->i_start = (int64_t)var_GetInteger( p_input, "start-time" ) *
856                            I64C(1000000);
857         p_input->i_stop  = (int64_t)var_GetInteger( p_input, "stop-time" ) *
858                            I64C(1000000);
859
860         if( p_input->i_start > 0 )
861         {
862             if( p_input->i_start >= val.i_time )
863             {
864                 msg_Warn( p_input, "invalid start-time ignored" );
865             }
866             else
867             {
868                 vlc_value_t s;
869
870                 msg_Dbg( p_input, "starting at time: %ds",
871                                   (int)( p_input->i_start / I64C(1000000) ) );
872
873                 s.i_time = p_input->i_start;
874                 input_ControlPush( p_input, INPUT_CONTROL_SET_TIME, &s );
875             }
876         }
877         if( p_input->i_stop > 0 && p_input->i_stop <= p_input->i_start )
878         {
879             msg_Warn( p_input, "invalid stop-time ignored" );
880             p_input->i_stop = 0;
881         }
882
883         /* Load subtitles */
884         /* Get fps and set it if not already set */
885         if( !demux2_Control( p_input->input.p_demux, DEMUX_GET_FPS, &f_fps ) &&
886             f_fps > 1.0 )
887         {
888             float f_requested_fps;
889
890             var_Create( p_input, "sub-original-fps", VLC_VAR_FLOAT );
891             var_SetFloat( p_input, "sub-original-fps", f_fps );
892
893             f_requested_fps = var_CreateGetFloat( p_input, "sub-fps" );
894             if( f_requested_fps != f_fps )
895             {
896                 var_Create( p_input, "sub-fps", VLC_VAR_FLOAT|
897                                                 VLC_VAR_DOINHERIT );
898                 var_SetFloat( p_input, "sub-fps", f_requested_fps );
899             }
900         }
901
902         i_delay = var_CreateGetInteger( p_input, "sub-delay" );
903         if( i_delay != 0 )
904         {
905             var_SetTime( p_input, "spu-delay", (mtime_t)i_delay * 100000 );
906         }
907
908         /* Look for and add subtitle files */
909         psz_subtitle = var_GetString( p_input, "sub-file" );
910         if( *psz_subtitle )
911         {
912             msg_Dbg( p_input, "forced subtitle: %s", psz_subtitle );
913             input_AddSubtitles( p_input, psz_subtitle, VLC_FALSE );
914         }
915
916         var_Get( p_input, "sub-autodetect-file", &val );
917         if( val.b_bool )
918         {
919             char *psz_autopath = var_GetString( p_input, "sub-autodetect-path" );
920             char **subs = subtitles_Detect( p_input, psz_autopath,
921                                             p_input->input.p_item->psz_uri );
922             input_source_t *sub;
923             i = 0;
924
925             /* Try to autoselect the first autodetected subtitles file
926              * if no subtitles file was specified */
927             if( *psz_subtitle == 0 && subs && subs[0] )
928             {
929                 input_AddSubtitles( p_input, subs[0], VLC_FALSE );
930                 free( subs[0] );
931                 i = 1;
932             }
933
934             /* Then, just add the following subtitles files */
935             for( ; subs && subs[i]; i++ )
936             {
937                 if( strcmp( psz_subtitle, subs[i] ) )
938                 {
939                     sub = InputSourceNew( p_input );
940                     if( !InputSourceInit( p_input, sub, subs[i], "subtitle" ) )
941                     {
942                         TAB_APPEND( p_input->i_slave, p_input->slave, sub );
943                     }
944                     else free( sub );
945                 }
946                 free( subs[i] );
947             }
948             if( subs ) free( subs );
949             if( psz_autopath ) free( psz_autopath );
950         }
951         free( psz_subtitle );
952
953         /* Look for slave */
954         psz = var_GetString( p_input, "input-slave" );
955         if( *psz )
956         {
957             char *psz_delim;
958             input_source_t *slave;
959             while( psz && *psz )
960             {
961                 while( *psz == ' ' || *psz == '#' )
962                 {
963                     psz++;
964                 }
965                 if( ( psz_delim = strchr( psz, '#' ) ) )
966                 {
967                     *psz_delim++ = '\0';
968                 }
969                 if( *psz == 0 )
970                 {
971                     break;
972                 }
973
974                 msg_Dbg( p_input, "adding slave input '%s'", psz );
975                 slave = InputSourceNew( p_input );
976                 if( !InputSourceInit( p_input, slave, psz, NULL ) )
977                 {
978                     TAB_APPEND( p_input->i_slave, p_input->slave, slave );
979                 }
980                 else free( slave );
981                 psz = psz_delim;
982             }
983         }
984         if( psz ) free( psz );
985     }
986     else
987     {
988         p_input->i_start = 0;
989         p_input->i_start = 0;
990     }
991
992     /* Set up es_out */
993     if( !p_input->b_preparsing )
994     {
995         es_out_Control( p_input->p_es_out, ES_OUT_SET_ACTIVE, VLC_TRUE );
996         i_es_out_mode = ES_OUT_MODE_AUTO;
997         val.p_list = NULL;
998         if( p_input->p_sout )
999         {
1000             var_Get( p_input, "sout-all", &val );
1001             if ( val.b_bool )
1002             {
1003                 i_es_out_mode = ES_OUT_MODE_ALL;
1004                 val.p_list = NULL;
1005             }
1006             else
1007             {
1008                 var_Get( p_input, "programs", &val );
1009                 if ( val.p_list && val.p_list->i_count )
1010                 {
1011                     i_es_out_mode = ES_OUT_MODE_PARTIAL;
1012                     /* Note : we should remove the "program" callback. */
1013                 }
1014                 else
1015                     var_Change( p_input, "programs", VLC_VAR_FREELIST, &val,
1016                                 NULL );
1017             }
1018         }
1019         es_out_Control( p_input->p_es_out, ES_OUT_SET_MODE, i_es_out_mode );
1020
1021         /* Inform the demuxer about waited group (needed only for DVB) */
1022         if( i_es_out_mode == ES_OUT_MODE_ALL )
1023         {
1024             demux2_Control( p_input->input.p_demux, DEMUX_SET_GROUP, -1, NULL );
1025         }
1026         else if( i_es_out_mode == ES_OUT_MODE_PARTIAL )
1027         {
1028             demux2_Control( p_input->input.p_demux, DEMUX_SET_GROUP, -1,
1029                             val.p_list );
1030         }
1031         else
1032         {
1033             demux2_Control( p_input->input.p_demux, DEMUX_SET_GROUP,
1034                            (int) var_GetInteger( p_input, "program" ), NULL );
1035         }
1036
1037         if( p_input->p_sout )
1038         {
1039             if( p_input->p_sout->i_out_pace_nocontrol > 0 )
1040             {
1041                 p_input->b_out_pace_control = VLC_FALSE;
1042             }
1043             else
1044             {
1045                 p_input->b_out_pace_control = VLC_TRUE;
1046             }
1047
1048             if( p_input->b_can_pace_control && p_input->b_out_pace_control )
1049             {
1050                 /* We don't want a high input priority here or we'll
1051                  * end-up sucking up all the CPU time */
1052                 vlc_thread_set_priority( p_input, VLC_THREAD_PRIORITY_LOW );
1053             }
1054
1055             msg_Dbg( p_input, "starting in %s mode",
1056                      p_input->b_out_pace_control ? "async" : "sync" );
1057         }
1058     }
1059
1060     p_meta = p_input->input.p_item->p_meta;
1061     /* Get meta data from users */
1062     InputMetaUser( p_input );
1063     /* Get meta data from master input */
1064     demux2_Control( p_input->input.p_demux, DEMUX_GET_META, p_meta );
1065
1066     /* Access_file does not give any meta, and there are no slave */
1067     if( !p_input->b_preparsing )
1068     {
1069         if( p_input->input.p_access )
1070             access2_Control( p_input->input.p_access, ACCESS_GET_META,
1071                              p_meta );
1072
1073         /* Get meta data from slave input */
1074         for( i = 0; i < p_input->i_slave; i++ )
1075         {
1076             demux2_Control( p_input->slave[i]->p_demux,
1077                             DEMUX_GET_META, p_meta );
1078             if( p_input->slave[i]->p_access )
1079             {
1080                 access2_Control( p_input->slave[i]->p_access,
1081                                  ACCESS_GET_META, p_meta );
1082             }
1083         }
1084     }
1085
1086     UpdateMeta( p_input );
1087
1088     if( !p_input->b_preparsing )
1089     {
1090         msg_Dbg( p_input, "`%s' successfully opened",
1091                  p_input->input.p_item->psz_uri );
1092
1093     }
1094
1095     /* initialization is complete */
1096     input_ChangeState( p_input, PLAYING_S );
1097
1098     return VLC_SUCCESS;
1099
1100 error:
1101     input_ChangeState( p_input, ERROR_S );
1102
1103     if( p_input->p_es_out )
1104         input_EsOutDelete( p_input->p_es_out );
1105
1106     if( p_input->p_sout )
1107         sout_DeleteInstance( p_input->p_sout );
1108
1109     /* Mark them deleted */
1110     p_input->input.p_demux = NULL;
1111     p_input->input.p_stream = NULL;
1112     p_input->input.p_access = NULL;
1113     p_input->p_es_out = NULL;
1114     p_input->p_sout = NULL;
1115
1116     return VLC_EGENERIC;
1117 }
1118
1119 /*****************************************************************************
1120  * Error: RunThread() error loop
1121  *****************************************************************************
1122  * This function is called when an error occurred during thread main's loop.
1123  *****************************************************************************/
1124 static void Error( input_thread_t *p_input )
1125 {
1126     while( !p_input->b_die )
1127     {
1128         /* Sleep a while */
1129         input_ChangeState( p_input, ERROR_S );
1130         msleep( INPUT_IDLE_SLEEP );
1131     }
1132 }
1133
1134 /*****************************************************************************
1135  * End: end the input thread
1136  *****************************************************************************/
1137 static void End( input_thread_t * p_input )
1138 {
1139     int i;
1140
1141     msg_Dbg( p_input, "closing input" );
1142
1143     /* We are at the end */
1144     input_ChangeState( p_input, END_S );
1145
1146     /* Clean control variables */
1147     input_ControlVarClean( p_input );
1148
1149     /* Clean up master */
1150     InputSourceClean( p_input, &p_input->input );
1151
1152     /* Delete slave */
1153     for( i = 0; i < p_input->i_slave; i++ )
1154     {
1155         InputSourceClean( p_input, p_input->slave[i] );
1156         free( p_input->slave[i] );
1157     }
1158     if( p_input->slave ) free( p_input->slave );
1159
1160     /* Unload all modules */
1161     if( p_input->p_es_out )
1162         input_EsOutDelete( p_input->p_es_out );
1163
1164 #define CL_CO( c ) stats_CounterClean( p_input->counters.p_##c ); p_input->counters.p_##c = NULL;
1165     if( p_input->p_libvlc->b_stats )
1166     {
1167         /* make sure we are up to date */
1168         stats_ComputeInputStats( p_input, p_input->input.p_item->p_stats );
1169         if( p_input->p_libvlc->p_playlist->p_stats_computer == p_input )
1170         {
1171             stats_ComputeGlobalStats( p_input->p_libvlc->p_playlist,
1172                                       p_input->p_libvlc->p_playlist->p_stats );
1173             p_input->p_libvlc->p_playlist->p_stats_computer = NULL;
1174         }
1175         CL_CO( read_bytes );
1176         CL_CO( read_packets );
1177         CL_CO( demux_read );
1178         CL_CO( input_bitrate );
1179         CL_CO( demux_bitrate );
1180         CL_CO( played_abuffers );
1181         CL_CO( lost_abuffers );
1182         CL_CO( displayed_pictures );
1183         CL_CO( lost_pictures );
1184         CL_CO( decoded_audio) ;
1185         CL_CO( decoded_video );
1186         CL_CO( decoded_sub) ;
1187     }
1188
1189     /* Close optional stream output instance */
1190     if( p_input->p_sout )
1191     {
1192         vlc_value_t keep;
1193
1194         CL_CO( sout_sent_packets );
1195         CL_CO( sout_sent_bytes );
1196         CL_CO( sout_send_bitrate );
1197
1198         if( var_Get( p_input, "sout-keep", &keep ) >= 0 && keep.b_bool )
1199         {
1200             /* attach sout to the playlist */
1201             msg_Dbg( p_input, "keeping sout" );
1202             vlc_object_detach( p_input->p_sout );
1203             vlc_object_attach( p_input->p_sout, p_input->p_libvlc->p_playlist );
1204         }
1205         else
1206         {
1207             msg_Dbg( p_input, "destroying sout" );
1208             sout_DeleteInstance( p_input->p_sout );
1209         }
1210     }
1211 #undef CL_CO
1212
1213     vlc_mutex_destroy( &p_input->counters.counters_lock );
1214
1215     /* Tell we're dead */
1216     p_input->b_dead = VLC_TRUE;
1217 }
1218
1219 /*****************************************************************************
1220  * Control
1221  *****************************************************************************/
1222 static inline int ControlPopNoLock( input_thread_t *p_input,
1223                                     int *pi_type, vlc_value_t *p_val )
1224 {
1225     if( p_input->i_control <= 0 )
1226     {
1227         return VLC_EGENERIC;
1228     }
1229
1230     *pi_type = p_input->control[0].i_type;
1231     *p_val   = p_input->control[0].val;
1232
1233     p_input->i_control--;
1234     if( p_input->i_control > 0 )
1235     {
1236         int i;
1237
1238         for( i = 0; i < p_input->i_control; i++ )
1239         {
1240             p_input->control[i].i_type = p_input->control[i+1].i_type;
1241             p_input->control[i].val    = p_input->control[i+1].val;
1242         }
1243     }
1244
1245     return VLC_SUCCESS;
1246 }
1247
1248 static void ControlReduce( input_thread_t *p_input )
1249 {
1250     int i;
1251
1252     if( !p_input )
1253         return;
1254
1255     for( i = 1; i < p_input->i_control; i++ )
1256     {
1257         const int i_lt = p_input->control[i-1].i_type;
1258         const int i_ct = p_input->control[i].i_type;
1259
1260         /* XXX We can't merge INPUT_CONTROL_SET_ES */
1261 /*        msg_Dbg( p_input, "[%d/%d] l=%d c=%d", i, p_input->i_control,
1262                  i_lt, i_ct );
1263 */
1264         if( i_lt == i_ct &&
1265             ( i_ct == INPUT_CONTROL_SET_STATE ||
1266               i_ct == INPUT_CONTROL_SET_RATE ||
1267               i_ct == INPUT_CONTROL_SET_POSITION ||
1268               i_ct == INPUT_CONTROL_SET_TIME ||
1269               i_ct == INPUT_CONTROL_SET_PROGRAM ||
1270               i_ct == INPUT_CONTROL_SET_TITLE ||
1271               i_ct == INPUT_CONTROL_SET_SEEKPOINT ||
1272               i_ct == INPUT_CONTROL_SET_BOOKMARK ) )
1273         {
1274             int j;
1275 //            msg_Dbg( p_input, "merged at %d", i );
1276             /* Remove the i-1 */
1277             for( j = i; j <  p_input->i_control; j++ )
1278                 p_input->control[j-1] = p_input->control[j];
1279             p_input->i_control--;
1280         }
1281         else
1282         {
1283             /* TODO but that's not that important
1284                 - merge SET_X with SET_X_CMD
1285                 - remove SET_SEEKPOINT/SET_POSITION/SET_TIME before a SET_TITLE
1286                 - remove SET_SEEKPOINT/SET_POSITION/SET_TIME before another among them
1287                 - ?
1288                 */
1289         }
1290     }
1291 }
1292
1293 static vlc_bool_t Control( input_thread_t *p_input, int i_type,
1294                            vlc_value_t val )
1295 {
1296     vlc_bool_t b_force_update = VLC_FALSE;
1297
1298     if( !p_input ) return b_force_update;
1299
1300     switch( i_type )
1301     {
1302         case INPUT_CONTROL_SET_DIE:
1303             msg_Dbg( p_input, "control: stopping input" );
1304             /* Mark all submodules to die */
1305             if( p_input->input.p_access )
1306                 p_input->input.p_access->b_die = VLC_TRUE;
1307             if( p_input->input.p_stream )
1308                 p_input->input.p_stream->b_die = VLC_TRUE;
1309             p_input->input.p_demux->b_die = VLC_TRUE;
1310
1311             p_input->b_die = VLC_TRUE;
1312             break;
1313
1314         case INPUT_CONTROL_SET_POSITION:
1315         case INPUT_CONTROL_SET_POSITION_OFFSET:
1316         {
1317             double f_pos;
1318             if( i_type == INPUT_CONTROL_SET_POSITION )
1319             {
1320                 f_pos = val.f_float;
1321             }
1322             else
1323             {
1324                 /* Should not fail */
1325                 demux2_Control( p_input->input.p_demux,
1326                                 DEMUX_GET_POSITION, &f_pos );
1327                 f_pos += val.f_float;
1328             }
1329             if( f_pos < 0.0 ) f_pos = 0.0;
1330             if( f_pos > 1.0 ) f_pos = 1.0;
1331             /* Reset the decoders states and clock sync (before calling the demuxer */
1332             es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1333             input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1334             if( demux2_Control( p_input->input.p_demux, DEMUX_SET_POSITION,
1335                                 f_pos ) )
1336             {
1337                 msg_Err( p_input, "INPUT_CONTROL_SET_POSITION(_OFFSET) "
1338                          "%2.1f%% failed", f_pos * 100 );
1339             }
1340             else
1341             {
1342                 if( p_input->i_slave > 0 )
1343                     SlaveSeek( p_input );
1344
1345                 b_force_update = VLC_TRUE;
1346             }
1347             break;
1348         }
1349
1350         case INPUT_CONTROL_SET_TIME:
1351         case INPUT_CONTROL_SET_TIME_OFFSET:
1352         {
1353             int64_t i_time;
1354             int i_ret;
1355
1356             if( i_type == INPUT_CONTROL_SET_TIME )
1357             {
1358                 i_time = val.i_time;
1359             }
1360             else
1361             {
1362                 /* Should not fail */
1363                 demux2_Control( p_input->input.p_demux,
1364                                 DEMUX_GET_TIME, &i_time );
1365                 i_time += val.i_time;
1366             }
1367             if( i_time < 0 ) i_time = 0;
1368
1369             /* Reset the decoders states and clock sync (before calling the demuxer */
1370             es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1371             input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1372
1373             i_ret = demux2_Control( p_input->input.p_demux,
1374                                     DEMUX_SET_TIME, i_time );
1375             if( i_ret )
1376             {
1377                 int64_t i_length;
1378
1379                 /* Emulate it with a SET_POS */
1380                 demux2_Control( p_input->input.p_demux,
1381                                 DEMUX_GET_LENGTH, &i_length );
1382                 if( i_length > 0 )
1383                 {
1384                     double f_pos = (double)i_time / (double)i_length;
1385                     i_ret = demux2_Control( p_input->input.p_demux,
1386                                             DEMUX_SET_POSITION, f_pos );
1387                 }
1388             }
1389             if( i_ret )
1390             {
1391                 msg_Warn( p_input, "INPUT_CONTROL_SET_TIME(_OFFSET) "I64Fd
1392                          " failed or not possible", i_time );
1393             }
1394             else
1395             {
1396                 if( p_input->i_slave > 0 )
1397                     SlaveSeek( p_input );
1398
1399                 b_force_update = VLC_TRUE;
1400             }
1401             break;
1402         }
1403
1404         case INPUT_CONTROL_SET_STATE:
1405             if( ( val.i_int == PLAYING_S && p_input->i_state == PAUSE_S ) ||
1406                 ( val.i_int == PAUSE_S && p_input->i_state == PAUSE_S ) )
1407             {
1408                 int i_ret;
1409                 if( p_input->input.p_access )
1410                     i_ret = access2_Control( p_input->input.p_access,
1411                                              ACCESS_SET_PAUSE_STATE, VLC_FALSE );
1412                 else
1413                     i_ret = demux2_Control( p_input->input.p_demux,
1414                                             DEMUX_SET_PAUSE_STATE, VLC_FALSE );
1415
1416                 if( i_ret )
1417                 {
1418                     /* FIXME What to do ? */
1419                     msg_Warn( p_input, "cannot unset pause -> EOF" );
1420                     vlc_mutex_unlock( &p_input->lock_control );
1421                     input_ControlPush( p_input, INPUT_CONTROL_SET_DIE, NULL );
1422                     vlc_mutex_lock( &p_input->lock_control );
1423                 }
1424
1425                 b_force_update = VLC_TRUE;
1426
1427                 /* Switch to play */
1428                 p_input->i_state = PLAYING_S;
1429                 val.i_int = PLAYING_S;
1430                 var_Change( p_input, "state", VLC_VAR_SETVALUE, &val, NULL );
1431
1432                 /* Reset clock */
1433                 es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1434                 input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1435             }
1436             else if( val.i_int == PAUSE_S && p_input->i_state == PLAYING_S &&
1437                      p_input->b_can_pause )
1438             {
1439                 int i_ret;
1440                 if( p_input->input.p_access )
1441                     i_ret = access2_Control( p_input->input.p_access,
1442                                              ACCESS_SET_PAUSE_STATE, VLC_TRUE );
1443                 else
1444                     i_ret = demux2_Control( p_input->input.p_demux,
1445                                             DEMUX_SET_PAUSE_STATE, VLC_TRUE );
1446
1447                 b_force_update = VLC_TRUE;
1448
1449                 if( i_ret )
1450                 {
1451                     msg_Warn( p_input, "cannot set pause state" );
1452                     val.i_int = p_input->i_state;
1453                 }
1454                 else
1455                 {
1456                     val.i_int = PAUSE_S;
1457                 }
1458
1459                 /* Switch to new state */
1460                 p_input->i_state = val.i_int;
1461                 var_Change( p_input, "state", VLC_VAR_SETVALUE, &val, NULL );
1462             }
1463             else if( val.i_int == PAUSE_S && !p_input->b_can_pause )
1464             {
1465                 b_force_update = VLC_TRUE;
1466
1467                 /* Correct "state" value */
1468                 val.i_int = p_input->i_state;
1469                 var_Change( p_input, "state", VLC_VAR_SETVALUE, &val, NULL );
1470             }
1471             else if( val.i_int != PLAYING_S && val.i_int != PAUSE_S )
1472             {
1473                 msg_Err( p_input, "invalid state in INPUT_CONTROL_SET_STATE" );
1474             }
1475             break;
1476
1477         case INPUT_CONTROL_SET_RATE:
1478         case INPUT_CONTROL_SET_RATE_SLOWER:
1479         case INPUT_CONTROL_SET_RATE_FASTER:
1480         {
1481             int i_rate;
1482
1483             if( i_type == INPUT_CONTROL_SET_RATE_SLOWER )
1484                 i_rate = p_input->i_rate * 2;
1485             else if( i_type == INPUT_CONTROL_SET_RATE_FASTER )
1486                 i_rate = p_input->i_rate / 2;
1487             else
1488                 i_rate = val.i_int;
1489
1490             if( i_rate < INPUT_RATE_MIN )
1491             {
1492                 msg_Dbg( p_input, "cannot set rate faster" );
1493                 i_rate = INPUT_RATE_MIN;
1494             }
1495             else if( i_rate > INPUT_RATE_MAX )
1496             {
1497                 msg_Dbg( p_input, "cannot set rate slower" );
1498                 i_rate = INPUT_RATE_MAX;
1499             }
1500             if( i_rate != INPUT_RATE_DEFAULT &&
1501                 ( !p_input->b_can_pace_control ||
1502                   ( p_input->p_sout && !p_input->b_out_pace_control ) ) )
1503             {
1504                 msg_Dbg( p_input, "cannot change rate" );
1505                 i_rate = INPUT_RATE_DEFAULT;
1506             }
1507             if( i_rate != p_input->i_rate )
1508             {
1509                 p_input->i_rate  = i_rate;
1510                 val.i_int = i_rate;
1511                 var_Change( p_input, "rate", VLC_VAR_SETVALUE, &val, NULL );
1512
1513                 /* We haven't send data to decoder when rate != default */
1514                 if( i_rate == INPUT_RATE_DEFAULT )
1515                     input_EsOutDiscontinuity( p_input->p_es_out, VLC_TRUE );
1516
1517                 /* Reset clock */
1518                 es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1519
1520                 b_force_update = VLC_TRUE;
1521             }
1522             break;
1523         }
1524
1525         case INPUT_CONTROL_SET_PROGRAM:
1526             /* No need to force update, es_out does it if needed */
1527             es_out_Control( p_input->p_es_out,
1528                             ES_OUT_SET_GROUP, val.i_int );
1529
1530             demux2_Control( p_input->input.p_demux, DEMUX_SET_GROUP, val.i_int,
1531                             NULL );
1532             break;
1533
1534         case INPUT_CONTROL_SET_ES:
1535             /* No need to force update, es_out does it if needed */
1536             es_out_Control( p_input->p_es_out, ES_OUT_SET_ES,
1537                             input_EsOutGetFromID( p_input->p_es_out,
1538                                                   val.i_int ) );
1539             break;
1540
1541         case INPUT_CONTROL_SET_AUDIO_DELAY:
1542             input_EsOutSetDelay( p_input->p_es_out,
1543                                  AUDIO_ES, val.i_time );
1544             var_Change( p_input, "audio-delay", VLC_VAR_SETVALUE, &val, NULL );
1545             break;
1546
1547         case INPUT_CONTROL_SET_SPU_DELAY:
1548             input_EsOutSetDelay( p_input->p_es_out,
1549                                  SPU_ES, val.i_time );
1550             var_Change( p_input, "spu-delay", VLC_VAR_SETVALUE, &val, NULL );
1551             break;
1552
1553         case INPUT_CONTROL_SET_TITLE:
1554         case INPUT_CONTROL_SET_TITLE_NEXT:
1555         case INPUT_CONTROL_SET_TITLE_PREV:
1556             if( p_input->input.b_title_demux &&
1557                 p_input->input.i_title > 0 )
1558             {
1559                 /* TODO */
1560                 /* FIXME handle demux title */
1561                 demux_t *p_demux = p_input->input.p_demux;
1562                 int i_title;
1563
1564                 if( i_type == INPUT_CONTROL_SET_TITLE_PREV )
1565                     i_title = p_demux->info.i_title - 1;
1566                 else if( i_type == INPUT_CONTROL_SET_TITLE_NEXT )
1567                     i_title = p_demux->info.i_title + 1;
1568                 else
1569                     i_title = val.i_int;
1570
1571                 if( i_title >= 0 && i_title < p_input->input.i_title )
1572                 {
1573                     input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1574                     es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1575
1576                     demux2_Control( p_demux, DEMUX_SET_TITLE, i_title );
1577                     input_ControlVarTitle( p_input, i_title );
1578                 }
1579             }
1580             else if( p_input->input.i_title > 0 )
1581             {
1582                 access_t *p_access = p_input->input.p_access;
1583                 int i_title;
1584
1585                 if( i_type == INPUT_CONTROL_SET_TITLE_PREV )
1586                     i_title = p_access->info.i_title - 1;
1587                 else if( i_type == INPUT_CONTROL_SET_TITLE_NEXT )
1588                     i_title = p_access->info.i_title + 1;
1589                 else
1590                     i_title = val.i_int;
1591
1592                 if( i_title >= 0 && i_title < p_input->input.i_title )
1593                 {
1594                     input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1595                     es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1596
1597                     access2_Control( p_access, ACCESS_SET_TITLE, i_title );
1598                     stream_AccessReset( p_input->input.p_stream );
1599                 }
1600             }
1601             break;
1602         case INPUT_CONTROL_SET_SEEKPOINT:
1603         case INPUT_CONTROL_SET_SEEKPOINT_NEXT:
1604         case INPUT_CONTROL_SET_SEEKPOINT_PREV:
1605             if( p_input->input.b_title_demux &&
1606                 p_input->input.i_title > 0 )
1607             {
1608                 demux_t *p_demux = p_input->input.p_demux;
1609                 int i_seekpoint;
1610                 int64_t i_input_time;
1611                 int64_t i_seekpoint_time;
1612
1613                 if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
1614                 {
1615                     i_seekpoint = p_demux->info.i_seekpoint;
1616                     i_seekpoint_time = p_input->input.title[p_demux->info.i_title]->seekpoint[i_seekpoint]->i_time_offset;
1617                     if( i_seekpoint_time >= 0 &&
1618                          !demux2_Control( p_demux,
1619                                           DEMUX_GET_TIME, &i_input_time ) )
1620                     {
1621                         if ( i_input_time < i_seekpoint_time + 3000000 )
1622                             i_seekpoint--;
1623                     }
1624                     else
1625                         i_seekpoint--;
1626                 }
1627                 else if( i_type == INPUT_CONTROL_SET_SEEKPOINT_NEXT )
1628                     i_seekpoint = p_demux->info.i_seekpoint + 1;
1629                 else
1630                     i_seekpoint = val.i_int;
1631
1632                 if( i_seekpoint >= 0 && i_seekpoint <
1633                     p_input->input.title[p_demux->info.i_title]->i_seekpoint )
1634                 {
1635                     input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1636                     es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1637
1638                     demux2_Control( p_demux, DEMUX_SET_SEEKPOINT, i_seekpoint );
1639                 }
1640             }
1641             else if( p_input->input.i_title > 0 )
1642             {
1643                 demux_t *p_demux = p_input->input.p_demux;
1644                 access_t *p_access = p_input->input.p_access;
1645                 int i_seekpoint;
1646                 int64_t i_input_time;
1647                 int64_t i_seekpoint_time;
1648
1649                 if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
1650                 {
1651                     i_seekpoint = p_access->info.i_seekpoint;
1652                     i_seekpoint_time = p_input->input.title[p_access->info.i_title]->seekpoint[i_seekpoint]->i_time_offset;
1653                     if( i_seekpoint_time >= 0 &&
1654                         demux2_Control( p_demux,
1655                                         DEMUX_GET_TIME, &i_input_time ) )
1656                     {
1657                         if ( i_input_time < i_seekpoint_time + 3000000 )
1658                             i_seekpoint--;
1659                     }
1660                     else
1661                         i_seekpoint--;
1662                 }
1663                 else if( i_type == INPUT_CONTROL_SET_SEEKPOINT_NEXT ) 
1664                     i_seekpoint = p_access->info.i_seekpoint + 1;
1665                 else
1666                     i_seekpoint = val.i_int;
1667
1668                 if( i_seekpoint >= 0 && i_seekpoint <
1669                     p_input->input.title[p_access->info.i_title]->i_seekpoint )
1670                 {
1671                     input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
1672                     es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
1673
1674                     access2_Control( p_access, ACCESS_SET_SEEKPOINT,
1675                                     i_seekpoint );
1676                     stream_AccessReset( p_input->input.p_stream );
1677                 }
1678             }
1679             break;
1680
1681         case INPUT_CONTROL_ADD_SLAVE:
1682             if( val.psz_string )
1683             {
1684                 input_source_t *slave = InputSourceNew( p_input );
1685
1686                 if( !InputSourceInit( p_input, slave, val.psz_string, NULL ) )
1687                 {
1688                     vlc_meta_t *p_meta = p_input->input.p_item->p_meta;
1689                     int64_t i_time;
1690
1691                     /* Add the slave */
1692                     msg_Dbg( p_input, "adding %s as slave on the fly",
1693                              val.psz_string );
1694
1695                     /* Set position */
1696                     if( demux2_Control( p_input->input.p_demux,
1697                                         DEMUX_GET_TIME, &i_time ) )
1698                     {
1699                         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
1700                         InputSourceClean( p_input, slave );
1701                         free( slave );
1702                         break;
1703                     }
1704                     if( demux2_Control( slave->p_demux,
1705                                         DEMUX_SET_TIME, i_time ) )
1706                     {
1707                         msg_Err( p_input, "seek failed for new slave" );
1708                         InputSourceClean( p_input, slave );
1709                         free( slave );
1710                         break;
1711                     }
1712
1713                     /* Get meta (access and demux) */
1714                     access2_Control( slave->p_access, ACCESS_GET_META,
1715                                      p_meta );
1716                     demux2_Control( slave->p_demux, DEMUX_GET_META, p_meta );
1717                     UpdateMeta( p_input );
1718
1719                     TAB_APPEND( p_input->i_slave, p_input->slave, slave );
1720                 }
1721                 else
1722                 {
1723                     free( slave );
1724                     msg_Warn( p_input, "failed to add %s as slave",
1725                               val.psz_string );
1726                 }
1727
1728                 free( val.psz_string );
1729             }
1730             break;
1731
1732         case INPUT_CONTROL_SET_BOOKMARK:
1733         default:
1734             msg_Err( p_input, "not yet implemented" );
1735             break;
1736     }
1737
1738     return b_force_update;
1739 }
1740
1741 /*****************************************************************************
1742  * UpdateFromDemux:
1743  *****************************************************************************/
1744 static int UpdateFromDemux( input_thread_t *p_input )
1745 {
1746     demux_t *p_demux = p_input->input.p_demux;
1747     vlc_value_t v;
1748
1749     if( p_demux->info.i_update & INPUT_UPDATE_TITLE )
1750     {
1751         v.i_int = p_demux->info.i_title;
1752         var_Change( p_input, "title", VLC_VAR_SETVALUE, &v, NULL );
1753
1754         input_ControlVarTitle( p_input, p_demux->info.i_title );
1755
1756         p_demux->info.i_update &= ~INPUT_UPDATE_TITLE;
1757     }
1758     if( p_demux->info.i_update & INPUT_UPDATE_SEEKPOINT )
1759     {
1760         v.i_int = p_demux->info.i_seekpoint;
1761         var_Change( p_input, "chapter", VLC_VAR_SETVALUE, &v, NULL);
1762
1763         p_demux->info.i_update &= ~INPUT_UPDATE_SEEKPOINT;
1764     }
1765     p_demux->info.i_update &= ~INPUT_UPDATE_SIZE;
1766
1767     /* Hmmm only works with master input */
1768     if( p_input->input.p_demux == p_demux )
1769     {
1770         int i_title_end = p_input->input.i_title_end -
1771             p_input->input.i_title_offset;
1772         int i_seekpoint_end = p_input->input.i_seekpoint_end -
1773             p_input->input.i_seekpoint_offset;
1774
1775         if( i_title_end >= 0 && i_seekpoint_end >= 0 )
1776         {
1777             if( p_demux->info.i_title > i_title_end ||
1778                 ( p_demux->info.i_title == i_title_end &&
1779                   p_demux->info.i_seekpoint > i_seekpoint_end ) ) return 0;
1780         }
1781         else if( i_seekpoint_end >=0 )
1782         {
1783             if( p_demux->info.i_seekpoint > i_seekpoint_end ) return 0;
1784         }
1785         else if( i_title_end >= 0 )
1786         {
1787             if( p_demux->info.i_title > i_title_end ) return 0;
1788         }
1789     }
1790
1791     return 1;
1792 }
1793
1794 /*****************************************************************************
1795  * UpdateFromAccess:
1796  *****************************************************************************/
1797 static int UpdateFromAccess( input_thread_t *p_input )
1798 {
1799     access_t *p_access = p_input->input.p_access;
1800     vlc_value_t v;
1801
1802     if( p_access->info.i_update & INPUT_UPDATE_TITLE )
1803     {
1804         v.i_int = p_access->info.i_title;
1805         var_Change( p_input, "title", VLC_VAR_SETVALUE, &v, NULL );
1806
1807         input_ControlVarTitle( p_input, p_access->info.i_title );
1808
1809         stream_AccessUpdate( p_input->input.p_stream );
1810
1811         p_access->info.i_update &= ~INPUT_UPDATE_TITLE;
1812     }
1813     if( p_access->info.i_update & INPUT_UPDATE_SEEKPOINT )
1814     {
1815         v.i_int = p_access->info.i_seekpoint;
1816         var_Change( p_input, "chapter", VLC_VAR_SETVALUE, &v, NULL);
1817         p_access->info.i_update &= ~INPUT_UPDATE_SEEKPOINT;
1818     }
1819     if( p_access->info.i_update & INPUT_UPDATE_META )
1820     {
1821         /* TODO maybe multi - access ? */
1822         vlc_meta_t *p_meta = p_input->input.p_item->p_meta;
1823         access2_Control( p_input->input.p_access,ACCESS_GET_META, p_meta );
1824         UpdateMeta( p_input );
1825         var_SetBool( p_input, "item-change", p_input->input.p_item->i_id );
1826         p_access->info.i_update &= ~INPUT_UPDATE_META;
1827     }
1828
1829     p_access->info.i_update &= ~INPUT_UPDATE_SIZE;
1830
1831     /* Hmmm only works with master input */
1832     if( p_input->input.p_access == p_access )
1833     {
1834         int i_title_end = p_input->input.i_title_end -
1835             p_input->input.i_title_offset;
1836         int i_seekpoint_end = p_input->input.i_seekpoint_end -
1837             p_input->input.i_seekpoint_offset;
1838
1839         if( i_title_end >= 0 && i_seekpoint_end >=0 )
1840         {
1841             if( p_access->info.i_title > i_title_end ||
1842                 ( p_access->info.i_title == i_title_end &&
1843                   p_access->info.i_seekpoint > i_seekpoint_end ) ) return 0;
1844         }
1845         else if( i_seekpoint_end >=0 )
1846         {
1847             if( p_access->info.i_seekpoint > i_seekpoint_end ) return 0;
1848         }
1849         else if( i_title_end >= 0 )
1850         {
1851             if( p_access->info.i_title > i_title_end ) return 0;
1852         }
1853     }
1854
1855     return 1;
1856 }
1857
1858 /*****************************************************************************
1859  * UpdateMeta:
1860  *****************************************************************************/
1861 static int  UpdateMeta( input_thread_t *p_input )
1862 {
1863     vlc_meta_t *p_meta = p_input->input.p_item->p_meta;
1864     if( !p_meta )
1865         return VLC_SUCCESS;
1866
1867     if( p_meta->psz_title && !p_input->input.p_item->b_fixed_name )
1868         input_Control( p_input, INPUT_SET_NAME, p_meta->psz_title );
1869
1870     /** \todo handle sout meta */
1871
1872     return VLC_SUCCESS;
1873 }
1874
1875 /*****************************************************************************
1876  * UpdateItemLength:
1877  *****************************************************************************/
1878 static void UpdateItemLength( input_thread_t *p_input, int64_t i_length )
1879 {
1880     vlc_mutex_lock( &p_input->input.p_item->lock );
1881     p_input->input.p_item->i_duration = i_length;
1882     vlc_mutex_unlock( &p_input->input.p_item->lock );
1883
1884     if( !p_input->b_preparsing )
1885     {
1886         pl_Yield( p_input );
1887         var_SetInteger( pl_Get( p_input ), "item-change",
1888                         p_input->input.p_item->i_id );
1889         pl_Release( p_input )
1890     }
1891 }
1892
1893 /*****************************************************************************
1894  * InputSourceNew:
1895  *****************************************************************************/
1896 static input_source_t *InputSourceNew( input_thread_t *p_input )
1897 {
1898     input_source_t *in = (input_source_t*) malloc( sizeof( input_source_t ) );
1899
1900     if( !in )
1901     {
1902         msg_Err( p_input, "out of memory for new input source" );
1903         return NULL;
1904     }
1905
1906     in->p_item   = NULL;
1907     in->p_access = NULL;
1908     in->p_stream = NULL;
1909     in->p_demux  = NULL;
1910     in->b_title_demux = VLC_FALSE;
1911     in->i_title  = 0;
1912     in->title    = NULL;
1913     in->b_can_pace_control = VLC_TRUE;
1914     in->b_eof = VLC_FALSE;
1915     in->i_cr_average = 0;
1916
1917     return in;
1918 }
1919
1920 /*****************************************************************************
1921  * InputSourceInit:
1922  *****************************************************************************/
1923 static int InputSourceInit( input_thread_t *p_input,
1924                             input_source_t *in, char *psz_mrl,
1925                             char *psz_forced_demux )
1926 {
1927     char *psz_dup = strdup( psz_mrl );
1928     char *psz_access;
1929     char *psz_demux;
1930     char *psz_path;
1931     char *psz_tmp;
1932     char *psz;
1933     vlc_value_t val;
1934
1935     if( !in ) return VLC_EGENERIC;
1936     if( !p_input ) return VLC_EGENERIC;
1937
1938     /* Split uri */
1939     if( !p_input->b_preparsing )
1940     {
1941         MRLSplit( VLC_OBJECT(p_input), psz_dup,
1942                   &psz_access, &psz_demux, &psz_path );
1943
1944         msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'",
1945                  psz_mrl, psz_access, psz_demux, psz_path );
1946
1947         /* Hack to allow udp://@:port syntax */
1948         if( !psz_access ||
1949             (strncmp( psz_access, "udp", 3 ) &&
1950              strncmp( psz_access, "rtp", 3 )) )
1951
1952         /* Find optional titles and seekpoints */
1953         MRLSections( p_input, psz_path, &in->i_title_start, &in->i_title_end,
1954                      &in->i_seekpoint_start, &in->i_seekpoint_end );
1955
1956         if( psz_forced_demux && *psz_forced_demux )
1957         {
1958             psz_demux = psz_forced_demux;
1959         }
1960         else if( !psz_demux || *psz_demux == '\0' )
1961         {
1962             /* special hack for forcing a demuxer with --demux=module
1963              * (and do nothing with a list) */
1964             char *psz_var_demux = var_GetString( p_input, "demux" );
1965
1966             if( *psz_var_demux != '\0' &&
1967                 !strchr(psz_var_demux, ',' ) &&
1968                 !strchr(psz_var_demux, ':' ) )
1969             {
1970                 psz_demux = psz_var_demux;
1971
1972                 msg_Dbg( p_input, "enforced demux ` %s'", psz_demux );
1973             }
1974             else if( psz_var_demux )
1975             {
1976                 free( psz_var_demux );
1977             }
1978         }
1979
1980         /* Try access_demux if no demux given */
1981         if( *psz_demux == '\0' )
1982         {
1983             in->p_demux = demux2_New( p_input, psz_access, psz_demux, psz_path,
1984                                       NULL, p_input->p_es_out, VLC_FALSE );
1985         }
1986     }
1987     else
1988     {
1989         psz_path = psz_mrl;
1990         msg_Dbg( p_input, "trying to pre-parse %s",  psz_path );
1991         psz_demux = "";
1992         psz_access = "file";
1993     }
1994
1995     if( in->p_demux )
1996     {
1997         int64_t i_pts_delay;
1998
1999         /* Get infos from access_demux */
2000         demux2_Control( in->p_demux,
2001                         DEMUX_GET_PTS_DELAY, &i_pts_delay );
2002         p_input->i_pts_delay = __MAX( p_input->i_pts_delay, i_pts_delay );
2003
2004         in->b_title_demux = VLC_TRUE;
2005         if( demux2_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2006                             &in->title, &in->i_title,
2007                             &in->i_title_offset, &in->i_seekpoint_offset ) )
2008         {
2009             in->i_title = 0;
2010             in->title   = NULL;
2011         }
2012         demux2_Control( in->p_demux, DEMUX_CAN_CONTROL_PACE,
2013                         &in->b_can_pace_control );
2014         demux2_Control( in->p_demux, DEMUX_CAN_PAUSE,
2015                         &in->b_can_pause );
2016
2017         /* FIXME todo
2018         demux2_Control( in->p_demux, DEMUX_CAN_SEEK,
2019                         &val.b_bool );
2020         */
2021     }
2022     else
2023     {
2024         int64_t i_pts_delay;
2025
2026         input_ChangeState( p_input, OPENING_S );
2027
2028         /* Now try a real access */
2029         in->p_access = access2_New( p_input, psz_access, psz_demux, psz_path,
2030                                     p_input->b_preparsing );
2031
2032         /* Access failed, URL encoded ? */
2033         if( in->p_access == NULL && strchr( psz_path, '%' ) )
2034         {
2035             decode_URI( psz_path );
2036
2037             msg_Dbg( p_input, "retrying with access `%s' demux `%s' path `%s'",
2038                      psz_access, psz_demux, psz_path );
2039
2040             in->p_access = access2_New( p_input,
2041                                         psz_access, psz_demux, psz_path,
2042                                         p_input->b_preparsing );
2043         }
2044 #ifndef WIN32      /* Remove this gross hack from the win32 build as colons
2045                         * are forbidden in filenames on Win32. */
2046
2047         /* Maybe we got something like: /Volumes/toto:titi/gabu.mpg */
2048         if( in->p_access == NULL &&
2049             *psz_access == '\0' && ( *psz_demux || *psz_path ) )
2050         {
2051             if( psz_dup ) free( psz_dup );
2052             psz_dup = strdup( psz_mrl );
2053             psz_access = "";
2054             if( psz_forced_demux && *psz_forced_demux )
2055             {
2056                 psz_demux = psz_forced_demux;
2057             }
2058             else psz_demux = "";
2059             psz_path = psz_dup;
2060
2061             in->p_access = access2_New( p_input,
2062                                         psz_access, psz_demux, psz_path,
2063                                         p_input->b_preparsing );
2064         }
2065 #endif
2066
2067         if( in->p_access == NULL )
2068         {
2069             msg_Err( p_input, "no suitable access module for `%s'", psz_mrl );
2070             intf_UserFatal( VLC_OBJECT( p_input), VLC_FALSE,
2071                             _("Your input can't be opened"),
2072                             _("VLC is unable to open the MRL '%s'."
2073                             " Check the log for details."), psz_mrl );
2074             goto error;
2075         }
2076
2077         /* */
2078         psz_tmp = psz = var_GetString( p_input, "access-filter" );
2079         while( psz && *psz )
2080         {
2081             access_t *p_access = in->p_access;
2082             char *end = strchr( psz, ':' );
2083
2084             if( end )
2085                 *end++ = '\0';
2086
2087             in->p_access = access2_FilterNew( in->p_access, psz );
2088             if( in->p_access == NULL )
2089             {
2090                 in->p_access = p_access;
2091                 msg_Warn( p_input, "failed to insert access filter %s",
2092                           psz );
2093             }
2094
2095             psz = end;
2096         }
2097         if( psz_tmp ) free( psz_tmp );
2098
2099         /* Get infos from access */
2100         if( !p_input->b_preparsing )
2101         {
2102             access2_Control( in->p_access,
2103                              ACCESS_GET_PTS_DELAY, &i_pts_delay );
2104             p_input->i_pts_delay = __MAX( p_input->i_pts_delay, i_pts_delay );
2105
2106             in->b_title_demux = VLC_FALSE;
2107             if( access2_Control( in->p_access, ACCESS_GET_TITLE_INFO,
2108                                  &in->title, &in->i_title,
2109                                 &in->i_title_offset, &in->i_seekpoint_offset ) )
2110
2111             {
2112                 in->i_title = 0;
2113                 in->title   = NULL;
2114             }
2115             access2_Control( in->p_access, ACCESS_CAN_CONTROL_PACE,
2116                              &in->b_can_pace_control );
2117             access2_Control( in->p_access, ACCESS_CAN_PAUSE,
2118                              &in->b_can_pause );
2119             access2_Control( in->p_access, ACCESS_CAN_SEEK,
2120                              &val.b_bool );
2121             var_Set( p_input, "seekable", val );
2122         }
2123
2124         input_ChangeState( p_input, BUFFERING_S );
2125
2126         /* Create the stream_t */
2127         in->p_stream = stream_AccessNew( in->p_access, p_input->b_preparsing );
2128         if( in->p_stream == NULL )
2129         {
2130             msg_Warn( p_input, "cannot create a stream_t from access" );
2131             goto error;
2132         }
2133
2134         /* Open a demuxer */
2135         if( *psz_demux == '\0' && *in->p_access->psz_demux )
2136         {
2137             psz_demux = in->p_access->psz_demux;
2138         }
2139         in->p_demux = demux2_New( p_input, psz_access, psz_demux, psz_path,
2140                                   in->p_stream, p_input->p_es_out,
2141                                   p_input->b_preparsing );
2142         if( in->p_demux == NULL )
2143         {
2144             msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
2145                      psz_access, psz_demux, psz_path );
2146             intf_UserFatal( VLC_OBJECT( p_input), VLC_FALSE, 
2147                             _("Can't recognize the input's format"),
2148                             _("The format of '%s' can't be detected. "
2149                             "Have a look the log for details."), psz_mrl );
2150             goto error;
2151         }
2152
2153         /* TODO get title from demux */
2154         if( !p_input->b_preparsing && in->i_title <= 0 )
2155         {
2156             if( demux2_Control( in->p_demux, DEMUX_GET_TITLE_INFO,
2157                                 &in->title, &in->i_title,
2158                                 &in->i_title_offset, &in->i_seekpoint_offset ))
2159             {
2160                 in->i_title = 0;
2161                 in->title   = NULL;
2162             }
2163             else
2164             {
2165                 in->b_title_demux = VLC_TRUE;
2166             }
2167         }
2168     }
2169
2170     if( var_GetInteger( p_input, "clock-synchro" ) != -1 )
2171         in->b_can_pace_control = !var_GetInteger( p_input, "clock-synchro" );
2172
2173     if( psz_dup ) free( psz_dup );
2174     return VLC_SUCCESS;
2175
2176 error:
2177     input_ChangeState( p_input, ERROR_S );
2178
2179     if( in->p_demux )
2180         demux2_Delete( in->p_demux );
2181
2182     if( in->p_stream )
2183         stream_Delete( in->p_stream );
2184
2185     if( in->p_access )
2186         access2_Delete( in->p_access );
2187     if( psz_dup ) free( psz_dup );
2188
2189     return VLC_EGENERIC;
2190 }
2191
2192 /*****************************************************************************
2193  * InputSourceClean:
2194  *****************************************************************************/
2195 static void InputSourceClean( input_thread_t *p_input, input_source_t *in )
2196 {
2197     if( in->p_demux )
2198         demux2_Delete( in->p_demux );
2199
2200     if( in->p_stream )
2201         stream_Delete( in->p_stream );
2202
2203     if( in->p_access )
2204         access2_Delete( in->p_access );
2205
2206     if( in->i_title > 0 )
2207     {
2208         int i;
2209         for( i = 0; i < in->i_title; i++ )
2210         {
2211             vlc_input_title_Delete( in->title[i] );
2212         }
2213         free( in->title );
2214     }
2215 }
2216
2217 static void SlaveDemux( input_thread_t *p_input )
2218 {
2219     int64_t i_time;
2220     int i;
2221
2222     if( demux2_Control( p_input->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2223     {
2224         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2225         return;
2226     }
2227
2228     for( i = 0; i < p_input->i_slave; i++ )
2229     {
2230         input_source_t *in = p_input->slave[i];
2231         int i_ret = 1;
2232
2233         if( in->b_eof )
2234             continue;
2235
2236         if( demux2_Control( in->p_demux, DEMUX_SET_NEXT_DEMUX_TIME, i_time ) )
2237         {
2238             for( ;; )
2239             {
2240                 int64_t i_stime;
2241                 if( demux2_Control( in->p_demux, DEMUX_GET_TIME, &i_stime ) )
2242                 {
2243                     msg_Err( p_input, "slave[%d] doesn't like "
2244                              "DEMUX_GET_TIME -> EOF", i );
2245                     i_ret = 0;
2246                     break;
2247                 }
2248
2249                 if( i_stime >= i_time )
2250                     break;
2251
2252                 if( ( i_ret = in->p_demux->pf_demux( in->p_demux ) ) <= 0 )
2253                     break;
2254             }
2255         }
2256         else
2257         {
2258             i_ret = in->p_demux->pf_demux( in->p_demux );
2259         }
2260
2261         if( i_ret <= 0 )
2262         {
2263             msg_Dbg( p_input, "slave %d EOF", i );
2264             in->b_eof = VLC_TRUE;
2265         }
2266     }
2267 }
2268
2269 static void SlaveSeek( input_thread_t *p_input )
2270 {
2271     int64_t i_time;
2272     int i;
2273
2274     if( !p_input ) return;
2275
2276     if( demux2_Control( p_input->input.p_demux, DEMUX_GET_TIME, &i_time ) )
2277     {
2278         msg_Err( p_input, "demux doesn't like DEMUX_GET_TIME" );
2279         return;
2280     }
2281
2282     for( i = 0; i < p_input->i_slave; i++ )
2283     {
2284         input_source_t *in = p_input->slave[i];
2285
2286         if( demux2_Control( in->p_demux, DEMUX_SET_TIME, i_time ) )
2287         {
2288             msg_Err( p_input, "seek failed for slave %d -> EOF", i );
2289             in->b_eof = VLC_TRUE;
2290         }
2291     }
2292 }
2293
2294 /*****************************************************************************
2295  * InputMetaUser:
2296  *****************************************************************************/
2297 static void InputMetaUser( input_thread_t *p_input )
2298 {
2299     vlc_meta_t *p_meta = p_input->input.p_item->p_meta;
2300     vlc_value_t val;
2301
2302     if( !p_meta ) return;
2303
2304     /* Get meta information from user */
2305 #define GET_META( field, s ) \
2306     var_Get( p_input, (s), &val );  \
2307     if( *val.psz_string ) { \
2308         if( p_meta->psz_ ## field ) free ( p_meta->psz_ ## field ); \
2309         p_meta->psz_ ## field = strdup( val.psz_string ); \
2310     } \
2311     free( val.psz_string )
2312
2313     GET_META( title, "meta-title" );
2314     GET_META( artist, "meta-artist" );
2315     GET_META( genre, "meta-genre" );
2316     GET_META( copyright, "meta-copyright" );
2317     GET_META( description, "meta-description" );
2318     GET_META( date, "meta-date" );
2319     GET_META( url, "meta-url" );
2320 #undef GET_META
2321 }
2322
2323 /*****************************************************************************
2324  * MRLSplit: parse the access, demux and url part of the
2325  *           Media Resource Locator.
2326  *****************************************************************************/
2327 void MRLSplit( vlc_object_t *p_input, char *psz_dup,
2328                char **ppsz_access, char **ppsz_demux, char **ppsz_path )
2329 {
2330     char *psz_access = NULL;
2331     char *psz_demux  = NULL;
2332     char *psz_path   = NULL;
2333     char *psz, *psz_check;
2334
2335     psz = strchr( psz_dup, ':' );
2336
2337     /* '@' not allowed in access/demux part */
2338     psz_check = strchr( psz_dup, '@' );
2339     if( psz_check && psz_check < psz ) psz = 0;
2340
2341 #if defined( WIN32 ) || defined( UNDER_CE )
2342     if( psz - psz_dup == 1 )
2343     {
2344         msg_Dbg( p_input, "drive letter %c: found in source", *psz_dup );
2345         psz_path = psz_dup;
2346     }
2347     else
2348 #endif
2349
2350     if( psz )
2351     {
2352         *psz++ = '\0';
2353         if( psz[0] == '/' && psz[1] == '/' ) psz += 2;
2354
2355         psz_path = psz;
2356
2357         psz = strchr( psz_dup, '/' );
2358         if( psz )
2359         {
2360             *psz++ = '\0';
2361             psz_demux = psz;
2362         }
2363
2364         psz_access = psz_dup;
2365     }
2366     else
2367     {
2368         psz_path = psz_dup;
2369     }
2370
2371     if( !psz_access ) *ppsz_access = "";
2372     else *ppsz_access = psz_access;
2373
2374     if( !psz_demux ) *ppsz_demux = "";
2375     else *ppsz_demux = psz_demux;
2376
2377     if( !psz_path ) *ppsz_path = "";
2378     else *ppsz_path = psz_path;
2379 }
2380
2381 /*****************************************************************************
2382  * MRLSections: parse title and seekpoint info from the Media Resource Locator.
2383  *
2384  * Syntax:
2385  * [url][@[title-start][:chapter-start][-[title-end][:chapter-end]]]
2386  *****************************************************************************/
2387 static void MRLSections( input_thread_t *p_input, char *psz_source,
2388                          int *pi_title_start, int *pi_title_end,
2389                          int *pi_chapter_start, int *pi_chapter_end )
2390 {
2391     char *psz, *psz_end, *psz_next, *psz_check;
2392
2393     *pi_title_start = *pi_title_end = -1;
2394     *pi_chapter_start = *pi_chapter_end = -1;
2395
2396     /* Start by parsing titles and chapters */
2397     if( !psz_source || !( psz = strrchr( psz_source, '@' ) ) ) return;
2398
2399     /* Check we are really dealing with a title/chapter section */
2400     psz_check = psz + 1;
2401     if( !*psz_check ) return;
2402     if( isdigit(*psz_check) ) strtol( psz_check, &psz_check, 0 );
2403     if( *psz_check != ':' && *psz_check != '-' && *psz_check ) return;
2404     if( *psz_check == ':' && ++psz_check )
2405         if( isdigit(*psz_check) ) strtol( psz_check, &psz_check, 0 );
2406     if( *psz_check != '-' && *psz_check ) return;
2407     if( *psz_check == '-' && ++psz_check )
2408         if( isdigit(*psz_check) ) strtol( psz_check, &psz_check, 0 );
2409     if( *psz_check != ':' && *psz_check ) return;
2410     if( *psz_check == ':' && ++psz_check )
2411         if( isdigit(*psz_check) ) strtol( psz_check, &psz_check, 0 );
2412     if( *psz_check ) return;
2413
2414     /* Separate start and end */
2415     *psz++ = 0;
2416     if( ( psz_end = strchr( psz, '-' ) ) ) *psz_end++ = 0;
2417
2418     /* Look for the start title */
2419     *pi_title_start = strtol( psz, &psz_next, 0 );
2420     if( !*pi_title_start && psz == psz_next ) *pi_title_start = -1;
2421     *pi_title_end = *pi_title_start;
2422     psz = psz_next;
2423
2424     /* Look for the start chapter */
2425     if( *psz ) psz++;
2426     *pi_chapter_start = strtol( psz, &psz_next, 0 );
2427     if( !*pi_chapter_start && psz == psz_next ) *pi_chapter_start = -1;
2428     *pi_chapter_end = *pi_chapter_start;
2429
2430     if( psz_end )
2431     {
2432         /* Look for the end title */
2433         *pi_title_end = strtol( psz_end, &psz_next, 0 );
2434         if( !*pi_title_end && psz_end == psz_next ) *pi_title_end = -1;
2435         psz_end = psz_next;
2436
2437         /* Look for the end chapter */
2438         if( *psz_end ) psz_end++;
2439         *pi_chapter_end = strtol( psz_end, &psz_next, 0 );
2440         if( !*pi_chapter_end && psz_end == psz_next ) *pi_chapter_end = -1;
2441     }
2442
2443     msg_Dbg( p_input, "source=`%s' title=%d/%d seekpoint=%d/%d",
2444              psz_source, *pi_title_start, *pi_chapter_start,
2445              *pi_title_end, *pi_chapter_end );
2446 }
2447
2448 /*****************************************************************************
2449  * input_AddSubtitles: add a subtitles file and enable it
2450  *****************************************************************************/
2451 vlc_bool_t input_AddSubtitles( input_thread_t *p_input, char *psz_subtitle,
2452                                vlc_bool_t b_check_extension )
2453 {
2454     input_source_t *sub;
2455     vlc_value_t count;
2456     vlc_value_t list;
2457     char *psz_path, *psz_extension;
2458
2459     if( b_check_extension && !subtitles_Filter( psz_subtitle ) )
2460     {
2461         return VLC_FALSE;
2462     }
2463
2464     /* if we are provided a subtitle.sub file,
2465      * see if we don't have a subtitle.idx and use it instead */
2466     psz_path = strdup( psz_subtitle );
2467     if( psz_path )
2468     {
2469         psz_extension = strrchr( psz_path, '.');
2470         if( psz_extension && strcmp( psz_extension, ".sub" ) == 0 )
2471         {
2472             FILE *f;
2473
2474             strcpy( psz_extension, ".idx" );
2475             /* FIXME: a portable wrapper for stat() or access() would be more suited */
2476             if( ( f = utf8_fopen( psz_path, "rt" ) ) )
2477             {
2478                 fclose( f );
2479                 msg_Dbg( p_input, "using %s subtitles file instead of %s",
2480                          psz_path, psz_subtitle );
2481                 strcpy( psz_subtitle, psz_path );
2482             }
2483         }
2484         free( psz_path );
2485     }
2486
2487     var_Change( p_input, "spu-es", VLC_VAR_CHOICESCOUNT, &count, NULL );
2488
2489     sub = InputSourceNew( p_input );
2490     if( !InputSourceInit( p_input, sub, psz_subtitle, "subtitle" ) )
2491     {
2492         TAB_APPEND( p_input->i_slave, p_input->slave, sub );
2493
2494         /* Select the ES */
2495         if( !var_Change( p_input, "spu-es", VLC_VAR_GETLIST, &list, NULL ) )
2496         {
2497             if( count.i_int == 0 )
2498                 count.i_int++;
2499             /* if it was first one, there is disable too */
2500
2501             if( count.i_int < list.p_list->i_count )
2502             {
2503                 input_ControlPush( p_input, INPUT_CONTROL_SET_ES,
2504                                    &list.p_list->p_values[count.i_int] );
2505             }
2506             var_Change( p_input, "spu-es", VLC_VAR_FREELIST, &list, NULL );
2507         }
2508     }
2509     else free( sub );
2510
2511     return VLC_TRUE;
2512 }
2513