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