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