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