]> git.sesse.net Git - vlc/blob - src/input/es_out.c
Removed var_Get/Set in es_out.c
[vlc] / src / input / es_out.c
1 /*****************************************************************************
2  * es_out.c: Es Out handler for input.
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
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 <stdio.h>
33 #include <assert.h>
34 #include <vlc_common.h>
35
36 #include <vlc_input.h>
37 #include <vlc_es_out.h>
38 #include <vlc_block.h>
39 #include <vlc_aout.h>
40
41 #include "input_internal.h"
42 #include "clock.h"
43 #include "decoder.h"
44 #include "es_out.h"
45 #include "event.h"
46
47 #include "../stream_output/stream_output.h"
48
49 #include <vlc_iso_lang.h>
50 /* FIXME we should find a better way than including that */
51 #include "../text/iso-639_def.h"
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 typedef struct
57 {
58     /* Program ID */
59     int i_id;
60
61     /* Number of es for this pgrm */
62     int i_es;
63
64     bool b_selected;
65     bool b_scrambled;
66
67     /* Clock for this program */
68     input_clock_t *p_clock;
69
70     char    *psz_name;
71     char    *psz_now_playing;
72     char    *psz_publisher;
73
74     vlc_epg_t *p_epg;
75 } es_out_pgrm_t;
76
77 struct es_out_id_t
78 {
79     /* ES ID */
80     int       i_id;
81     es_out_pgrm_t *p_pgrm;
82
83     /* */
84     bool b_scrambled;
85
86     /* Channel in the track type */
87     int         i_channel;
88     es_format_t fmt;
89     char        *psz_language;
90     char        *psz_language_code;
91
92     decoder_t   *p_dec;
93     decoder_t   *p_dec_record;
94
95     /* Fields for Video with CC */
96     bool  pb_cc_present[4];
97     es_out_id_t  *pp_cc_es[4];
98
99     /* Field for CC track from a master video */
100     es_out_id_t *p_master;
101
102     /* ID for the meta data */
103     int         i_meta_id;
104 };
105
106 struct es_out_sys_t
107 {
108     input_thread_t *p_input;
109
110     /* */
111     vlc_mutex_t   lock;
112
113     /* all programs */
114     int           i_pgrm;
115     es_out_pgrm_t **pgrm;
116     es_out_pgrm_t **pp_selected_pgrm; /* --programs */
117     es_out_pgrm_t *p_pgrm;  /* Master program */
118
119     /* all es */
120     int         i_id;
121     int         i_es;
122     es_out_id_t **es;
123
124     /* mode gestion */
125     bool  b_active;
126     int         i_mode;
127
128     /* es count */
129     int         i_audio;
130     int         i_video;
131     int         i_sub;
132
133     /* es to select */
134     int         i_audio_last, i_audio_id;
135     int         i_sub_last, i_sub_id;
136     int         i_default_sub_id;   /* As specified in container; if applicable */
137     char        **ppsz_audio_language;
138     char        **ppsz_sub_language;
139
140     /* current main es */
141     es_out_id_t *p_es_audio;
142     es_out_id_t *p_es_video;
143     es_out_id_t *p_es_sub;
144
145     /* delay */
146     int64_t i_audio_delay;
147     int64_t i_spu_delay;
148
149     /* Clock configuration */
150     mtime_t     i_pts_delay;
151     int         i_cr_average;
152     int         i_rate;
153
154     /* */
155     bool        b_paused;
156     mtime_t     i_pause_date;
157
158     /* Current preroll */
159     mtime_t     i_preroll_end;
160
161     /* Used for buffering */
162     bool        b_buffering;
163     mtime_t     i_buffering_extra_initial;
164     mtime_t     i_buffering_extra_stream;
165     mtime_t     i_buffering_extra_system;
166
167     /* Record */
168     sout_instance_t *p_sout_record;
169 };
170
171 static es_out_id_t *EsOutAdd    ( es_out_t *, const es_format_t * );
172 static int          EsOutSend   ( es_out_t *, es_out_id_t *, block_t * );
173 static void         EsOutDel    ( es_out_t *, es_out_id_t * );
174 static int          EsOutControl( es_out_t *, int i_query, va_list );
175 static void         EsOutDelete ( es_out_t * );
176
177 static void         EsOutSelect( es_out_t *, es_out_id_t *es, bool b_force );
178 static void         EsOutUpdateInfo( es_out_t *, es_out_id_t *es, const es_format_t *, const vlc_meta_t * );
179 static int          EsOutSetRecord(  es_out_t *, bool b_record );
180
181 static bool EsIsSelected( es_out_id_t *es );
182 static void EsSelect( es_out_t *out, es_out_id_t *es );
183 static void EsUnselect( es_out_t *out, es_out_id_t *es, bool b_update );
184 static void EsOutDecoderChangeDelay( es_out_t *out, es_out_id_t *p_es );
185 static void EsOutDecodersChangePause( es_out_t *out, bool b_paused, mtime_t i_date );
186 static void EsOutProgramChangePause( es_out_t *out, bool b_paused, mtime_t i_date );
187 static void EsOutProgramsChangeRate( es_out_t *out );
188 static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced );
189 static char *LanguageGetName( const char *psz_code );
190 static char *LanguageGetCode( const char *psz_lang );
191 static char **LanguageSplit( const char *psz_langs );
192 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang );
193
194 static char *EsOutProgramGetMetaName( es_out_pgrm_t *p_pgrm );
195
196 static const vlc_fourcc_t EsOutFourccClosedCaptions[4] = {
197     VLC_FOURCC('c', 'c', '1', ' '),
198     VLC_FOURCC('c', 'c', '2', ' '),
199     VLC_FOURCC('c', 'c', '3', ' '),
200     VLC_FOURCC('c', 'c', '4', ' '),
201 };
202 static inline int EsOutGetClosedCaptionsChannel( vlc_fourcc_t fcc )
203 {
204     int i;
205     for( i = 0; i < 4; i++ )
206     {
207         if( fcc == EsOutFourccClosedCaptions[i] )
208             return i;
209     }
210     return -1;
211 }
212 static inline bool EsFmtIsTeletext( const es_format_t *p_fmt )
213 {
214     return p_fmt->i_cat == SPU_ES && p_fmt->i_codec == VLC_FOURCC( 't', 'e', 'l', 'x' );
215 }
216
217 /*****************************************************************************
218  * input_EsOutNew:
219  *****************************************************************************/
220 es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
221 {
222     es_out_t     *out = malloc( sizeof( *out ) );
223     if( !out )
224         return NULL;
225
226     es_out_sys_t *p_sys = malloc( sizeof( *p_sys ) );
227     if( !p_sys )
228     {
229         free( out );
230         return NULL;
231     }
232
233     out->pf_add     = EsOutAdd;
234     out->pf_send    = EsOutSend;
235     out->pf_del     = EsOutDel;
236     out->pf_control = EsOutControl;
237     out->pf_destroy = EsOutDelete;
238     out->p_sys      = p_sys;
239     out->b_sout     = p_input->p->p_sout != NULL;
240
241
242     vlc_mutex_init_recursive( &p_sys->lock );
243     p_sys->p_input = p_input;
244
245     p_sys->b_active = false;
246     p_sys->i_mode   = ES_OUT_MODE_AUTO;
247
248
249     TAB_INIT( p_sys->i_pgrm, p_sys->pgrm );
250     p_sys->p_pgrm   = NULL;
251
252     p_sys->i_id    = 0;
253
254     TAB_INIT( p_sys->i_es, p_sys->es );
255
256     p_sys->i_audio = 0;
257     p_sys->i_video = 0;
258     p_sys->i_sub   = 0;
259
260     /* */
261     p_sys->i_audio_last = var_GetInteger( p_input, "audio-track" );
262
263     p_sys->i_sub_last = var_GetInteger( p_input, "sub-track" );
264
265     p_sys->i_default_sub_id   = -1;
266
267     if( !p_input->b_preparsing )
268     {
269         char *psz_string;
270
271         psz_string = var_GetString( p_input, "audio-language" );
272         p_sys->ppsz_audio_language = LanguageSplit( psz_string );
273         if( p_sys->ppsz_audio_language )
274         {
275             for( int i = 0; p_sys->ppsz_audio_language[i]; i++ )
276                 msg_Dbg( p_input, "selected audio language[%d] %s",
277                          i, p_sys->ppsz_audio_language[i] );
278         }
279         free( psz_string );
280
281         psz_string = var_GetString( p_input, "sub-language" );
282         p_sys->ppsz_sub_language = LanguageSplit( psz_string );
283         if( p_sys->ppsz_sub_language )
284         {
285             for( int i = 0; p_sys->ppsz_sub_language[i]; i++ )
286                 msg_Dbg( p_input, "selected subtitle language[%d] %s",
287                          i, p_sys->ppsz_sub_language[i] );
288         }
289         free( psz_string );
290     }
291     else
292     {
293         p_sys->ppsz_sub_language = NULL;
294         p_sys->ppsz_audio_language = NULL;
295     }
296
297     p_sys->i_audio_id = var_GetInteger( p_input, "audio-track-id" );
298
299     p_sys->i_sub_id = var_GetInteger( p_input, "sub-track-id" );
300
301     p_sys->p_es_audio = NULL;
302     p_sys->p_es_video = NULL;
303     p_sys->p_es_sub   = NULL;
304
305     p_sys->i_audio_delay= 0;
306     p_sys->i_spu_delay  = 0;
307
308     p_sys->b_paused = false;
309     p_sys->i_pause_date = -1;
310
311     p_sys->i_rate = i_rate;
312     p_sys->i_pts_delay = 0;
313     p_sys->i_cr_average = 0;
314
315     p_sys->b_buffering = true;
316     p_sys->i_buffering_extra_initial = 0;
317     p_sys->i_buffering_extra_stream = 0;
318     p_sys->i_buffering_extra_system = 0;
319     p_sys->i_preroll_end = -1;
320
321     p_sys->p_sout_record = NULL;
322
323     return out;
324 }
325
326 /*****************************************************************************
327  *
328  *****************************************************************************/
329 static void EsOutDelete( es_out_t *out )
330 {
331     es_out_sys_t *p_sys = out->p_sys;
332     int i;
333
334     if( p_sys->p_sout_record )
335         EsOutSetRecord( out, false );
336
337     for( i = 0; i < p_sys->i_es; i++ )
338     {
339         if( p_sys->es[i]->p_dec )
340             input_DecoderDelete( p_sys->es[i]->p_dec );
341
342         free( p_sys->es[i]->psz_language );
343         free( p_sys->es[i]->psz_language_code );
344         es_format_Clean( &p_sys->es[i]->fmt );
345
346         free( p_sys->es[i] );
347     }
348     if( p_sys->ppsz_audio_language )
349     {
350         for( i = 0; p_sys->ppsz_audio_language[i]; i++ )
351             free( p_sys->ppsz_audio_language[i] );
352         free( p_sys->ppsz_audio_language );
353     }
354     if( p_sys->ppsz_sub_language )
355     {
356         for( i = 0; p_sys->ppsz_sub_language[i]; i++ )
357             free( p_sys->ppsz_sub_language[i] );
358         free( p_sys->ppsz_sub_language );
359     }
360     free( p_sys->es );
361
362     /* FIXME duplicate work EsOutProgramDel (but we cannot use it) add a EsOutProgramClean ? */
363     for( i = 0; i < p_sys->i_pgrm; i++ )
364     {
365         es_out_pgrm_t *p_pgrm = p_sys->pgrm[i];
366         input_clock_Delete( p_pgrm->p_clock );
367         free( p_pgrm->psz_now_playing );
368         free( p_pgrm->psz_publisher );
369         free( p_pgrm->psz_name );
370         if( p_pgrm->p_epg )
371             vlc_epg_Delete( p_pgrm->p_epg );
372
373         free( p_pgrm );
374     }
375     TAB_CLEAN( p_sys->i_pgrm, p_sys->pgrm );
376     vlc_mutex_destroy( &p_sys->lock );
377
378     free( p_sys );
379     free( out );
380 }
381
382 static mtime_t EsOutGetWakeup( es_out_t *out )
383 {
384     es_out_sys_t   *p_sys = out->p_sys;
385     input_thread_t *p_input = p_sys->p_input;
386
387     if( !p_sys->p_pgrm )
388         return 0;
389
390     /* We do not have a wake up date if the input cannot have its speed
391      * controlled or sout is imposing its own or while buffering
392      *
393      * FIXME for !p_input->p->b_can_pace_control a wkeup time is still needed to avoid too strong buffering */
394     if( !p_input->p->b_can_pace_control ||
395         p_input->p->b_out_pace_control ||
396         p_sys->b_buffering )
397         return 0;
398
399     return input_clock_GetWakeup( p_sys->p_pgrm->p_clock );
400 }
401
402 static es_out_id_t *EsOutGetFromID( es_out_t *out, int i_id )
403 {
404     int i;
405     if( i_id < 0 )
406     {
407         /* Special HACK, -i_id is the cat of the stream */
408         return (es_out_id_t*)((uint8_t*)NULL-i_id);
409     }
410
411     for( i = 0; i < out->p_sys->i_es; i++ )
412     {
413         if( out->p_sys->es[i]->i_id == i_id )
414             return out->p_sys->es[i];
415     }
416     return NULL;
417 }
418
419 static bool EsOutDecodersIsEmpty( es_out_t *out )
420 {
421     es_out_sys_t      *p_sys = out->p_sys;
422     int i;
423
424     if( p_sys->b_buffering && p_sys->p_pgrm )
425     {
426         EsOutDecodersStopBuffering( out, true );
427         if( p_sys->b_buffering )
428             return true;
429     }
430
431     for( i = 0; i < p_sys->i_es; i++ )
432     {
433         es_out_id_t *es = p_sys->es[i];
434
435         if( es->p_dec && !input_DecoderIsEmpty( es->p_dec ) )
436             return false;
437         if( es->p_dec_record && !input_DecoderIsEmpty( es->p_dec_record ) )
438             return false;
439     }
440     return true;
441 }
442
443 static void EsOutSetDelay( es_out_t *out, int i_cat, int64_t i_delay )
444 {
445     es_out_sys_t *p_sys = out->p_sys;
446
447     if( i_cat == AUDIO_ES )
448         p_sys->i_audio_delay = i_delay;
449     else if( i_cat == SPU_ES )
450         p_sys->i_spu_delay = i_delay;
451
452     for( int i = 0; i < p_sys->i_es; i++ )
453         EsOutDecoderChangeDelay( out, p_sys->es[i] );
454 }
455
456 static int EsOutSetRecord(  es_out_t *out, bool b_record )
457 {
458     es_out_sys_t   *p_sys = out->p_sys;
459     input_thread_t *p_input = p_sys->p_input;
460
461     assert( ( b_record && !p_sys->p_sout_record ) || ( !b_record && p_sys->p_sout_record ) );
462
463     if( b_record )
464     {
465         char *psz_path = var_CreateGetString( p_input, "input-record-path" );
466         if( !psz_path || *psz_path == '\0' )
467         {
468             free( psz_path );
469             psz_path = strdup( config_GetHomeDir() );
470         }
471
472         char *psz_sout = NULL;  // TODO conf
473
474         if( !psz_sout && psz_path )
475         {
476             char *psz_file = input_CreateFilename( VLC_OBJECT(p_input), psz_path, INPUT_RECORD_PREFIX, NULL );
477             if( psz_file )
478             {
479                 if( asprintf( &psz_sout, "#record{dst-prefix='%s'}", psz_file ) < 0 )
480                     psz_sout = NULL;
481                 free( psz_file );
482             }
483         }
484         free( psz_path );
485
486         if( !psz_sout )
487             return VLC_EGENERIC;
488
489 #ifdef ENABLE_SOUT
490         p_sys->p_sout_record = sout_NewInstance( p_input, psz_sout );
491 #endif
492         free( psz_sout );
493
494         if( !p_sys->p_sout_record )
495             return VLC_EGENERIC;
496
497         for( int i = 0; i < p_sys->i_es; i++ )
498         {
499             es_out_id_t *p_es = p_sys->es[i];
500
501             if( !p_es->p_dec || p_es->p_master )
502                 continue;
503
504             p_es->p_dec_record = input_DecoderNew( p_input, &p_es->fmt, p_es->p_pgrm->p_clock, p_sys->p_sout_record );
505             if( p_es->p_dec_record && p_sys->b_buffering )
506                 input_DecoderStartBuffering( p_es->p_dec_record );
507         }
508     }
509     else
510     {
511         for( int i = 0; i < p_sys->i_es; i++ )
512         {
513             es_out_id_t *p_es = p_sys->es[i];
514
515             if( !p_es->p_dec_record )
516                 continue;
517
518             input_DecoderDelete( p_es->p_dec_record );
519             p_es->p_dec_record = NULL;
520         }
521 #ifdef ENABLE_SOUT
522         sout_DeleteInstance( p_sys->p_sout_record );
523 #endif
524         p_sys->p_sout_record = NULL;
525     }
526
527     return VLC_SUCCESS;
528 }
529 static void EsOutChangePause( es_out_t *out, bool b_paused, mtime_t i_date )
530 {
531     es_out_sys_t *p_sys = out->p_sys;
532
533     /* XXX the order is important */
534     if( b_paused )
535     {
536         EsOutDecodersChangePause( out, true, i_date );
537         EsOutProgramChangePause( out, true, i_date );
538     }
539     else
540     {
541         if( p_sys->i_buffering_extra_initial > 0 )
542         {
543             mtime_t i_stream_start;
544             mtime_t i_system_start;
545             mtime_t i_stream_duration;
546             mtime_t i_system_duration;
547             int i_ret;
548             i_ret = input_clock_GetState( p_sys->p_pgrm->p_clock,
549                                           &i_stream_start, &i_system_start,
550                                           &i_stream_duration, &i_system_duration );
551             if( !i_ret )
552             {
553                 /* FIXME pcr != exactly what wanted */
554                 const mtime_t i_used = /*(i_stream_duration - p_sys->p_input->p->i_pts_delay)*/ p_sys->i_buffering_extra_system - p_sys->i_buffering_extra_initial;
555                 i_date -= i_used;
556             }
557             p_sys->i_buffering_extra_initial = 0;
558             p_sys->i_buffering_extra_stream = 0;
559             p_sys->i_buffering_extra_system = 0;
560         }
561         EsOutProgramChangePause( out, false, i_date );
562         EsOutDecodersChangePause( out, false, i_date );
563
564         EsOutProgramsChangeRate( out );
565     }
566     p_sys->b_paused = b_paused;
567     p_sys->i_pause_date = i_date;
568 }
569
570 static void EsOutChangeRate( es_out_t *out, int i_rate )
571 {
572     es_out_sys_t      *p_sys = out->p_sys;
573
574     p_sys->i_rate = i_rate;
575
576     if( !p_sys->b_paused )
577         EsOutProgramsChangeRate( out );
578 }
579
580 static void EsOutChangePosition( es_out_t *out )
581 {
582     es_out_sys_t      *p_sys = out->p_sys;
583
584     input_SendEventCache( p_sys->p_input, 0.0 );
585
586     for( int i = 0; i < p_sys->i_es; i++ )
587     {
588         es_out_id_t *p_es = p_sys->es[i];
589
590         if( !p_es->p_dec )
591             continue;
592
593         input_DecoderStartBuffering( p_es->p_dec );
594
595         if( p_es->p_dec_record )
596             input_DecoderStartBuffering( p_es->p_dec_record );
597     }
598
599     for( int i = 0; i < p_sys->i_pgrm; i++ )
600         input_clock_Reset( p_sys->pgrm[i]->p_clock );
601
602     p_sys->b_buffering = true;
603     p_sys->i_buffering_extra_initial = 0;
604     p_sys->i_buffering_extra_stream = 0;
605     p_sys->i_buffering_extra_system = 0;
606     p_sys->i_preroll_end = -1;
607 }
608
609
610
611 static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced )
612 {
613     es_out_sys_t *p_sys = out->p_sys;
614     int i_ret;
615
616     mtime_t i_stream_start;
617     mtime_t i_system_start;
618     mtime_t i_stream_duration;
619     mtime_t i_system_duration;
620     i_ret = input_clock_GetState( p_sys->p_pgrm->p_clock,
621                                   &i_stream_start, &i_system_start,
622                                   &i_stream_duration, &i_system_duration );
623     assert( !i_ret || b_forced );
624     if( i_ret )
625         return;
626
627     mtime_t i_preroll_duration = 0;
628     if( p_sys->i_preroll_end >= 0 )
629         i_preroll_duration = __MAX( p_sys->i_preroll_end - i_stream_start, 0 );
630
631     const mtime_t i_buffering_duration = p_sys->i_pts_delay +
632                                          i_preroll_duration +
633                                          p_sys->i_buffering_extra_stream - p_sys->i_buffering_extra_initial;
634
635     if( i_stream_duration <= i_buffering_duration && !b_forced )
636     {
637         const double f_level = (double)i_stream_duration / i_buffering_duration;
638         input_SendEventCache( p_sys->p_input, f_level );
639
640         msg_Dbg( p_sys->p_input, "Buffering %d%%", (int)(100 * f_level) );
641         return;
642     }
643     input_SendEventCache( p_sys->p_input, 1.0 );
644
645     msg_Dbg( p_sys->p_input, "Stream buffering done (%d ms in %d ms)",
646               (int)(i_stream_duration/1000), (int)(i_system_duration/1000) );
647     p_sys->b_buffering = false;
648     p_sys->i_preroll_end = -1;
649
650     if( p_sys->i_buffering_extra_initial > 0 )
651     {
652         /* FIXME wrong ? */
653         return;
654     }
655
656     const mtime_t i_decoder_buffering_start = mdate();
657     for( int i = 0; i < p_sys->i_es; i++ )
658     {
659         es_out_id_t *p_es = p_sys->es[i];
660
661         if( !p_es->p_dec || p_es->fmt.i_cat == SPU_ES )
662             continue;
663         input_DecoderWaitBuffering( p_es->p_dec );
664         if( p_es->p_dec_record )
665             input_DecoderWaitBuffering( p_es->p_dec_record );
666     }
667
668     msg_Dbg( p_sys->p_input, "Decoder buffering done in %d ms",
669               (int)(mdate() - i_decoder_buffering_start)/1000 );
670
671     /* Here is a good place to destroy unused vout with every demuxer */
672     input_resource_TerminateVout( p_sys->p_input->p->p_resource );
673
674     /* */
675     const mtime_t i_wakeup_delay = 10*1000; /* FIXME CLEANUP thread wake up time*/
676     const mtime_t i_current_date = p_sys->b_paused ? p_sys->i_pause_date : mdate();
677
678     input_clock_ChangeSystemOrigin( p_sys->p_pgrm->p_clock, i_current_date + i_wakeup_delay - i_buffering_duration );
679
680     for( int i = 0; i < p_sys->i_es; i++ )
681     {
682         es_out_id_t *p_es = p_sys->es[i];
683
684         if( !p_es->p_dec )
685             continue;
686
687         input_DecoderStopBuffering( p_es->p_dec );
688         if( p_es->p_dec_record )
689             input_DecoderStopBuffering( p_es->p_dec_record );
690     }
691 }
692 static void EsOutDecodersChangePause( es_out_t *out, bool b_paused, mtime_t i_date )
693 {
694     es_out_sys_t *p_sys = out->p_sys;
695
696     /* Pause decoders first */
697     for( int i = 0; i < p_sys->i_es; i++ )
698     {
699         es_out_id_t *es = p_sys->es[i];
700
701         if( es->p_dec )
702         {
703             input_DecoderChangePause( es->p_dec, b_paused, i_date );
704             if( es->p_dec_record )
705                 input_DecoderChangePause( es->p_dec_record, b_paused, i_date );
706         }
707     }
708 }
709 static void EsOutProgramChangePause( es_out_t *out, bool b_paused, mtime_t i_date )
710 {
711     es_out_sys_t *p_sys = out->p_sys;
712
713     for( int i = 0; i < p_sys->i_pgrm; i++ )
714         input_clock_ChangePause( p_sys->pgrm[i]->p_clock, b_paused, i_date );
715 }
716
717 static void EsOutDecoderChangeDelay( es_out_t *out, es_out_id_t *p_es )
718 {
719     es_out_sys_t *p_sys = out->p_sys;
720
721     mtime_t i_delay = 0;
722     if( p_es->fmt.i_cat == AUDIO_ES )
723         i_delay = p_sys->i_audio_delay;
724     else if( p_es->fmt.i_cat == SPU_ES )
725         i_delay = p_sys->i_spu_delay;
726
727     if( i_delay != 0 )
728     {
729         if( p_es->p_dec )
730             input_DecoderChangeDelay( p_es->p_dec, i_delay );
731         if( p_es->p_dec_record )
732             input_DecoderChangeDelay( p_es->p_dec_record, i_delay );
733     }
734 }
735 static void EsOutProgramsChangeRate( es_out_t *out )
736 {
737     es_out_sys_t      *p_sys = out->p_sys;
738
739     for( int i = 0; i < p_sys->i_pgrm; i++ )
740         input_clock_ChangeRate( p_sys->pgrm[i]->p_clock, p_sys->i_rate );
741 }
742
743 static void EsOutFrameNext( es_out_t *out )
744 {
745     es_out_sys_t *p_sys = out->p_sys;
746     es_out_id_t *p_es_video = NULL;
747
748     if( p_sys->b_buffering )
749     {
750         msg_Warn( p_sys->p_input, "buffering, ignoring 'frame next'" );
751         return;
752     }
753
754     assert( p_sys->b_paused );
755
756     for( int i = 0; i < p_sys->i_es; i++ )
757     {
758         es_out_id_t *p_es = p_sys->es[i];
759
760         if( p_es->fmt.i_cat == VIDEO_ES && p_es->p_dec )
761         {
762             p_es_video = p_es;
763             break;
764         }
765     }
766
767     if( !p_es_video )
768     {
769         msg_Warn( p_sys->p_input, "No video track selected, ignoring 'frame next'" );
770         return;
771     }
772
773     mtime_t i_duration;
774     input_DecoderFrameNext( p_es_video->p_dec, &i_duration );
775
776     msg_Dbg( out->p_sys->p_input, "EsOutFrameNext consummed %d ms", (int)(i_duration/1000) );
777
778     if( i_duration <= 0 )
779         i_duration = 40*1000;
780
781     /* FIXME it is not a clean way ? */
782     if( p_sys->i_buffering_extra_initial <= 0 )
783     {
784         mtime_t i_stream_start;
785         mtime_t i_system_start;
786         mtime_t i_stream_duration;
787         mtime_t i_system_duration;
788         int i_ret;
789
790         i_ret = input_clock_GetState( p_sys->p_pgrm->p_clock,
791                                       &i_stream_start, &i_system_start,
792                                       &i_stream_duration, &i_system_duration );
793         if( i_ret )
794             return;
795
796         p_sys->i_buffering_extra_initial = 1 + i_stream_duration - p_sys->i_pts_delay; /* FIXME < 0 ? */
797         p_sys->i_buffering_extra_system =
798         p_sys->i_buffering_extra_stream = p_sys->i_buffering_extra_initial;
799     }
800
801     const int i_rate = input_clock_GetRate( p_sys->p_pgrm->p_clock );
802
803     p_sys->b_buffering = true;
804     p_sys->i_buffering_extra_system += i_duration;
805     p_sys->i_buffering_extra_stream = p_sys->i_buffering_extra_initial +
806                                       ( p_sys->i_buffering_extra_system - p_sys->i_buffering_extra_initial ) *
807                                                 INPUT_RATE_DEFAULT / i_rate;
808
809     p_sys->i_preroll_end = -1;
810 }
811 static mtime_t EsOutGetBuffering( es_out_t *out )
812 {
813     es_out_sys_t *p_sys = out->p_sys;
814
815     if( !p_sys->p_pgrm )
816         return 0;
817
818     int i_ret;
819     mtime_t i_stream_start;
820     mtime_t i_system_start;
821     mtime_t i_stream_duration;
822     mtime_t i_system_duration;
823     i_ret = input_clock_GetState( p_sys->p_pgrm->p_clock,
824                                   &i_stream_start, &i_system_start,
825                                   &i_stream_duration, &i_system_duration );
826
827     if( i_ret )
828         return 0;
829
830     mtime_t i_delay;
831
832     if( p_sys->b_buffering && p_sys->i_buffering_extra_initial <= 0 )
833     {
834         i_delay = i_stream_duration;
835     }
836     else
837     {
838         mtime_t i_system_duration;
839         if( p_sys->b_paused )
840         {
841             i_system_duration = p_sys->i_pause_date  - i_system_start;
842             if( p_sys->i_buffering_extra_initial > 0 )
843                 i_system_duration += p_sys->i_buffering_extra_system - p_sys->i_buffering_extra_initial;
844         }
845         else
846         {
847             i_system_duration = mdate() - i_system_start;
848         }
849
850         const mtime_t i_consumed = i_system_duration * INPUT_RATE_DEFAULT / p_sys->i_rate - i_stream_duration;
851         i_delay = p_sys->i_pts_delay - i_consumed;
852     }
853     if( i_delay < 0 )
854         return 0;
855     return i_delay;
856 }
857
858 static void EsOutESVarUpdateGeneric( es_out_t *out, int i_id,
859                                      const es_format_t *fmt, const char *psz_language,
860                                      bool b_delete )
861 {
862     es_out_sys_t      *p_sys = out->p_sys;
863     input_thread_t    *p_input = p_sys->p_input;
864     vlc_value_t       val, text;
865
866     if( b_delete )
867     {
868         if( EsFmtIsTeletext( fmt ) )
869             input_SendEventTeletextDel( p_sys->p_input, i_id );
870
871         input_SendEventEsDel( p_input, fmt->i_cat, i_id );
872         return;
873     }
874
875     /* Get the number of ES already added */
876     const char *psz_var;
877     if( fmt->i_cat == AUDIO_ES )
878         psz_var = "audio-es";
879     else if( fmt->i_cat == VIDEO_ES )
880         psz_var = "video-es";
881     else
882         psz_var = "spu-es";
883
884     var_Change( p_input, psz_var, VLC_VAR_CHOICESCOUNT, &val, NULL );
885     if( val.i_int == 0 )
886     {
887         vlc_value_t val2;
888
889         /* First one, we need to add the "Disable" choice */
890         val2.i_int = -1; text.psz_string = _("Disable");
891         var_Change( p_input, psz_var, VLC_VAR_ADDCHOICE, &val2, &text );
892         val.i_int++;
893     }
894
895     /* Take care of the ES description */
896     if( fmt->psz_description && *fmt->psz_description )
897     {
898         if( psz_language && *psz_language )
899         {
900             text.psz_string = malloc( strlen( fmt->psz_description) +
901                                       strlen( psz_language ) + 10 );
902             sprintf( text.psz_string, "%s - [%s]", fmt->psz_description,
903                                                    psz_language );
904         }
905         else text.psz_string = strdup( fmt->psz_description );
906     }
907     else
908     {
909         if( psz_language && *psz_language )
910         {
911             if( asprintf( &text.psz_string, "%s %i - [%s]", _( "Track" ), val.i_int, psz_language ) == -1 )
912                 text.psz_string = NULL;
913         }
914         else
915         {
916             if( asprintf( &text.psz_string, "%s %i", _( "Track" ), val.i_int ) == -1 )
917                 text.psz_string = NULL;
918         }
919     }
920
921     input_SendEventEsAdd( p_input, fmt->i_cat, i_id, text.psz_string );
922     if( EsFmtIsTeletext( fmt ) )
923     {
924         char psz_page[3+1];
925         snprintf( psz_page, sizeof(psz_page), "%d%2.2x",
926                   fmt->subs.teletext.i_magazine,
927                   fmt->subs.teletext.i_page );
928         input_SendEventTeletextAdd( p_sys->p_input,
929                                     i_id, fmt->subs.teletext.i_magazine >= 0 ? psz_page : NULL );
930     }
931
932     free( text.psz_string );
933 }
934
935 static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es,
936                               bool b_delete )
937 {
938     EsOutESVarUpdateGeneric( out, es->i_id, &es->fmt, es->psz_language, b_delete );
939 }
940
941 /* EsOutProgramSelect:
942  *  Select a program and update the object variable
943  */
944 static void EsOutProgramSelect( es_out_t *out, es_out_pgrm_t *p_pgrm )
945 {
946     es_out_sys_t      *p_sys = out->p_sys;
947     input_thread_t    *p_input = p_sys->p_input;
948     int               i;
949
950     if( p_sys->p_pgrm == p_pgrm )
951         return; /* Nothing to do */
952
953     if( p_sys->p_pgrm )
954     {
955         es_out_pgrm_t *old = p_sys->p_pgrm;
956         msg_Dbg( p_input, "unselecting program id=%d", old->i_id );
957
958         for( i = 0; i < p_sys->i_es; i++ )
959         {
960             if( p_sys->es[i]->p_pgrm == old && EsIsSelected( p_sys->es[i] ) &&
961                 p_sys->i_mode != ES_OUT_MODE_ALL )
962                 EsUnselect( out, p_sys->es[i], true );
963         }
964
965         p_sys->p_es_audio = NULL;
966         p_sys->p_es_sub = NULL;
967         p_sys->p_es_video = NULL;
968     }
969
970     msg_Dbg( p_input, "selecting program id=%d", p_pgrm->i_id );
971
972     /* Mark it selected */
973     p_pgrm->b_selected = true;
974
975     /* Switch master stream */
976     p_sys->p_pgrm = p_pgrm;
977
978     /* Update "program" */
979     input_SendEventProgramSelect( p_input, p_pgrm->i_id );
980
981     /* Update "es-*" */
982     input_SendEventEsDel( p_input, AUDIO_ES, -1 );
983     input_SendEventEsDel( p_input, VIDEO_ES, -1 );
984     input_SendEventEsDel( p_input, SPU_ES, -1 );
985     input_SendEventTeletextDel( p_input, -1 );
986     input_SendEventProgramScrambled( p_input, p_pgrm->i_id, p_pgrm->b_scrambled );
987
988     /* TODO event */
989     var_SetInteger( p_input, "teletext-es", -1 );
990
991     for( i = 0; i < p_sys->i_es; i++ )
992     {
993         if( p_sys->es[i]->p_pgrm == p_sys->p_pgrm )
994             EsOutESVarUpdate( out, p_sys->es[i], false );
995         EsOutSelect( out, p_sys->es[i], false );
996     }
997
998     /* Update now playing */
999     input_item_SetNowPlaying( p_input->p->p_item, p_pgrm->psz_now_playing );
1000     input_item_SetPublisher( p_input->p->p_item, p_pgrm->psz_publisher );
1001
1002     input_SendEventMeta( p_input );
1003 }
1004
1005 /* EsOutAddProgram:
1006  *  Add a program
1007  */
1008 static es_out_pgrm_t *EsOutProgramAdd( es_out_t *out, int i_group )
1009 {
1010     es_out_sys_t      *p_sys = out->p_sys;
1011     input_thread_t    *p_input = p_sys->p_input;
1012
1013     es_out_pgrm_t *p_pgrm = malloc( sizeof( es_out_pgrm_t ) );
1014     if( !p_pgrm )
1015         return NULL;
1016
1017     /* Init */
1018     p_pgrm->i_id = i_group;
1019     p_pgrm->i_es = 0;
1020     p_pgrm->b_selected = false;
1021     p_pgrm->b_scrambled = false;
1022     p_pgrm->psz_name = NULL;
1023     p_pgrm->psz_now_playing = NULL;
1024     p_pgrm->psz_publisher = NULL;
1025     p_pgrm->p_epg = NULL;
1026     p_pgrm->p_clock = input_clock_New( p_sys->i_rate );
1027     if( !p_pgrm->p_clock )
1028     {
1029         free( p_pgrm );
1030         return NULL;
1031     }
1032     input_clock_SetJitter( p_pgrm->p_clock, p_sys->i_pts_delay, p_sys->i_cr_average );
1033
1034
1035     /* Append it */
1036     TAB_APPEND( p_sys->i_pgrm, p_sys->pgrm, p_pgrm );
1037
1038     /* Update "program" variable */
1039     input_SendEventProgramAdd( p_input, i_group, NULL );
1040
1041     if( i_group == var_GetInteger( p_input, "program" ) )
1042         EsOutProgramSelect( out, p_pgrm );
1043
1044     return p_pgrm;
1045 }
1046
1047 /* EsOutDelProgram:
1048  *  Delete a program
1049  */
1050 static int EsOutProgramDel( es_out_t *out, int i_group )
1051 {
1052     es_out_sys_t      *p_sys = out->p_sys;
1053     input_thread_t    *p_input = p_sys->p_input;
1054     es_out_pgrm_t     *p_pgrm = NULL;
1055     int               i;
1056
1057     for( i = 0; i < p_sys->i_pgrm; i++ )
1058     {
1059         if( p_sys->pgrm[i]->i_id == i_group )
1060         {
1061             p_pgrm = p_sys->pgrm[i];
1062             break;
1063         }
1064     }
1065
1066     if( p_pgrm == NULL )
1067         return VLC_EGENERIC;
1068
1069     if( p_pgrm->i_es )
1070     {
1071         msg_Dbg( p_input, "can't delete program %d which still has %i ES",
1072                  i_group, p_pgrm->i_es );
1073         return VLC_EGENERIC;
1074     }
1075
1076     TAB_REMOVE( p_sys->i_pgrm, p_sys->pgrm, p_pgrm );
1077
1078     /* If program is selected we need to unselect it */
1079     if( p_sys->p_pgrm == p_pgrm )
1080         p_sys->p_pgrm = NULL;
1081
1082     input_clock_Delete( p_pgrm->p_clock );
1083
1084     free( p_pgrm->psz_name );
1085     free( p_pgrm->psz_now_playing );
1086     free( p_pgrm->psz_publisher );
1087     if( p_pgrm->p_epg )
1088         vlc_epg_Delete( p_pgrm->p_epg );
1089     free( p_pgrm );
1090
1091     /* Update "program" variable */
1092     input_SendEventProgramDel( p_input, i_group );
1093
1094     return VLC_SUCCESS;
1095 }
1096
1097 /* EsOutProgramFind
1098  */
1099 static es_out_pgrm_t *EsOutProgramFind( es_out_t *p_out, int i_group )
1100 {
1101     es_out_sys_t *p_sys = p_out->p_sys;
1102
1103     for( int i = 0; i < p_sys->i_pgrm; i++ )
1104     {
1105         if( p_sys->pgrm[i]->i_id == i_group )
1106             return p_sys->pgrm[i];
1107     }
1108     return EsOutProgramAdd( p_out, i_group );
1109 }
1110
1111 /* EsOutProgramMeta:
1112  */
1113 static char *EsOutProgramGetMetaName( es_out_pgrm_t *p_pgrm )
1114 {
1115     char *psz = NULL;
1116     if( p_pgrm->psz_name )
1117     {
1118         if( asprintf( &psz, _("%s [%s %d]"), p_pgrm->psz_name, _("Program"), p_pgrm->i_id ) == -1 )
1119             return NULL;
1120     }
1121     else
1122     {
1123         if( asprintf( &psz, "%s %d", _("Program"), p_pgrm->i_id ) == -1 )
1124             return NULL;
1125     }
1126     return psz;
1127 }
1128
1129 static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
1130 {
1131     es_out_sys_t      *p_sys = out->p_sys;
1132     es_out_pgrm_t     *p_pgrm;
1133     input_thread_t    *p_input = p_sys->p_input;
1134     char              *psz_cat;
1135     const char        *psz_title = NULL;
1136     const char        *psz_provider = NULL;
1137     int i;
1138
1139     msg_Dbg( p_input, "EsOutProgramMeta: number=%d", i_group );
1140
1141     /* Check against empty meta data (empty for what we handle) */
1142     if( !vlc_meta_Get( p_meta, vlc_meta_Title) &&
1143         !vlc_meta_Get( p_meta, vlc_meta_NowPlaying) &&
1144         !vlc_meta_Get( p_meta, vlc_meta_Publisher) &&
1145         vlc_dictionary_keys_count( &p_meta->extra_tags ) <= 0 )
1146     {
1147         return;
1148     }
1149     /* Find program */
1150     p_pgrm = EsOutProgramFind( out, i_group );
1151     if( !p_pgrm )
1152         return;
1153
1154     /* */
1155     psz_title = vlc_meta_Get( p_meta, vlc_meta_Title);
1156     psz_provider = vlc_meta_Get( p_meta, vlc_meta_Publisher);
1157
1158     /* Update the description text of the program */
1159     if( psz_title && *psz_title )
1160     {
1161         if( !p_pgrm->psz_name || strcmp( p_pgrm->psz_name, psz_title ) )
1162         {
1163             char *psz_cat = EsOutProgramGetMetaName( p_pgrm );
1164
1165             /* Remove old entries */
1166             input_Control( p_input, INPUT_DEL_INFO, psz_cat, NULL );
1167             /* TODO update epg name ?
1168              * TODO update scrambled info name ? */
1169             free( psz_cat );
1170         }
1171         free( p_pgrm->psz_name );
1172         p_pgrm->psz_name = strdup( psz_title );
1173
1174         char *psz_text;
1175         if( psz_provider && *psz_provider )
1176         {
1177             if( asprintf( &psz_text, "%s [%s]", psz_title, psz_provider ) < 0 )
1178                 psz_text = NULL;
1179         }
1180         else
1181         {
1182             psz_text = strdup( psz_title );
1183         }
1184
1185         /* ugly but it works */
1186         if( psz_text )
1187         {
1188             input_SendEventProgramDel( p_input, i_group );
1189             input_SendEventProgramAdd( p_input, i_group, psz_text );
1190
1191             free( psz_text );
1192         }
1193     }
1194
1195     psz_cat = EsOutProgramGetMetaName( p_pgrm );
1196     if( psz_provider )
1197     {
1198         if( p_sys->p_pgrm == p_pgrm )
1199         {
1200             input_item_SetPublisher( p_input->p->p_item, psz_provider );
1201             input_SendEventMeta( p_input );
1202         }
1203         input_Control( p_input, INPUT_ADD_INFO, psz_cat, input_MetaTypeToLocalizedString(vlc_meta_Publisher), psz_provider );
1204     }
1205     char ** ppsz_all_keys = vlc_dictionary_all_keys( &p_meta->extra_tags );
1206     for( i = 0; ppsz_all_keys[i]; i++ )
1207     {
1208         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _(ppsz_all_keys[i]),
1209                        vlc_dictionary_value_for_key( &p_meta->extra_tags, ppsz_all_keys[i] ) );
1210         free( ppsz_all_keys[i] );
1211     }
1212     free( ppsz_all_keys );
1213
1214     free( psz_cat );
1215 }
1216
1217 static void vlc_epg_Merge( vlc_epg_t *p_dst, const vlc_epg_t *p_src )
1218 {
1219     int i;
1220
1221     /* Add new event */
1222     for( i = 0; i < p_src->i_event; i++ )
1223     {
1224         vlc_epg_event_t *p_evt = p_src->pp_event[i];
1225         bool b_add = true;
1226         int j;
1227
1228         for( j = 0; j < p_dst->i_event; j++ )
1229         {
1230             if( p_dst->pp_event[j]->i_start == p_evt->i_start && p_dst->pp_event[j]->i_duration == p_evt->i_duration )
1231             {
1232                 b_add = false;
1233                 break;
1234             }
1235             if( p_dst->pp_event[j]->i_start > p_evt->i_start )
1236                 break;
1237         }
1238         if( b_add )
1239         {
1240             vlc_epg_event_t *p_copy = calloc( 1, sizeof(vlc_epg_event_t) );
1241             if( !p_copy )
1242                 break;
1243             p_copy->i_start = p_evt->i_start;
1244             p_copy->i_duration = p_evt->i_duration;
1245             p_copy->psz_name = p_evt->psz_name ? strdup( p_evt->psz_name ) : NULL;
1246             p_copy->psz_short_description = p_evt->psz_short_description ? strdup( p_evt->psz_short_description ) : NULL;
1247             p_copy->psz_description = p_evt->psz_description ? strdup( p_evt->psz_description ) : NULL;
1248             TAB_INSERT( p_dst->i_event, p_dst->pp_event, p_copy, j );
1249         }
1250     }
1251     /* Update current */
1252     if( p_src->p_current )
1253         vlc_epg_SetCurrent( p_dst, p_src->p_current->i_start );
1254
1255     /* Keep only 1 old event  */
1256     if( p_dst->p_current )
1257     {
1258         while( p_dst->i_event > 1 && p_dst->pp_event[0] != p_dst->p_current && p_dst->pp_event[1] != p_dst->p_current )
1259             TAB_REMOVE( p_dst->i_event, p_dst->pp_event, p_dst->pp_event[0] );
1260     }
1261 }
1262
1263 static void EsOutProgramEpg( es_out_t *out, int i_group, vlc_epg_t *p_epg )
1264 {
1265     es_out_sys_t      *p_sys = out->p_sys;
1266     input_thread_t    *p_input = p_sys->p_input;
1267     es_out_pgrm_t     *p_pgrm;
1268     char *psz_cat;
1269     int i;
1270
1271     /* Find program */
1272     p_pgrm = EsOutProgramFind( out, i_group );
1273     if( !p_pgrm )
1274         return;
1275
1276     /* Merge EPG */
1277     if( !p_pgrm->p_epg )
1278         p_pgrm->p_epg = vlc_epg_New( p_pgrm->psz_name );
1279     vlc_epg_Merge( p_pgrm->p_epg, p_epg );
1280
1281     /* Update info */
1282     psz_cat = EsOutProgramGetMetaName( p_pgrm );
1283 #ifdef HAVE_LOCALTIME_R
1284     char *psz_epg;
1285     if( asprintf( &psz_epg, "EPG %s", psz_cat ) == -1 )
1286         psz_epg = NULL;
1287     input_Control( p_input, INPUT_DEL_INFO, psz_epg, NULL );
1288     msg_Dbg( p_input, "EsOutProgramEpg: number=%d name=%s", i_group, p_pgrm->p_epg->psz_name );
1289     for( i = 0; i < p_pgrm->p_epg->i_event; i++ )
1290     {
1291         const vlc_epg_event_t *p_evt = p_pgrm->p_epg->pp_event[i];
1292         time_t t_start = (time_t)p_evt->i_start;
1293         struct tm tm_start;
1294         char psz_start[128];
1295
1296         localtime_r( &t_start, &tm_start );
1297
1298         snprintf( psz_start, sizeof(psz_start), "%4.4d-%2.2d-%2.2d %2.2d:%2.2d:%2.2d",
1299                   1900 + tm_start.tm_year, 1 + tm_start.tm_mon, tm_start.tm_mday,
1300                   tm_start.tm_hour, tm_start.tm_min, tm_start.tm_sec );
1301         if( p_evt->psz_short_description || p_evt->psz_description )
1302             input_Control( p_input, INPUT_ADD_INFO, psz_epg, psz_start, "%s (%2.2d:%2.2d) - %s",
1303                            p_evt->psz_name,
1304                            p_evt->i_duration/60/60, (p_evt->i_duration/60)%60,
1305                            p_evt->psz_short_description ? p_evt->psz_short_description : p_evt->psz_description );
1306         else
1307             input_Control( p_input, INPUT_ADD_INFO, psz_epg, psz_start, "%s (%2.2d:%2.2d)",
1308                            p_evt->psz_name,
1309                            p_evt->i_duration/60/60, (p_evt->i_duration/60)%60 );
1310     }
1311     free( psz_epg );
1312 #endif
1313     /* Update now playing */
1314     free( p_pgrm->psz_now_playing );
1315     p_pgrm->psz_now_playing = NULL;
1316     if( p_pgrm->p_epg->p_current && p_pgrm->p_epg->p_current->psz_name && *p_pgrm->p_epg->p_current->psz_name )
1317         p_pgrm->psz_now_playing = strdup( p_pgrm->p_epg->p_current->psz_name );
1318
1319     if( p_pgrm == p_sys->p_pgrm )
1320     {
1321         input_item_SetNowPlaying( p_input->p->p_item, p_pgrm->psz_now_playing );
1322         input_SendEventMeta( p_input );
1323     }
1324
1325     if( p_pgrm->psz_now_playing )
1326     {
1327         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1328             input_MetaTypeToLocalizedString(vlc_meta_NowPlaying),
1329             p_pgrm->psz_now_playing );
1330     }
1331     else
1332     {
1333         input_Control( p_input, INPUT_DEL_INFO, psz_cat,
1334             input_MetaTypeToLocalizedString(vlc_meta_NowPlaying) );
1335     }
1336
1337     free( psz_cat );
1338 }
1339
1340 static void EsOutProgramUpdateScrambled( es_out_t *p_out, es_out_pgrm_t *p_pgrm )
1341 {
1342     es_out_sys_t    *p_sys = p_out->p_sys;
1343     input_thread_t  *p_input = p_sys->p_input;
1344     bool b_scrambled = false;
1345
1346     for( int i = 0; i < p_sys->i_es; i++ )
1347     {
1348         if( p_sys->es[i]->p_pgrm == p_pgrm && p_sys->es[i]->b_scrambled )
1349         {
1350             b_scrambled = true;
1351             break;
1352         }
1353     }
1354     if( !p_pgrm->b_scrambled == !b_scrambled )
1355         return;
1356
1357     p_pgrm->b_scrambled = b_scrambled;
1358     char *psz_cat = EsOutProgramGetMetaName( p_pgrm );
1359
1360     if( b_scrambled )
1361         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Scrambled"), _("Yes") );
1362     else
1363         input_Control( p_input, INPUT_DEL_INFO, psz_cat, _("Scrambled") );
1364
1365     input_SendEventProgramScrambled( p_input, p_pgrm->i_id, b_scrambled );
1366 }
1367
1368 /* EsOutAdd:
1369  *  Add an es_out
1370  */
1371 static es_out_id_t *EsOutAdd( es_out_t *out, const es_format_t *fmt )
1372 {
1373     es_out_sys_t      *p_sys = out->p_sys;
1374     input_thread_t    *p_input = p_sys->p_input;
1375
1376     if( fmt->i_group < 0 )
1377     {
1378         msg_Err( p_input, "invalid group number" );
1379         return NULL;
1380     }
1381
1382     es_out_id_t   *es = malloc( sizeof( *es ) );
1383     es_out_pgrm_t *p_pgrm;
1384     int i;
1385
1386     if( !es )
1387         return NULL;
1388
1389     vlc_mutex_lock( &p_sys->lock );
1390
1391     /* Search the program */
1392     p_pgrm = EsOutProgramFind( out, fmt->i_group );
1393     if( !p_pgrm )
1394     {
1395         vlc_mutex_unlock( &p_sys->lock );
1396         free( es );
1397         return NULL;
1398     }
1399
1400     /* Increase ref count for program */
1401     p_pgrm->i_es++;
1402
1403     /* Set up ES */
1404     es->p_pgrm = p_pgrm;
1405     es_format_Copy( &es->fmt, fmt );
1406     if( es->fmt.i_id < 0 )
1407         es->fmt.i_id = out->p_sys->i_id;
1408     es->i_id = es->fmt.i_id;
1409     es->i_meta_id = out->p_sys->i_id;
1410     es->b_scrambled = false;
1411
1412     switch( es->fmt.i_cat )
1413     {
1414     case AUDIO_ES:
1415     {
1416         audio_replay_gain_t rg;
1417
1418         es->i_channel = p_sys->i_audio;
1419
1420         memset( &rg, 0, sizeof(rg) );
1421         vlc_mutex_lock( &p_input->p->p_item->lock );
1422         vlc_audio_replay_gain_MergeFromMeta( &rg, p_input->p->p_item->p_meta );
1423         vlc_mutex_unlock( &p_input->p->p_item->lock );
1424
1425         for( i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
1426         {
1427             if( !es->fmt.audio_replay_gain.pb_peak[i] )
1428             {
1429                 es->fmt.audio_replay_gain.pb_peak[i] = rg.pb_peak[i];
1430                 es->fmt.audio_replay_gain.pf_peak[i] = rg.pf_peak[i];
1431             }
1432             if( !es->fmt.audio_replay_gain.pb_gain[i] )
1433             {
1434                 es->fmt.audio_replay_gain.pb_gain[i] = rg.pb_gain[i];
1435                 es->fmt.audio_replay_gain.pf_gain[i] = rg.pf_gain[i];
1436             }
1437         }
1438         break;
1439     }
1440
1441     case VIDEO_ES:
1442         es->i_channel = p_sys->i_video;
1443         if( es->fmt.video.i_frame_rate && es->fmt.video.i_frame_rate_base )
1444             vlc_ureduce( &es->fmt.video.i_frame_rate,
1445                          &es->fmt.video.i_frame_rate_base,
1446                          es->fmt.video.i_frame_rate,
1447                          es->fmt.video.i_frame_rate_base, 0 );
1448         break;
1449
1450     case SPU_ES:
1451         es->i_channel = p_sys->i_sub;
1452         break;
1453
1454     default:
1455         es->i_channel = 0;
1456         break;
1457     }
1458     es->psz_language = LanguageGetName( es->fmt.psz_language ); /* remember so we only need to do it once */
1459     es->psz_language_code = LanguageGetCode( es->fmt.psz_language );
1460     es->p_dec = NULL;
1461     es->p_dec_record = NULL;
1462     for( i = 0; i < 4; i++ )
1463         es->pb_cc_present[i] = false;
1464     es->p_master = NULL;
1465
1466     if( es->p_pgrm == p_sys->p_pgrm )
1467         EsOutESVarUpdate( out, es, false );
1468
1469     /* Select it if needed */
1470     EsOutSelect( out, es, false );
1471
1472
1473     TAB_APPEND( out->p_sys->i_es, out->p_sys->es, es );
1474     p_sys->i_id++;  /* always incremented */
1475     switch( es->fmt.i_cat )
1476     {
1477         case AUDIO_ES:
1478             p_sys->i_audio++;
1479             break;
1480         case SPU_ES:
1481             p_sys->i_sub++;
1482             break;
1483         case VIDEO_ES:
1484             p_sys->i_video++;
1485             break;
1486     }
1487
1488     EsOutUpdateInfo( out, es, &es->fmt, NULL );
1489
1490     if( es->b_scrambled )
1491         EsOutProgramUpdateScrambled( out, es->p_pgrm );
1492
1493     vlc_mutex_unlock( &p_sys->lock );
1494
1495     return es;
1496 }
1497
1498 static bool EsIsSelected( es_out_id_t *es )
1499 {
1500     if( es->p_master )
1501     {
1502         bool b_decode = false;
1503         if( es->p_master->p_dec )
1504         {
1505             int i_channel = EsOutGetClosedCaptionsChannel( es->fmt.i_codec );
1506             if( i_channel != -1 )
1507                 input_DecoderGetCcState( es->p_master->p_dec, &b_decode, i_channel );
1508         }
1509         return b_decode;
1510     }
1511     else
1512     {
1513         return es->p_dec != NULL;
1514     }
1515 }
1516 static void EsCreateDecoder( es_out_t *out, es_out_id_t *p_es )
1517 {
1518     es_out_sys_t   *p_sys = out->p_sys;
1519     input_thread_t *p_input = p_sys->p_input;
1520
1521     p_es->p_dec = input_DecoderNew( p_input, &p_es->fmt, p_es->p_pgrm->p_clock, p_input->p->p_sout );
1522     if( p_es->p_dec )
1523     {
1524         if( p_sys->b_buffering )
1525             input_DecoderStartBuffering( p_es->p_dec );
1526
1527         if( !p_es->p_master && p_sys->p_sout_record )
1528         {
1529             p_es->p_dec_record = input_DecoderNew( p_input, &p_es->fmt, p_es->p_pgrm->p_clock, p_sys->p_sout_record );
1530             if( p_es->p_dec_record && p_sys->b_buffering )
1531                 input_DecoderStartBuffering( p_es->p_dec_record );
1532         }
1533     }
1534
1535     EsOutDecoderChangeDelay( out, p_es );
1536 }
1537 static void EsDestroyDecoder( es_out_t *out, es_out_id_t *p_es )
1538 {
1539     VLC_UNUSED(out);
1540
1541     if( !p_es->p_dec )
1542         return;
1543
1544     input_DecoderDelete( p_es->p_dec );
1545     p_es->p_dec = NULL;
1546
1547     if( p_es->p_dec_record )
1548     {
1549         input_DecoderDelete( p_es->p_dec_record );
1550         p_es->p_dec_record = NULL;
1551     }
1552 }
1553
1554 static void EsSelect( es_out_t *out, es_out_id_t *es )
1555 {
1556     es_out_sys_t   *p_sys = out->p_sys;
1557     input_thread_t *p_input = p_sys->p_input;
1558
1559     if( EsIsSelected( es ) )
1560     {
1561         msg_Warn( p_input, "ES 0x%x is already selected", es->i_id );
1562         return;
1563     }
1564
1565     if( es->p_master )
1566     {
1567         int i_channel;
1568         if( !es->p_master->p_dec )
1569             return;
1570
1571         i_channel = EsOutGetClosedCaptionsChannel( es->fmt.i_codec );
1572         if( i_channel == -1 || input_DecoderSetCcState( es->p_master->p_dec, true, i_channel ) )
1573             return;
1574     }
1575     else
1576     {
1577         if( es->fmt.i_cat == VIDEO_ES || es->fmt.i_cat == SPU_ES )
1578         {
1579             if( !var_GetBool( p_input, out->b_sout ? "sout-video" : "video" ) )
1580             {
1581                 msg_Dbg( p_input, "video is disabled, not selecting ES 0x%x",
1582                          es->i_id );
1583                 return;
1584             }
1585         }
1586         else if( es->fmt.i_cat == AUDIO_ES )
1587         {
1588             if( !var_GetBool( p_input, out->b_sout ? "sout-audio" : "audio" ) )
1589             {
1590                 msg_Dbg( p_input, "audio is disabled, not selecting ES 0x%x",
1591                          es->i_id );
1592                 return;
1593             }
1594         }
1595         if( es->fmt.i_cat == SPU_ES )
1596         {
1597             if( !var_GetBool( p_input, out->b_sout ? "sout-spu" : "spu" ) )
1598             {
1599                 msg_Dbg( p_input, "spu is disabled, not selecting ES 0x%x",
1600                          es->i_id );
1601                 return;
1602             }
1603         }
1604
1605         EsCreateDecoder( out, es );
1606
1607         if( es->p_dec == NULL || es->p_pgrm != p_sys->p_pgrm )
1608             return;
1609     }
1610
1611     /* Mark it as selected */
1612     input_SendEventEsSelect( p_input, es->fmt.i_cat, es->i_id );
1613     input_SendEventTeletextSelect( p_input, EsFmtIsTeletext( &es->fmt ) ? es->i_id : -1 );
1614 }
1615
1616 static void EsUnselect( es_out_t *out, es_out_id_t *es, bool b_update )
1617 {
1618     es_out_sys_t   *p_sys = out->p_sys;
1619     input_thread_t *p_input = p_sys->p_input;
1620
1621     if( !EsIsSelected( es ) )
1622     {
1623         msg_Warn( p_input, "ES 0x%x is already unselected", es->i_id );
1624         return;
1625     }
1626
1627     if( es->p_master )
1628     {
1629         if( es->p_master->p_dec )
1630         {
1631             int i_channel = EsOutGetClosedCaptionsChannel( es->fmt.i_codec );
1632             if( i_channel != -1 )
1633                 input_DecoderSetCcState( es->p_master->p_dec, false, i_channel );
1634         }
1635     }
1636     else
1637     {
1638         const int i_spu_id = var_GetInteger( p_input, "spu-es");
1639         int i;
1640         for( i = 0; i < 4; i++ )
1641         {
1642             if( !es->pb_cc_present[i] || !es->pp_cc_es[i] )
1643                 continue;
1644
1645             if( i_spu_id == es->pp_cc_es[i]->i_id )
1646             {
1647                 /* Force unselection of the CC */
1648                 input_SendEventEsSelect( p_input, SPU_ES, -1 );
1649             }
1650             EsOutDel( out, es->pp_cc_es[i] );
1651
1652             es->pb_cc_present[i] = false;
1653         }
1654         EsDestroyDecoder( out, es );
1655     }
1656
1657     if( !b_update )
1658         return;
1659
1660     /* Mark it as unselected */
1661     input_SendEventEsSelect( p_input, es->fmt.i_cat, -1 );
1662     if( EsFmtIsTeletext( &es->fmt ) )
1663         input_SendEventTeletextSelect( p_input, -1 );
1664 }
1665
1666 /**
1667  * Select an ES given the current mode
1668  * XXX: you need to take a the lock before (stream.stream_lock)
1669  *
1670  * \param out The es_out structure
1671  * \param es es_out_id structure
1672  * \param b_force ...
1673  * \return nothing
1674  */
1675 static void EsOutSelect( es_out_t *out, es_out_id_t *es, bool b_force )
1676 {
1677     es_out_sys_t      *p_sys = out->p_sys;
1678
1679     int i_cat = es->fmt.i_cat;
1680
1681     if( !p_sys->b_active ||
1682         ( !b_force && es->fmt.i_priority < 0 ) )
1683     {
1684         return;
1685     }
1686
1687     if( p_sys->i_mode == ES_OUT_MODE_ALL || b_force )
1688     {
1689         if( !EsIsSelected( es ) )
1690             EsSelect( out, es );
1691     }
1692     else if( p_sys->i_mode == ES_OUT_MODE_PARTIAL )
1693     {
1694         vlc_value_t val;
1695         int i;
1696         var_Get( p_sys->p_input, "programs", &val );
1697         for ( i = 0; i < val.p_list->i_count; i++ )
1698         {
1699             if ( val.p_list->p_values[i].i_int == es->p_pgrm->i_id || b_force )
1700             {
1701                 if( !EsIsSelected( es ) )
1702                     EsSelect( out, es );
1703                 break;
1704             }
1705         }
1706         var_Change( p_sys->p_input, "programs", VLC_VAR_FREELIST, &val, NULL );
1707     }
1708     else if( p_sys->i_mode == ES_OUT_MODE_AUTO )
1709     {
1710         int i_wanted  = -1;
1711
1712         if( es->p_pgrm != p_sys->p_pgrm )
1713             return;
1714
1715         if( i_cat == AUDIO_ES )
1716         {
1717             int idx1 = LanguageArrayIndex( p_sys->ppsz_audio_language,
1718                                      es->psz_language_code );
1719
1720             if( p_sys->p_es_audio &&
1721                 p_sys->p_es_audio->fmt.i_priority >= es->fmt.i_priority )
1722             {
1723                 int idx2 = LanguageArrayIndex( p_sys->ppsz_audio_language,
1724                                          p_sys->p_es_audio->psz_language_code );
1725
1726                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
1727                     return;
1728                 i_wanted = es->i_channel;
1729             }
1730             else
1731             {
1732                 /* Select audio if (no audio selected yet)
1733                  * - no audio-language
1734                  * - no audio code for the ES
1735                  * - audio code in the requested list */
1736                 if( idx1 >= 0 ||
1737                     !strcmp( es->psz_language_code, "??" ) ||
1738                     !p_sys->ppsz_audio_language )
1739                     i_wanted = es->i_channel;
1740             }
1741
1742             if( p_sys->i_audio_last >= 0 )
1743                 i_wanted = p_sys->i_audio_last;
1744
1745             if( p_sys->i_audio_id >= 0 )
1746             {
1747                 if( es->i_id == p_sys->i_audio_id )
1748                     i_wanted = es->i_channel;
1749                 else
1750                     return;
1751             }
1752         }
1753         else if( i_cat == SPU_ES )
1754         {
1755             int idx1 = LanguageArrayIndex( p_sys->ppsz_sub_language,
1756                                      es->psz_language_code );
1757
1758             if( p_sys->p_es_sub &&
1759                 p_sys->p_es_sub->fmt.i_priority >= es->fmt.i_priority )
1760             {
1761                 int idx2 = LanguageArrayIndex( p_sys->ppsz_sub_language,
1762                                          p_sys->p_es_sub->psz_language_code );
1763
1764                 msg_Dbg( p_sys->p_input, "idx1=%d(%s) idx2=%d(%s)",
1765                         idx1, es->psz_language_code, idx2,
1766                         p_sys->p_es_sub->psz_language_code );
1767
1768                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
1769                     return;
1770                 /* We found a SPU that matches our language request */
1771                 i_wanted  = es->i_channel;
1772             }
1773             else if( idx1 >= 0 )
1774             {
1775                 msg_Dbg( p_sys->p_input, "idx1=%d(%s)",
1776                         idx1, es->psz_language_code );
1777
1778                 i_wanted  = es->i_channel;
1779             }
1780             else if( p_sys->i_default_sub_id >= 0 )
1781             {
1782                 if( es->i_id == p_sys->i_default_sub_id )
1783                     i_wanted = es->i_channel;
1784             }
1785
1786             if( p_sys->i_sub_last >= 0 )
1787                 i_wanted  = p_sys->i_sub_last;
1788
1789             if( p_sys->i_sub_id >= 0 )
1790             {
1791                 if( es->i_id == p_sys->i_sub_id )
1792                     i_wanted = es->i_channel;
1793                 else
1794                     return;
1795             }
1796         }
1797         else if( i_cat == VIDEO_ES )
1798         {
1799             i_wanted  = es->i_channel;
1800         }
1801
1802         if( i_wanted == es->i_channel && !EsIsSelected( es ) )
1803             EsSelect( out, es );
1804     }
1805
1806     /* FIXME TODO handle priority here */
1807     if( EsIsSelected( es ) )
1808     {
1809         if( i_cat == AUDIO_ES )
1810         {
1811             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
1812                 p_sys->p_es_audio &&
1813                 p_sys->p_es_audio != es &&
1814                 EsIsSelected( p_sys->p_es_audio ) )
1815             {
1816                 EsUnselect( out, p_sys->p_es_audio, false );
1817             }
1818             p_sys->p_es_audio = es;
1819         }
1820         else if( i_cat == SPU_ES )
1821         {
1822             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
1823                 p_sys->p_es_sub &&
1824                 p_sys->p_es_sub != es &&
1825                 EsIsSelected( p_sys->p_es_sub ) )
1826             {
1827                 EsUnselect( out, p_sys->p_es_sub, false );
1828             }
1829             p_sys->p_es_sub = es;
1830         }
1831         else if( i_cat == VIDEO_ES )
1832         {
1833             p_sys->p_es_video = es;
1834         }
1835     }
1836 }
1837
1838 /**
1839  * Send a block for the given es_out
1840  *
1841  * \param out the es_out to send from
1842  * \param es the es_out_id
1843  * \param p_block the data block to send
1844  */
1845 static int EsOutSend( es_out_t *out, es_out_id_t *es, block_t *p_block )
1846 {
1847     es_out_sys_t   *p_sys = out->p_sys;
1848     input_thread_t *p_input = p_sys->p_input;
1849     int i_total = 0;
1850
1851     if( libvlc_stats( p_input ) )
1852     {
1853         vlc_mutex_lock( &p_input->p->counters.counters_lock );
1854         stats_UpdateInteger( p_input, p_input->p->counters.p_demux_read,
1855                              p_block->i_buffer, &i_total );
1856         stats_UpdateFloat( p_input , p_input->p->counters.p_demux_bitrate,
1857                            (float)i_total, NULL );
1858
1859         /* Update number of corrupted data packats */
1860         if( p_block->i_flags & BLOCK_FLAG_CORRUPTED )
1861         {
1862             stats_UpdateInteger( p_input, p_input->p->counters.p_demux_corrupted,
1863                                  1, NULL );
1864         }
1865         /* Update number of discontinuities */
1866         if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
1867         {
1868             stats_UpdateInteger( p_input, p_input->p->counters.p_demux_discontinuity,
1869                                  1, NULL );
1870         }
1871         vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1872     }
1873
1874     vlc_mutex_lock( &p_sys->lock );
1875
1876     /* Mark preroll blocks */
1877     if( p_sys->i_preroll_end >= 0 )
1878     {
1879         int64_t i_date = p_block->i_pts;
1880         if( i_date <= 0 )
1881             i_date = p_block->i_dts;
1882
1883         if( i_date < p_sys->i_preroll_end )
1884             p_block->i_flags |= BLOCK_FLAG_PREROLL;
1885     }
1886
1887     p_block->i_rate = 0;
1888
1889     if( !es->p_dec )
1890     {
1891         block_Release( p_block );
1892         vlc_mutex_unlock( &p_sys->lock );
1893         return VLC_SUCCESS;
1894     }
1895
1896     /* Decode */
1897     if( es->p_dec_record )
1898     {
1899         block_t *p_dup = block_Duplicate( p_block );
1900         if( p_dup )
1901             input_DecoderDecode( es->p_dec_record, p_dup );
1902     }
1903     input_DecoderDecode( es->p_dec, p_block );
1904
1905     es_format_t fmt_dsc;
1906     vlc_meta_t  *p_meta_dsc;
1907     if( input_DecoderHasFormatChanged( es->p_dec, &fmt_dsc, &p_meta_dsc ) )
1908     {
1909         EsOutUpdateInfo( out, es, &fmt_dsc, p_meta_dsc );
1910
1911         es_format_Clean( &fmt_dsc );
1912         if( p_meta_dsc )
1913             vlc_meta_Delete( p_meta_dsc );
1914     }
1915
1916     /* Check CC status */
1917     bool pb_cc[4];
1918
1919     input_DecoderIsCcPresent( es->p_dec, pb_cc );
1920     for( int i = 0; i < 4; i++ )
1921     {
1922         static const vlc_fourcc_t fcc[4] = {
1923             VLC_FOURCC('c', 'c', '1', ' '),
1924             VLC_FOURCC('c', 'c', '2', ' '),
1925             VLC_FOURCC('c', 'c', '3', ' '),
1926             VLC_FOURCC('c', 'c', '4', ' '),
1927         };
1928         es_format_t fmt;
1929
1930         if(  es->pb_cc_present[i] || !pb_cc[i] )
1931             continue;
1932         msg_Dbg( p_input, "Adding CC track %d for es[%d]", 1+i, es->i_id );
1933
1934         es_format_Init( &fmt, SPU_ES, fcc[i] );
1935         fmt.i_group = es->fmt.i_group;
1936         if( asprintf( &fmt.psz_description,
1937                       _("Closed captions %u"), 1 + i ) == -1 )
1938             fmt.psz_description = NULL;
1939         es->pp_cc_es[i] = EsOutAdd( out, &fmt );
1940         es->pp_cc_es[i]->p_master = es;
1941         es_format_Clean( &fmt );
1942
1943         /* */
1944         es->pb_cc_present[i] = true;
1945     }
1946
1947     vlc_mutex_unlock( &p_sys->lock );
1948
1949     return VLC_SUCCESS;
1950 }
1951
1952 /*****************************************************************************
1953  * EsOutDel:
1954  *****************************************************************************/
1955 static void EsOutDel( es_out_t *out, es_out_id_t *es )
1956 {
1957     es_out_sys_t *p_sys = out->p_sys;
1958     bool b_reselect = false;
1959     int i;
1960
1961     vlc_mutex_lock( &p_sys->lock );
1962
1963     /* We don't try to reselect */
1964     if( es->p_dec )
1965     {
1966         while( !p_sys->p_input->b_die && !p_sys->b_buffering && es->p_dec )
1967         {
1968             if( input_DecoderIsEmpty( es->p_dec ) &&
1969                 ( !es->p_dec_record || input_DecoderIsEmpty( es->p_dec_record ) ))
1970                 break;
1971             /* FIXME there should be a way to have auto deleted es, but there will be
1972              * a problem when another codec of the same type is created (mainly video) */
1973             msleep( 20*1000 );
1974         }
1975         EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1976     }
1977
1978     if( es->p_pgrm == p_sys->p_pgrm )
1979         EsOutESVarUpdate( out, es, true );
1980
1981     TAB_REMOVE( p_sys->i_es, p_sys->es, es );
1982
1983     /* Update program */
1984     es->p_pgrm->i_es--;
1985     if( es->p_pgrm->i_es == 0 )
1986         msg_Dbg( p_sys->p_input, "Program doesn't contain anymore ES" );
1987
1988     if( es->b_scrambled )
1989         EsOutProgramUpdateScrambled( out, es->p_pgrm );
1990
1991     /* */
1992     if( p_sys->p_es_audio == es || p_sys->p_es_video == es ||
1993         p_sys->p_es_sub == es ) b_reselect = true;
1994
1995     if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;
1996     if( p_sys->p_es_video == es ) p_sys->p_es_video = NULL;
1997     if( p_sys->p_es_sub   == es ) p_sys->p_es_sub   = NULL;
1998
1999     switch( es->fmt.i_cat )
2000     {
2001         case AUDIO_ES:
2002             p_sys->i_audio--;
2003             break;
2004         case SPU_ES:
2005             p_sys->i_sub--;
2006             break;
2007         case VIDEO_ES:
2008             p_sys->i_video--;
2009             break;
2010     }
2011
2012     /* Re-select another track when needed */
2013     if( b_reselect )
2014     {
2015         for( i = 0; i < p_sys->i_es; i++ )
2016         {
2017             if( es->fmt.i_cat == p_sys->es[i]->fmt.i_cat )
2018                 EsOutSelect( out, p_sys->es[i], false );
2019         }
2020     }
2021
2022     free( es->psz_language );
2023     free( es->psz_language_code );
2024
2025     es_format_Clean( &es->fmt );
2026
2027     vlc_mutex_unlock( &p_sys->lock );
2028
2029     free( es );
2030 }
2031
2032 /**
2033  * Control query handler
2034  *
2035  * \param out the es_out to control
2036  * \param i_query A es_out query as defined in include/ninput.h
2037  * \param args a variable list of arguments for the query
2038  * \return VLC_SUCCESS or an error code
2039  */
2040 static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
2041 {
2042     es_out_sys_t *p_sys = out->p_sys;
2043     bool  b, *pb;
2044     int         i;
2045
2046     es_out_id_t *es;
2047
2048     switch( i_query )
2049     {
2050         case ES_OUT_SET_ES_STATE:
2051             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2052             b = (bool) va_arg( args, int );
2053             if( b && !EsIsSelected( es ) )
2054             {
2055                 EsSelect( out, es );
2056                 return EsIsSelected( es ) ? VLC_SUCCESS : VLC_EGENERIC;
2057             }
2058             else if( !b && EsIsSelected( es ) )
2059             {
2060                 EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
2061                 return VLC_SUCCESS;
2062             }
2063             return VLC_SUCCESS;
2064
2065         case ES_OUT_GET_ES_STATE:
2066             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2067             pb = (bool*) va_arg( args, bool * );
2068
2069             *pb = EsIsSelected( es );
2070             return VLC_SUCCESS;
2071
2072         case ES_OUT_SET_ACTIVE:
2073         {
2074             b = (bool) va_arg( args, int );
2075             if( b && !p_sys->b_active && p_sys->i_es > 0 )
2076             {
2077                 /* XXX Terminate vout if there are tracks but no video one.
2078                  * This one is not mandatory but is he earliest place where it
2079                  * can be done */
2080                 for( i = 0; i < p_sys->i_es; i++ )
2081                 {
2082                     es_out_id_t *p_es = p_sys->es[i];
2083                     if( p_es->fmt.i_cat == VIDEO_ES )
2084                         break;
2085                 }
2086                 if( i >= p_sys->i_es )
2087                     input_resource_TerminateVout( p_sys->p_input->p->p_resource );
2088             }
2089             p_sys->b_active = b;
2090             return VLC_SUCCESS;
2091         }
2092
2093         case ES_OUT_SET_MODE:
2094             i = (int) va_arg( args, int );
2095             if( i == ES_OUT_MODE_NONE || i == ES_OUT_MODE_ALL ||
2096                 i == ES_OUT_MODE_AUTO || i == ES_OUT_MODE_PARTIAL )
2097             {
2098                 p_sys->i_mode = i;
2099
2100                 /* Reapply policy mode */
2101                 for( i = 0; i < p_sys->i_es; i++ )
2102                 {
2103                     if( EsIsSelected( p_sys->es[i] ) )
2104                     {
2105                         EsUnselect( out, p_sys->es[i],
2106                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
2107                     }
2108                 }
2109                 for( i = 0; i < p_sys->i_es; i++ )
2110                 {
2111                     EsOutSelect( out, p_sys->es[i], false );
2112                 }
2113                 return VLC_SUCCESS;
2114             }
2115             return VLC_EGENERIC;
2116
2117         case ES_OUT_SET_ES:
2118         case ES_OUT_RESTART_ES:
2119         {
2120             int i_cat;
2121
2122             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2123
2124             if( es == NULL )
2125                 i_cat = UNKNOWN_ES;
2126             else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
2127                 i_cat = AUDIO_ES;
2128             else if( es == (es_out_id_t*)((uint8_t*)NULL+VIDEO_ES) )
2129                 i_cat = VIDEO_ES;
2130             else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
2131                 i_cat = SPU_ES;
2132             else
2133                 i_cat = -1;
2134
2135             for( i = 0; i < p_sys->i_es; i++ )
2136             {
2137                 if( i_cat == -1 )
2138                 {
2139                     if( es == p_sys->es[i] )
2140                     {
2141                         EsOutSelect( out, es, true );
2142                         break;
2143                     }
2144                 }
2145                 else
2146                 {
2147                     if( i_cat == UNKNOWN_ES || p_sys->es[i]->fmt.i_cat == i_cat )
2148                     {
2149                         if( EsIsSelected( p_sys->es[i] ) )
2150                         {
2151                             if( i_query == ES_OUT_RESTART_ES )
2152                             {
2153                                 if( p_sys->es[i]->p_dec )
2154                                 {
2155                                     EsDestroyDecoder( out, p_sys->es[i] );
2156                                     EsCreateDecoder( out, p_sys->es[i] );
2157                                 }
2158                             }
2159                             else
2160                             {
2161                                 EsUnselect( out, p_sys->es[i],
2162                                             p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
2163                             }
2164                         }
2165                     }
2166                 }
2167             }
2168             return VLC_SUCCESS;
2169         }
2170  
2171         case ES_OUT_SET_ES_DEFAULT:
2172         {
2173             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2174
2175             if( es == NULL )
2176             {
2177                 /*p_sys->i_default_video_id = -1;*/
2178                 /*p_sys->i_default_audio_id = -1;*/
2179                 p_sys->i_default_sub_id = -1;
2180             }
2181             else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
2182             {
2183                 /*p_sys->i_default_video_id = -1;*/
2184             }
2185             else if( es == (es_out_id_t*)((uint8_t*)NULL+VIDEO_ES) )
2186             {
2187                 /*p_sys->i_default_audio_id = -1;*/
2188             }
2189             else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
2190             {
2191                 p_sys->i_default_sub_id = -1;
2192             }
2193             else
2194             {
2195                 /*if( es->fmt.i_cat == VIDEO_ES )
2196                     p_sys->i_default_video_id = es->i_id;
2197                 else
2198                 if( es->fmt.i_cat == AUDIO_ES )
2199                     p_sys->i_default_audio_id = es->i_id;
2200                 else*/
2201                 if( es->fmt.i_cat == SPU_ES )
2202                     p_sys->i_default_sub_id = es->i_id;
2203             }
2204             return VLC_SUCCESS;
2205         }
2206
2207         case ES_OUT_SET_PCR:
2208         case ES_OUT_SET_GROUP_PCR:
2209         {
2210             es_out_pgrm_t *p_pgrm = NULL;
2211             int            i_group = 0;
2212             int64_t        i_pcr;
2213
2214             if( i_query == ES_OUT_SET_PCR )
2215             {
2216                 p_pgrm = p_sys->p_pgrm;
2217                 if( !p_pgrm )
2218                     p_pgrm = EsOutProgramAdd( out, i_group );   /* Create it */
2219             }
2220             else
2221             {
2222                 i_group = (int)va_arg( args, int );
2223                 p_pgrm = EsOutProgramFind( out, i_group );
2224             }
2225             if( !p_pgrm )
2226                 return VLC_EGENERIC;
2227
2228             i_pcr = (int64_t)va_arg( args, int64_t );
2229             /* search program
2230              * TODO do not use mdate() but proper stream acquisition date */
2231             input_clock_Update( p_pgrm->p_clock, VLC_OBJECT(p_sys->p_input),
2232                                 p_sys->p_input->p->b_can_pace_control || p_sys->b_buffering, i_pcr, mdate() );
2233             /* Check buffering state on master clock update */
2234             if( p_sys->b_buffering && p_pgrm == p_sys->p_pgrm )
2235                 EsOutDecodersStopBuffering( out, false );
2236
2237             return VLC_SUCCESS;
2238         }
2239
2240         case ES_OUT_RESET_PCR:
2241             msg_Err( p_sys->p_input, "ES_OUT_RESET_PCR called" );
2242             EsOutChangePosition( out );
2243             return VLC_SUCCESS;
2244
2245         case ES_OUT_SET_GROUP:
2246         {
2247             int j;
2248             i = (int) va_arg( args, int );
2249             for( j = 0; j < p_sys->i_pgrm; j++ )
2250             {
2251                 es_out_pgrm_t *p_pgrm = p_sys->pgrm[j];
2252                 if( p_pgrm->i_id == i )
2253                 {
2254                     EsOutProgramSelect( out, p_pgrm );
2255                     return VLC_SUCCESS;
2256                 }
2257             }
2258             return VLC_EGENERIC;
2259         }
2260
2261         case ES_OUT_SET_ES_FMT:
2262         {
2263             /* This ain't pretty but is need by some demuxers (eg. Ogg )
2264              * to update the p_extra data */
2265             es_format_t *p_fmt;
2266             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2267             p_fmt = (es_format_t*) va_arg( args, es_format_t * );
2268             if( es == NULL )
2269                 return VLC_EGENERIC;
2270
2271             if( p_fmt->i_extra )
2272             {
2273                 es->fmt.i_extra = p_fmt->i_extra;
2274                 es->fmt.p_extra = realloc( es->fmt.p_extra, p_fmt->i_extra );
2275                 memcpy( es->fmt.p_extra, p_fmt->p_extra, p_fmt->i_extra );
2276
2277                 if( !es->p_dec )
2278                     return VLC_SUCCESS;
2279 #if 1
2280                 EsDestroyDecoder( out, es );
2281
2282                 EsCreateDecoder( out, es );
2283 #else
2284                 es->p_dec->fmt_in.i_extra = p_fmt->i_extra;
2285                 es->p_dec->fmt_in.p_extra =
2286                     realloc( es->p_dec->fmt_in.p_extra, p_fmt->i_extra );
2287                 memcpy( es->p_dec->fmt_in.p_extra,
2288                         p_fmt->p_extra, p_fmt->i_extra );
2289 #endif
2290             }
2291
2292             return VLC_SUCCESS;
2293         }
2294
2295         case ES_OUT_SET_ES_SCRAMBLED_STATE:
2296         {
2297             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
2298             bool b_scrambled = (bool)va_arg( args, int );
2299
2300             if( !es->b_scrambled != !b_scrambled )
2301             {
2302                 es->b_scrambled = b_scrambled;
2303                 EsOutProgramUpdateScrambled( out, es->p_pgrm );
2304             }
2305             return VLC_SUCCESS;
2306         }
2307
2308         case ES_OUT_SET_NEXT_DISPLAY_TIME:
2309         {
2310             const int64_t i_date = (int64_t)va_arg( args, int64_t );
2311
2312             if( i_date < 0 )
2313                 return VLC_EGENERIC;
2314
2315             p_sys->i_preroll_end = i_date;
2316
2317             return VLC_SUCCESS;
2318         }
2319         case ES_OUT_SET_GROUP_META:
2320         {
2321             int i_group = (int)va_arg( args, int );
2322             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t * );
2323
2324             EsOutProgramMeta( out, i_group, p_meta );
2325             return VLC_SUCCESS;
2326         }
2327         case ES_OUT_SET_GROUP_EPG:
2328         {
2329             int i_group = (int)va_arg( args, int );
2330             vlc_epg_t *p_epg = (vlc_epg_t*)va_arg( args, vlc_epg_t * );
2331
2332             EsOutProgramEpg( out, i_group, p_epg );
2333             return VLC_SUCCESS;
2334         }
2335
2336         case ES_OUT_DEL_GROUP:
2337         {
2338             int i_group = (int)va_arg( args, int );
2339
2340             return EsOutProgramDel( out, i_group );
2341         }
2342
2343         case ES_OUT_GET_WAKE_UP:
2344         {
2345             mtime_t *pi_wakeup = (mtime_t*)va_arg( args, mtime_t* );
2346             *pi_wakeup = EsOutGetWakeup( out );
2347             return VLC_SUCCESS;
2348         }
2349
2350         case ES_OUT_SET_ES_BY_ID:
2351         case ES_OUT_RESTART_ES_BY_ID:
2352         case ES_OUT_SET_ES_DEFAULT_BY_ID:
2353         {
2354             const int i_id = (int)va_arg( args, int );
2355             es_out_id_t *p_es = EsOutGetFromID( out, i_id );
2356             int i_new_query;
2357
2358             switch( i_query )
2359             {
2360             case ES_OUT_SET_ES_BY_ID:         i_new_query = ES_OUT_SET_ES; break;
2361             case ES_OUT_RESTART_ES_BY_ID:     i_new_query = ES_OUT_RESTART_ES; break;
2362             case ES_OUT_SET_ES_DEFAULT_BY_ID: i_new_query = ES_OUT_SET_ES_DEFAULT; break;
2363             default:
2364               assert(0);
2365             }
2366             /* TODO if the lock is made non recursive it should be changed */
2367             int i_ret = es_out_Control( out, i_new_query, p_es );
2368
2369             /* Clean up vout after user action (in active mode only).
2370              * FIXME it does not work well with multiple video windows */
2371             if( p_sys->b_active )
2372                 input_resource_TerminateVout( p_sys->p_input->p->p_resource );
2373             return i_ret;
2374         }
2375
2376         case ES_OUT_GET_BUFFERING:
2377             pb = (bool *)va_arg( args, bool* );
2378             *pb = p_sys->b_buffering;
2379             return VLC_SUCCESS;
2380
2381         case ES_OUT_GET_EMPTY:
2382             pb = (bool *)va_arg( args, bool* );
2383             *pb = EsOutDecodersIsEmpty( out );
2384             return VLC_SUCCESS;
2385
2386         case ES_OUT_SET_DELAY:
2387         {
2388             const int i_cat = (int)va_arg( args, int );
2389             const mtime_t i_delay = (mtime_t)va_arg( args, mtime_t );
2390             EsOutSetDelay( out, i_cat, i_delay );
2391             return VLC_SUCCESS;
2392         }
2393
2394         case ES_OUT_SET_RECORD_STATE:
2395             b = (bool) va_arg( args, int );
2396             return EsOutSetRecord( out, b );
2397
2398         case ES_OUT_SET_PAUSE_STATE:
2399         {
2400             const bool b_source_paused = (bool)va_arg( args, int );
2401             const bool b_paused = (bool)va_arg( args, int );
2402             const mtime_t i_date = (mtime_t) va_arg( args, mtime_t );
2403
2404             assert( !b_source_paused == !b_paused );
2405             EsOutChangePause( out, b_paused, i_date );
2406
2407             return VLC_SUCCESS;
2408         }
2409
2410         case ES_OUT_SET_RATE:
2411         {
2412             const int i_src_rate = (int)va_arg( args, int );
2413             const int i_rate = (int)va_arg( args, int );
2414
2415             assert( i_src_rate == i_rate );
2416             EsOutChangeRate( out, i_rate );
2417
2418             return VLC_SUCCESS;
2419         }
2420
2421         case ES_OUT_SET_TIME:
2422         {
2423             const mtime_t i_date = (mtime_t)va_arg( args, mtime_t );
2424
2425             assert( i_date == -1 );
2426             EsOutChangePosition( out );
2427
2428             return VLC_SUCCESS;
2429         }
2430
2431         case ES_OUT_SET_FRAME_NEXT:
2432             EsOutFrameNext( out );
2433             return VLC_SUCCESS;
2434
2435         case ES_OUT_SET_TIMES:
2436         {
2437             double f_position = (double)va_arg( args, double );
2438             mtime_t i_time = (mtime_t)va_arg( args, mtime_t );
2439             mtime_t i_length = (mtime_t)va_arg( args, mtime_t );
2440
2441             /* Fix for buffering delay */
2442             const mtime_t i_delay = EsOutGetBuffering( out );
2443
2444             i_time -= i_delay;
2445             if( i_time < 0 )
2446                 i_time = 0;
2447
2448             if( i_length > 0 )
2449                 f_position -= (double)i_delay / i_length;
2450             if( f_position < 0 )
2451                 f_position = 0;
2452
2453             if( !p_sys->b_buffering )
2454                 input_SendEventTimes( p_sys->p_input, f_position, i_time, i_length );
2455             return VLC_SUCCESS;
2456         }
2457         case ES_OUT_SET_JITTER:
2458         {
2459             mtime_t i_pts_delay = (mtime_t)va_arg( args, mtime_t );
2460             int     i_cr_average = (int)va_arg( args, int );
2461
2462             if( i_pts_delay == p_sys->i_pts_delay &&
2463                 i_cr_average == p_sys->i_cr_average )
2464                 return VLC_SUCCESS;
2465
2466             p_sys->i_pts_delay = i_pts_delay;
2467             p_sys->i_cr_average = i_cr_average;
2468
2469             for( int i = 0; i < p_sys->i_pgrm; i++ )
2470                 input_clock_SetJitter( p_sys->pgrm[i]->p_clock,
2471                                        i_pts_delay, i_cr_average );
2472             return VLC_SUCCESS;
2473         }
2474
2475         default:
2476             msg_Err( p_sys->p_input, "unknown query in es_out_Control" );
2477             return VLC_EGENERIC;
2478     }
2479 }
2480 static int EsOutControl( es_out_t *out, int i_query, va_list args )
2481 {
2482     es_out_sys_t *p_sys = out->p_sys;
2483     int i_ret;
2484
2485     vlc_mutex_lock( &p_sys->lock );
2486     i_ret = EsOutControlLocked( out, i_query, args );
2487     vlc_mutex_unlock( &p_sys->lock );
2488
2489     return i_ret;
2490 }
2491
2492 /****************************************************************************
2493  * LanguageGetName: try to expend iso639 into plain name
2494  ****************************************************************************/
2495 static char *LanguageGetName( const char *psz_code )
2496 {
2497     const iso639_lang_t *pl;
2498
2499     if( psz_code == NULL )
2500     {
2501         return strdup( "" );
2502     }
2503
2504     if( strlen( psz_code ) == 2 )
2505     {
2506         pl = GetLang_1( psz_code );
2507     }
2508     else if( strlen( psz_code ) == 3 )
2509     {
2510         pl = GetLang_2B( psz_code );
2511         if( !strcmp( pl->psz_iso639_1, "??" ) )
2512         {
2513             pl = GetLang_2T( psz_code );
2514         }
2515     }
2516     else
2517     {
2518         return strdup( psz_code );
2519     }
2520
2521     if( !strcmp( pl->psz_iso639_1, "??" ) )
2522     {
2523        return strdup( psz_code );
2524     }
2525     else
2526     {
2527         if( *pl->psz_native_name )
2528         {
2529             return strdup( pl->psz_native_name );
2530         }
2531         return strdup( pl->psz_eng_name );
2532     }
2533 }
2534
2535 /* Get a 2 char code */
2536 static char *LanguageGetCode( const char *psz_lang )
2537 {
2538     const iso639_lang_t *pl;
2539
2540     if( psz_lang == NULL || *psz_lang == '\0' )
2541         return strdup("??");
2542
2543     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
2544     {
2545         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
2546             !strcasecmp( pl->psz_native_name, psz_lang ) ||
2547             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
2548             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
2549             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
2550             break;
2551     }
2552
2553     if( pl->psz_iso639_1 != NULL )
2554         return strdup( pl->psz_iso639_1 );
2555
2556     return strdup("??");
2557 }
2558
2559 static char **LanguageSplit( const char *psz_langs )
2560 {
2561     char *psz_dup;
2562     char *psz_parser;
2563     char **ppsz = NULL;
2564     int i_psz = 0;
2565
2566     if( psz_langs == NULL ) return NULL;
2567
2568     psz_parser = psz_dup = strdup(psz_langs);
2569
2570     while( psz_parser && *psz_parser )
2571     {
2572         char *psz;
2573         char *psz_code;
2574
2575         psz = strchr(psz_parser, ',' );
2576         if( psz ) *psz++ = '\0';
2577
2578         if( !strcmp( psz_parser, "any" ) )
2579         {
2580             TAB_APPEND( i_psz, ppsz, strdup("any") );
2581         }
2582         else
2583         {
2584             psz_code = LanguageGetCode( psz_parser );
2585             if( strcmp( psz_code, "??" ) )
2586             {
2587                 TAB_APPEND( i_psz, ppsz, psz_code );
2588             }
2589             else
2590             {
2591                 free( psz_code );
2592             }
2593         }
2594
2595         psz_parser = psz;
2596     }
2597
2598     if( i_psz )
2599     {
2600         TAB_APPEND( i_psz, ppsz, NULL );
2601     }
2602
2603     free( psz_dup );
2604     return ppsz;
2605 }
2606
2607 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang )
2608 {
2609     int i;
2610
2611     if( !ppsz_langs || !psz_lang ) return -1;
2612
2613     for( i = 0; ppsz_langs[i]; i++ )
2614     {
2615         if( !strcasecmp( ppsz_langs[i], psz_lang ) ||
2616             !strcasecmp( ppsz_langs[i], "any" ) )
2617         {
2618             return i;
2619         }
2620     }
2621
2622     return -1;
2623 }
2624
2625 /****************************************************************************
2626  * EsOutUpdateInfo:
2627  * - add meta info to the playlist item
2628  ****************************************************************************/
2629 static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *fmt, const vlc_meta_t *p_meta )
2630 {
2631     es_out_sys_t   *p_sys = out->p_sys;
2632     input_thread_t *p_input = p_sys->p_input;
2633     const es_format_t *p_fmt_es = &es->fmt;
2634     char           *psz_cat;
2635     lldiv_t         div;
2636
2637     /* Create category name */
2638     if( asprintf( &psz_cat, _("Stream %d"), es->i_meta_id ) == -1 )
2639         return;
2640
2641     /* Remove previous information */
2642     input_Control( p_input, INPUT_DEL_INFO, psz_cat, NULL );
2643
2644     /* Add informations */
2645     const char *psz_type;
2646     switch( fmt->i_cat )
2647     {
2648     case AUDIO_ES:
2649         psz_type = _("Audio");
2650         break;
2651     case VIDEO_ES:
2652         psz_type = _("Video");
2653         break;
2654     case SPU_ES:
2655         psz_type = _("Subtitle");
2656         break;
2657     default:
2658         psz_type = NULL;
2659         break;
2660     }
2661
2662     if( psz_type )
2663         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Type"), psz_type );
2664
2665     if( es->i_meta_id != es->i_id )
2666         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Original ID"),
2667                        "%d", es->i_id );
2668
2669     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Codec"),
2670                    "%.4s", (char*)&p_fmt_es->i_codec );
2671
2672     if( es->psz_language && *es->psz_language )
2673         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Language"),
2674                        "%s", es->psz_language );
2675     if( fmt->psz_description && *fmt->psz_description )
2676         input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Description"),
2677                        "%s", fmt->psz_description );
2678
2679     switch( fmt->i_cat )
2680     {
2681     case AUDIO_ES:
2682         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2683                        _("Type"), _("Audio") );
2684
2685         if( fmt->audio.i_physical_channels & AOUT_CHAN_PHYSMASK )
2686             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
2687                            "%s", _( aout_FormatPrintChannels( &fmt->audio ) ) );
2688         else if( fmt->audio.i_channels > 0 )
2689             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
2690                            "%u", fmt->audio.i_channels );
2691
2692         if( fmt->audio.i_rate > 0 )
2693         {
2694             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Sample rate"),
2695                            _("%u Hz"), fmt->audio.i_rate );
2696             /* FIXME that should be removed or improved ! (used by text/strings.c) */
2697             var_SetInteger( p_input, "sample-rate", fmt->audio.i_rate );
2698         }
2699
2700         unsigned int i_bitspersample = fmt->audio.i_bitspersample;
2701         if( i_bitspersample <= 0 )
2702             i_bitspersample = aout_BitsPerSample( p_fmt_es->i_codec );
2703         if( i_bitspersample > 0 )
2704             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2705                            _("Bits per sample"), "%u",
2706                            i_bitspersample );
2707
2708         if( fmt->i_bitrate > 0 )
2709         {
2710             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Bitrate"),
2711                            _("%u kb/s"), fmt->i_bitrate / 1000 );
2712             /* FIXME that should be removed or improved ! (used by text/strings.c) */
2713             var_SetInteger( p_input, "bit-rate", fmt->i_bitrate );
2714         }
2715         for( int i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
2716         {
2717             const audio_replay_gain_t *p_rg = &fmt->audio_replay_gain;
2718             if( !p_rg->pb_gain[i] )
2719                 continue;
2720             const char *psz_name;
2721             if( i == AUDIO_REPLAY_GAIN_TRACK )
2722                 psz_name = _("Track replay gain");
2723             else
2724                 psz_name = _("Album replay gain");
2725             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2726                            psz_name, _("%.2f dB"), p_rg->pf_gain[i] );
2727         }
2728         break;
2729
2730     case VIDEO_ES:
2731         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2732                        _("Type"), _("Video") );
2733
2734         if( fmt->video.i_width > 0 && fmt->video.i_height > 0 )
2735             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2736                            _("Resolution"), "%ux%u",
2737                            fmt->video.i_width, fmt->video.i_height );
2738
2739         if( fmt->video.i_visible_width > 0 &&
2740             fmt->video.i_visible_height > 0 )
2741             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2742                            _("Display resolution"), "%ux%u",
2743                            fmt->video.i_visible_width,
2744                            fmt->video.i_visible_height);
2745        if( fmt->video.i_frame_rate > 0 &&
2746            fmt->video.i_frame_rate_base > 0 )
2747        {
2748            div = lldiv( (float)fmt->video.i_frame_rate /
2749                                fmt->video.i_frame_rate_base * 1000000,
2750                                1000000 );
2751            if( div.rem > 0 )
2752                input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2753                               _("Frame rate"), "%"PRId64".%06u",
2754                               div.quot, (unsigned int )div.rem );
2755            else
2756                input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2757                               _("Frame rate"), "%"PRId64, div.quot );
2758        }
2759        break;
2760
2761     case SPU_ES:
2762         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
2763                        _("Type"), _("Subtitle") );
2764         break;
2765
2766     default:
2767         break;
2768     }
2769
2770     /* Append generic meta */
2771     if( p_meta )
2772     {
2773         char **ppsz_all_keys = vlc_dictionary_all_keys( &p_meta->extra_tags );
2774         for( int i = 0; ppsz_all_keys && ppsz_all_keys[i]; i++ )
2775         {
2776             char *psz_key = ppsz_all_keys[i];
2777             char *psz_value = vlc_dictionary_value_for_key( &p_meta->extra_tags, psz_key );
2778
2779             if( psz_value )
2780                 input_Control( p_input, INPUT_ADD_INFO, psz_cat, _(psz_key), _(psz_value) );
2781             free( psz_key );
2782         }
2783         free( ppsz_all_keys );
2784     }
2785
2786     free( psz_cat );
2787 }