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