]> git.sesse.net Git - vlc/blob - src/input/es_out.c
* src/input/es_out.c: cleanup empty programs.
[vlc] / src / input / es_out.c
1 /*****************************************************************************
2  * es_out.c: Es Out handler for input.
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc/decoder.h>
32
33 #include "input_internal.h"
34
35 #include "vlc_playlist.h"
36 #include "iso_lang.h"
37 /* FIXME we should find a better way than including that */
38 #include "../misc/iso-639_def.h"
39
40 /*****************************************************************************
41  * Local prototypes
42  *****************************************************************************/
43 typedef struct
44 {
45     /* Program ID */
46     int i_id;
47
48     /* Number of es for this pgrm */
49     int i_es;
50
51     vlc_bool_t b_selected;
52
53     /* Clock for this program */
54     input_clock_t clock;
55
56     char    *psz_now_playing;
57
58 } es_out_pgrm_t;
59
60 struct es_out_id_t
61 {
62     /* ES ID */
63     int       i_id;
64     es_out_pgrm_t *p_pgrm;
65
66     /* */
67     int64_t i_preroll_end;
68
69     /* Channel in the track type */
70     int         i_channel;
71     es_format_t fmt;
72     char        *psz_language;
73     char        *psz_language_code;
74     decoder_t   *p_dec;
75 };
76
77 struct es_out_sys_t
78 {
79     input_thread_t *p_input;
80
81     /* all programs */
82     int           i_pgrm;
83     es_out_pgrm_t **pgrm;
84     es_out_pgrm_t **pp_selected_pgrm; /* --programs */
85     es_out_pgrm_t *p_pgrm;  /* Master program */
86
87     /* all es */
88     int         i_id;
89     int         i_es;
90     es_out_id_t **es;
91
92     /* mode gestion */
93     vlc_bool_t  b_active;
94     int         i_mode;
95
96     /* es count */
97     int         i_audio;
98     int         i_video;
99     int         i_sub;
100
101     /* es to select */
102     int         i_audio_last;
103     int         i_sub_last;
104     char        **ppsz_audio_language;
105     char        **ppsz_sub_language;
106
107     /* current main es */
108     es_out_id_t *p_es_audio;
109     es_out_id_t *p_es_video;
110     es_out_id_t *p_es_sub;
111
112     /* delay */
113     int64_t i_audio_delay;
114     int64_t i_spu_delay;
115 };
116
117 static es_out_id_t *EsOutAdd    ( es_out_t *, es_format_t * );
118 static int          EsOutSend   ( es_out_t *, es_out_id_t *, block_t * );
119 static void         EsOutDel    ( es_out_t *, es_out_id_t * );
120 static void         EsOutSelect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_force );
121 static int          EsOutControl( es_out_t *, int i_query, va_list );
122
123 static void         EsOutAddInfo( es_out_t *, es_out_id_t *es );
124
125 static void EsSelect( es_out_t *out, es_out_id_t *es );
126 static void EsUnselect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_update );
127 static char *LanguageGetName( const char *psz_code );
128 static char *LanguageGetCode( const char *psz_lang );
129 static char **LanguageSplit( const char *psz_langs );
130 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang );
131
132 /*****************************************************************************
133  * input_EsOutNew:
134  *****************************************************************************/
135 es_out_t *input_EsOutNew( input_thread_t *p_input )
136 {
137     es_out_t     *out = malloc( sizeof( es_out_t ) );
138     es_out_sys_t *p_sys = malloc( sizeof( es_out_sys_t ) );
139     vlc_value_t  val;
140     int i;
141
142     out->pf_add     = EsOutAdd;
143     out->pf_send    = EsOutSend;
144     out->pf_del     = EsOutDel;
145     out->pf_control = EsOutControl;
146     out->p_sys      = p_sys;
147
148     p_sys->p_input = p_input;
149
150     p_sys->b_active = VLC_FALSE;
151     p_sys->i_mode   = ES_OUT_MODE_AUTO;
152
153
154     p_sys->i_pgrm   = 0;
155     p_sys->pgrm     = NULL;
156     p_sys->p_pgrm   = NULL;
157
158     p_sys->i_id    = 0;
159     p_sys->i_es    = 0;
160     p_sys->es      = NULL;
161
162     p_sys->i_audio = 0;
163     p_sys->i_video = 0;
164     p_sys->i_sub   = 0;
165
166     /* */
167     var_Get( p_input, "audio-track", &val );
168     p_sys->i_audio_last = val.i_int;
169
170     var_Get( p_input, "sub-track", &val );
171     p_sys->i_sub_last = val.i_int;
172
173     var_Get( p_input, "audio-language", &val );
174     p_sys->ppsz_audio_language = LanguageSplit(val.psz_string);
175     if( p_sys->ppsz_audio_language )
176     {
177         for( i = 0; p_sys->ppsz_audio_language[i]; i++ )
178             msg_Dbg( p_input, "select audio in language[%d] %s",
179                      i, p_sys->ppsz_audio_language[i] );
180     }
181     if( val.psz_string ) free( val.psz_string );
182
183     var_Get( p_input, "sub-language", &val );
184     p_sys->ppsz_sub_language = LanguageSplit(val.psz_string);
185     if( p_sys->ppsz_sub_language )
186     {
187         for( i = 0; p_sys->ppsz_sub_language[i]; i++ )
188             msg_Dbg( p_input, "select subtitle in language[%d] %s",
189                      i, p_sys->ppsz_sub_language[i] );
190     }
191     if( val.psz_string ) free( val.psz_string );
192
193     p_sys->p_es_audio = NULL;
194     p_sys->p_es_video = NULL;
195     p_sys->p_es_sub   = NULL;
196
197     p_sys->i_audio_delay= 0;
198     p_sys->i_spu_delay  = 0;
199
200     return out;
201 }
202
203 /*****************************************************************************
204  * input_EsOutDelete:
205  *****************************************************************************/
206 void input_EsOutDelete( es_out_t *out )
207 {
208     es_out_sys_t *p_sys = out->p_sys;
209     int i;
210
211     for( i = 0; i < p_sys->i_es; i++ )
212     {
213         if( p_sys->es[i]->p_dec )
214         {
215             input_DecoderDelete( p_sys->es[i]->p_dec );
216         }
217         if( p_sys->es[i]->psz_language )
218             free( p_sys->es[i]->psz_language );
219         if( p_sys->es[i]->psz_language_code )
220             free( p_sys->es[i]->psz_language_code );
221         es_format_Clean( &p_sys->es[i]->fmt );
222
223         free( p_sys->es[i] );
224     }
225     if( p_sys->ppsz_audio_language )
226     {
227         for( i = 0; p_sys->ppsz_audio_language[i]; i++ )
228             free( p_sys->ppsz_audio_language[i] );
229         free( p_sys->ppsz_audio_language );
230     }
231     if( p_sys->ppsz_sub_language )
232     {
233         for( i = 0; p_sys->ppsz_sub_language[i]; i++ )
234             free( p_sys->ppsz_sub_language[i] );
235         free( p_sys->ppsz_sub_language );
236     }
237
238     if( p_sys->es )
239         free( p_sys->es );
240
241     for( i = 0; i < p_sys->i_pgrm; i++ )
242     {
243         if( p_sys->pgrm[i]->psz_now_playing )
244             free( p_sys->pgrm[i]->psz_now_playing );
245         free( p_sys->pgrm[i] );
246     }
247     if( p_sys->pgrm )
248         free( p_sys->pgrm );
249
250     free( p_sys );
251     free( out );
252 }
253
254 es_out_id_t *input_EsOutGetFromID( es_out_t *out, int i_id )
255 {
256     int i;
257     if( i_id < 0 )
258     {
259         /* Special HACK, -i_id is tha cat of the stream */
260         return (es_out_id_t*)((uint8_t*)NULL-i_id);
261     }
262
263     for( i = 0; i < out->p_sys->i_es; i++ )
264     {
265         if( out->p_sys->es[i]->i_id == i_id )
266             return out->p_sys->es[i];
267     }
268     return NULL;
269 }
270
271 void input_EsOutDiscontinuity( es_out_t *out, vlc_bool_t b_audio )
272 {
273     es_out_sys_t      *p_sys = out->p_sys;
274     int i;
275
276     for( i = 0; i < p_sys->i_es; i++ )
277     {
278         es_out_id_t *es = p_sys->es[i];
279
280         /* Send a dummy block to let decoder know that
281          * there is a discontinuity */
282         if( es->p_dec && ( !b_audio || es->fmt.i_cat == AUDIO_ES ) )
283         {
284             input_DecoderDiscontinuity( es->p_dec );
285         }
286     }
287 }
288
289 void input_EsOutSetDelay( es_out_t *out, int i_cat, int64_t i_delay )
290 {
291     es_out_sys_t *p_sys = out->p_sys;
292
293     if( i_cat == AUDIO_ES )
294         p_sys->i_audio_delay = i_delay;
295     else if( i_cat == SPU_ES )
296         p_sys->i_spu_delay = i_delay;
297 }
298
299 vlc_bool_t input_EsOutDecodersEmpty( es_out_t *out )
300 {
301     es_out_sys_t      *p_sys = out->p_sys;
302     int i;
303
304     for( i = 0; i < p_sys->i_es; i++ )
305     {
306         es_out_id_t *es = p_sys->es[i];
307
308         if( es->p_dec && !input_DecoderEmpty( es->p_dec ) )
309             return VLC_FALSE;
310     }
311     return VLC_TRUE;
312 }
313
314 /*****************************************************************************
315  *
316  *****************************************************************************/
317 static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es,
318                               vlc_bool_t b_delete )
319 {
320     es_out_sys_t      *p_sys = out->p_sys;
321     input_thread_t    *p_input = p_sys->p_input;
322     vlc_value_t       val, text;
323
324     char *psz_var;
325
326     if( es->fmt.i_cat == AUDIO_ES )
327         psz_var = "audio-es";
328     else if( es->fmt.i_cat == VIDEO_ES )
329         psz_var = "video-es";
330     else if( es->fmt.i_cat == SPU_ES )
331         psz_var = "spu-es";
332     else
333         return;
334
335     if( b_delete )
336     {
337         val.i_int = es->i_id;
338         var_Change( p_input, psz_var, VLC_VAR_DELCHOICE, &val, NULL );
339         var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
340         return;
341     }
342
343     /* Get the number of ES already added */
344     var_Change( p_input, psz_var, VLC_VAR_CHOICESCOUNT, &val, NULL );
345     if( val.i_int == 0 )
346     {
347         vlc_value_t val2;
348
349         /* First one, we need to add the "Disable" choice */
350         val2.i_int = -1; text.psz_string = _("Disable");
351         var_Change( p_input, psz_var, VLC_VAR_ADDCHOICE, &val2, &text );
352         val.i_int++;
353     }
354
355     /* Take care of the ES description */
356     if( es->fmt.psz_description && *es->fmt.psz_description )
357     {
358         if( es->psz_language && *es->psz_language )
359         {
360             text.psz_string = malloc( strlen( es->fmt.psz_description) + strlen( es->psz_language ) + 10 );
361             sprintf( text.psz_string, "%s - [%s]", es->fmt.psz_description, es->psz_language );
362         }
363         else text.psz_string = strdup( es->fmt.psz_description );
364     }
365     else
366     {
367         if( es->psz_language && *es->psz_language )
368         {
369             char *temp;
370             text.psz_string = malloc( strlen( _("Track %i") )+ strlen( es->psz_language ) + 30 );
371             asprintf( &temp,  _("Track %i"), val.i_int );
372             sprintf( text.psz_string, "%s - [%s]", temp, es->psz_language );
373             free( temp );
374         }
375         else
376         {
377             text.psz_string = malloc( strlen( _("Track %i") ) + 20 );
378             sprintf( text.psz_string, _("Track %i"), val.i_int );
379         }
380     }
381
382     val.i_int = es->i_id;
383     var_Change( p_input, psz_var, VLC_VAR_ADDCHOICE, &val, &text );
384
385     free( text.psz_string );
386
387     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
388 }
389
390 /* EsOutProgramSelect:
391  *  Select a program and update the object variable
392  */
393 static void EsOutProgramSelect( es_out_t *out, es_out_pgrm_t *p_pgrm )
394 {
395     es_out_sys_t      *p_sys = out->p_sys;
396     input_thread_t    *p_input = p_sys->p_input;
397     vlc_value_t       val;
398     int               i;
399
400     if( p_sys->p_pgrm == p_pgrm )
401         return; /* Nothing to do */
402
403     if( p_sys->p_pgrm )
404     {
405         es_out_pgrm_t *old = p_sys->p_pgrm;
406         msg_Dbg( p_input, "unselecting program id=%d", old->i_id );
407
408         for( i = 0; i < p_sys->i_es; i++ )
409         {
410             if( p_sys->es[i]->p_pgrm == old && p_sys->es[i]->p_dec &&
411                 p_sys->i_mode != ES_OUT_MODE_ALL )
412                 EsUnselect( out, p_sys->es[i], VLC_TRUE );
413         }
414
415         p_sys->p_es_audio = NULL;
416         p_sys->p_es_sub = NULL;
417         p_sys->p_es_video = NULL;
418     }
419
420     msg_Dbg( p_input, "selecting program id=%d", p_pgrm->i_id );
421
422     /* Mark it selected */
423     p_pgrm->b_selected = VLC_TRUE;
424
425     /* Switch master stream */
426     if( p_sys->p_pgrm && p_sys->p_pgrm->clock.b_master )
427     {
428         p_sys->p_pgrm->clock.b_master = VLC_FALSE;
429     }
430     p_pgrm->clock.b_master = VLC_TRUE;
431     p_sys->p_pgrm = p_pgrm;
432
433     /* Update "program" */
434     val.i_int = p_pgrm->i_id;
435     var_Change( p_input, "program", VLC_VAR_SETVALUE, &val, NULL );
436
437     /* Update "es-*" */
438     var_Change( p_input, "audio-es", VLC_VAR_CLEARCHOICES, NULL, NULL );
439     var_Change( p_input, "video-es", VLC_VAR_CLEARCHOICES, NULL, NULL );
440     var_Change( p_input, "spu-es",   VLC_VAR_CLEARCHOICES, NULL, NULL );
441     for( i = 0; i < p_sys->i_es; i++ )
442     {
443         if( p_sys->es[i]->p_pgrm == p_sys->p_pgrm )
444             EsOutESVarUpdate( out, p_sys->es[i], VLC_FALSE );
445         EsOutSelect( out, p_sys->es[i], VLC_FALSE );
446     }
447
448     /* Update now playing if defined per program */
449     if( p_pgrm->psz_now_playing )
450     {
451         char *psz_cat = malloc( strlen(_("Program")) + 10 );
452
453         sprintf( psz_cat, "%s %d", _("Program"), p_pgrm->i_id );
454         input_Control( p_input, INPUT_ADD_INFO, _("Meta-information"),
455                        VLC_META_NOW_PLAYING, "%s", p_pgrm->psz_now_playing );
456         free( psz_cat );
457     }
458
459
460     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
461 }
462
463 /* EsOutAddProgram:
464  *  Add a program
465  */
466 static es_out_pgrm_t *EsOutProgramAdd( es_out_t *out, int i_group )
467 {
468     es_out_sys_t      *p_sys = out->p_sys;
469     input_thread_t    *p_input = p_sys->p_input;
470     vlc_value_t       val;
471
472     es_out_pgrm_t *p_pgrm = malloc( sizeof( es_out_pgrm_t ) );
473
474     /* Init */
475     p_pgrm->i_id = i_group;
476     p_pgrm->i_es = 0;
477     p_pgrm->b_selected = VLC_FALSE;
478     p_pgrm->psz_now_playing = NULL;
479     input_ClockInit( &p_pgrm->clock, VLC_FALSE, p_input->input.i_cr_average );
480
481     /* Append it */
482     TAB_APPEND( p_sys->i_pgrm, p_sys->pgrm, p_pgrm );
483
484     /* Update "program" variable */
485     val.i_int = i_group;
486     var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, NULL );
487
488     if( i_group == var_GetInteger( p_input, "program" ) )
489     {
490         EsOutProgramSelect( out, p_pgrm );
491     }
492     else
493     {
494         var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
495     }
496     return p_pgrm;
497 }
498
499 /* EsOutDelProgram:
500  *  Delete a program
501  */
502 static void EsOutProgramDel( es_out_t *out, int i_group )
503 {
504     es_out_sys_t      *p_sys = out->p_sys;
505     input_thread_t    *p_input = p_sys->p_input;
506     es_out_pgrm_t     *p_pgrm = NULL;
507     vlc_value_t       val;
508     int               i;
509
510     for( i = 0; i < p_sys->i_pgrm; i++ )
511     {
512         if( p_sys->pgrm[i]->i_id == i_group )
513         {
514             p_pgrm = p_sys->pgrm[i];
515             break;
516         }
517     }
518
519     if( p_pgrm == NULL ) return;
520
521     if( p_pgrm->i_es )
522     {
523         msg_Dbg( p_input, "can't delete program %d which still has %i ES",
524                  i_group, p_pgrm->i_es );
525         return;
526     }
527
528     TAB_REMOVE( p_sys->i_pgrm, p_sys->pgrm, p_pgrm );
529
530     /* If program is selected we need to unselect it */
531     if( p_sys->p_pgrm == p_pgrm ) p_sys->p_pgrm = 0;
532
533     if( p_pgrm->psz_now_playing ) free( p_pgrm->psz_now_playing );
534     free( p_pgrm );
535
536     /* Update "program" variable */
537     val.i_int = i_group;
538     var_Change( p_input, "program", VLC_VAR_DELCHOICE, &val, NULL );
539
540     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
541 }
542
543 /* EsOutProgramMeta:
544  */
545 static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
546 {
547     es_out_sys_t      *p_sys = out->p_sys;
548     es_out_pgrm_t     *p_pgrm = NULL;
549     input_thread_t    *p_input = p_sys->p_input;
550     char              *psz_cat = malloc( strlen(_("Program")) + 10 );
551     char              *psz_name = NULL;
552     char              *psz_now_playing = NULL;
553     char              *psz_provider = NULL;
554     int i;
555
556     msg_Dbg( p_input, "EsOutProgramMeta: number=%d", i_group );
557     sprintf( psz_cat, "%s %d", _("Program"), i_group );
558
559     for( i = 0; i < p_meta->i_meta; i++ )
560     {
561         msg_Dbg( p_input, "  - %s = %s", p_meta->name[i], p_meta->value[i] );
562
563         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
564                       _(p_meta->name[i]), "%s", p_meta->value[i] );
565         if( !strcasecmp( p_meta->name[i], "Name" ) )
566             psz_name = p_meta->value[i];
567         else if( !strcasecmp( p_meta->name[i], "Provider" ) )
568             psz_provider = p_meta->value[i];
569         else if( !strcasecmp( p_meta->name[i], VLC_META_NOW_PLAYING ) )
570             psz_now_playing = p_meta->value[i];
571     }
572
573     if( !psz_name && !psz_now_playing )
574     {
575         free( psz_cat );
576         return;
577     }
578
579     for( i = 0; i < p_sys->i_pgrm; i++ )
580     {
581         if( p_sys->pgrm[i]->i_id == i_group )
582         {
583             p_pgrm = p_sys->pgrm[i];
584             break;
585         }
586     }
587
588     if( p_pgrm == NULL )
589         p_pgrm = EsOutProgramAdd( out, i_group );
590
591     /* Update the description text of the program */
592     if( psz_name && *psz_name )
593     {
594         vlc_value_t val;
595         vlc_value_t text;
596
597         /* ugly but it works */
598         val.i_int = i_group;
599         var_Change( p_input, "program", VLC_VAR_DELCHOICE, &val, NULL );
600
601         if( psz_provider && *psz_provider )
602         {
603             asprintf( &text.psz_string, "%s [%s]", psz_name, psz_provider );
604             var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
605             free( text.psz_string );
606         }
607         else
608         {
609             text.psz_string = psz_name;
610             var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
611         }
612     }
613     if( psz_now_playing )
614     {
615         p_pgrm->psz_now_playing = strdup(psz_now_playing);
616
617         if( p_sys->p_pgrm == p_pgrm )
618         {
619             input_Control( p_input, INPUT_ADD_INFO, _("Meta-information"),
620                            VLC_META_NOW_PLAYING, "%s", psz_now_playing );
621         }
622     }
623     free( psz_cat );
624 }
625
626 /* EsOutAdd:
627  *  Add an es_out
628  */
629 static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt )
630 {
631     es_out_sys_t      *p_sys = out->p_sys;
632     input_thread_t    *p_input = p_sys->p_input;
633
634     es_out_id_t       *es = malloc( sizeof( es_out_id_t ) );
635     es_out_pgrm_t     *p_pgrm = NULL;
636     int i;
637
638     if( fmt->i_group < 0 )
639     {
640         msg_Err( p_input, "invalid group number" );
641         return NULL;
642     }
643
644     /* Search the program */
645     for( i = 0; i < p_sys->i_pgrm; i++ )
646     {
647         if( fmt->i_group == p_sys->pgrm[i]->i_id )
648         {
649             p_pgrm = p_sys->pgrm[i];
650             break;
651         }
652     }
653     if( p_pgrm == NULL )
654     {
655         /* Create a new one */
656         p_pgrm = EsOutProgramAdd( out, fmt->i_group );
657     }
658
659     /* Increase ref count for program */
660     p_pgrm->i_es++;
661
662     /* Set up ES */
663     if( fmt->i_id < 0 )
664         fmt->i_id = out->p_sys->i_id;
665     es->i_id = fmt->i_id;
666     es->p_pgrm = p_pgrm;
667     es_format_Copy( &es->fmt, fmt );
668     es->i_preroll_end = -1;
669
670     switch( fmt->i_cat )
671     {
672     case AUDIO_ES:
673         es->i_channel = p_sys->i_audio;
674         break;
675
676     case VIDEO_ES:
677         es->i_channel = p_sys->i_video;
678         break;
679
680     case SPU_ES:
681         es->i_channel = p_sys->i_sub;
682         break;
683
684     default:
685         es->i_channel = 0;
686         break;
687     }
688     es->psz_language = LanguageGetName( fmt->psz_language ); /* remember so we only need to do it once */
689     es->psz_language_code = LanguageGetCode( fmt->psz_language );
690     es->p_dec = NULL;
691
692     if( es->p_pgrm == p_sys->p_pgrm )
693         EsOutESVarUpdate( out, es, VLC_FALSE );
694
695     /* Select it if needed */
696     EsOutSelect( out, es, VLC_FALSE );
697
698
699     TAB_APPEND( out->p_sys->i_es, out->p_sys->es, es );
700     p_sys->i_id++;  /* always incremented */
701     switch( fmt->i_cat )
702     {
703         case AUDIO_ES:
704             p_sys->i_audio++;
705             break;
706         case SPU_ES:
707             p_sys->i_sub++;
708             break;
709         case VIDEO_ES:
710             p_sys->i_video++;
711             break;
712     }
713
714     EsOutAddInfo( out, es );
715
716     return es;
717 }
718
719 static void EsSelect( es_out_t *out, es_out_id_t *es )
720 {
721     es_out_sys_t   *p_sys = out->p_sys;
722     input_thread_t *p_input = p_sys->p_input;
723     vlc_value_t    val;
724     char           *psz_var;
725
726     if( es->p_dec )
727     {
728         msg_Warn( p_input, "ES 0x%x is already selected", es->i_id );
729         return;
730     }
731
732     if( es->fmt.i_cat == VIDEO_ES || es->fmt.i_cat == SPU_ES )
733     {
734         if( !var_GetBool( p_input, "video" ) ||
735             ( p_input->p_sout && !var_GetBool( p_input, "sout-video" ) ) )
736         {
737             msg_Dbg( p_input, "video is disabled, not selecting ES 0x%x",
738                      es->i_id );
739             return;
740         }
741     }
742     else if( es->fmt.i_cat == AUDIO_ES )
743     {
744         var_Get( p_input, "audio", &val );
745         if( !var_GetBool( p_input, "audio" ) ||
746             ( p_input->p_sout && !var_GetBool( p_input, "sout-audio" ) ) )
747         {
748             msg_Dbg( p_input, "audio is disabled, not selecting ES 0x%x",
749                      es->i_id );
750             return;
751         }
752     }
753
754     es->i_preroll_end = -1;
755     es->p_dec = input_DecoderNew( p_input, &es->fmt, VLC_FALSE );
756     if( es->p_dec == NULL || es->p_pgrm != p_sys->p_pgrm )
757         return;
758
759     if( es->fmt.i_cat == VIDEO_ES )
760         psz_var = "video-es";
761     else if( es->fmt.i_cat == AUDIO_ES )
762         psz_var = "audio-es";
763     else if( es->fmt.i_cat == SPU_ES )
764         psz_var = "spu-es";
765     else
766         return;
767
768     /* Mark it as selected */
769     val.i_int = es->i_id;
770     var_Change( p_input, psz_var, VLC_VAR_SETVALUE, &val, NULL );
771
772
773     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
774 }
775
776 static void EsUnselect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_update )
777 {
778     es_out_sys_t   *p_sys = out->p_sys;
779     input_thread_t *p_input = p_sys->p_input;
780     vlc_value_t    val;
781     char           *psz_var;
782
783     if( es->p_dec == NULL )
784     {
785         msg_Warn( p_input, "ES 0x%x is already unselected", es->i_id );
786         return;
787     }
788
789     input_DecoderDelete( es->p_dec );
790     es->p_dec = NULL;
791
792     if( !b_update )
793         return;
794
795     /* Update var */
796     if( es->p_dec == NULL )
797         return;
798     if( es->fmt.i_cat == VIDEO_ES )
799         psz_var = "video-es";
800     else if( es->fmt.i_cat == AUDIO_ES )
801         psz_var = "audio-es";
802     else if( es->fmt.i_cat == SPU_ES )
803         psz_var = "spu-es";
804     else
805         return;
806
807     /* Mark it as selected */
808     val.i_int = -1;
809     var_Change( p_input, psz_var, VLC_VAR_SETVALUE, &val, NULL );
810
811     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
812 }
813
814 /**
815  * Select an ES given the current mode
816  * XXX: you need to take a the lock before (stream.stream_lock)
817  *
818  * \param out The es_out structure
819  * \param es es_out_id structure
820  * \param b_force ...
821  * \return nothing
822  */
823 static void EsOutSelect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_force )
824 {
825     es_out_sys_t      *p_sys = out->p_sys;
826
827     int i_cat = es->fmt.i_cat;
828
829     if( !p_sys->b_active ||
830         ( !b_force && es->fmt.i_priority < 0 ) )
831     {
832         return;
833     }
834
835     if( p_sys->i_mode == ES_OUT_MODE_ALL || b_force )
836     {
837         if( !es->p_dec )
838             EsSelect( out, es );
839     }
840     else if( p_sys->i_mode == ES_OUT_MODE_PARTIAL )
841     {
842         vlc_value_t val;
843         int i;
844         var_Get( p_sys->p_input, "programs", &val );
845         for ( i = 0; i < val.p_list->i_count; i++ )
846         {
847             if ( val.p_list->p_values[i].i_int == es->p_pgrm->i_id || b_force )
848             {
849                 if( !es->p_dec )
850                     EsSelect( out, es );
851                 break;
852             }
853         }
854         var_Change( p_sys->p_input, "programs", VLC_VAR_FREELIST, &val, NULL );
855     }
856     else if( p_sys->i_mode == ES_OUT_MODE_AUTO )
857     {
858         int i_wanted  = -1;
859
860         if( es->p_pgrm != p_sys->p_pgrm )
861             return;
862
863         if( i_cat == AUDIO_ES )
864         {
865             int idx1 = LanguageArrayIndex( p_sys->ppsz_audio_language,
866                                      es->psz_language_code );
867
868             if( p_sys->p_es_audio &&
869                 p_sys->p_es_audio->fmt.i_priority >= es->fmt.i_priority )
870             {
871                 int idx2 = LanguageArrayIndex( p_sys->ppsz_audio_language,
872                                          p_sys->p_es_audio->psz_language_code );
873
874                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
875                     return;
876                 i_wanted = es->i_channel;
877             }
878             else
879             {
880                 /* Select audio if (no audio selected yet)
881                  * - no audio-language
882                  * - no audio code for the ES
883                  * - audio code in the requested list */
884                 if( idx1 >= 0 ||
885                     !strcmp( es->psz_language_code, "??" ) ||
886                     !p_sys->ppsz_audio_language )
887                     i_wanted = es->i_channel;
888             }
889
890             if( p_sys->i_audio_last >= 0 )
891                 i_wanted = p_sys->i_audio_last;
892         }
893         else if( i_cat == SPU_ES )
894         {
895             int idx1 = LanguageArrayIndex( p_sys->ppsz_sub_language,
896                                      es->psz_language_code );
897
898             if( p_sys->p_es_sub &&
899                 p_sys->p_es_sub->fmt.i_priority >= es->fmt.i_priority )
900             {
901                 int idx2 = LanguageArrayIndex( p_sys->ppsz_sub_language,
902                                          p_sys->p_es_sub->psz_language_code );
903
904                 msg_Dbg( p_sys->p_input, "idx1=%d(%s) idx2=%d(%s)",
905                         idx1, es->psz_language_code, idx2,
906                         p_sys->p_es_sub->psz_language_code );
907
908                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
909                     return;
910                 /* We found a SPU that matches our language request */
911                 i_wanted  = es->i_channel;
912             }
913             else if( idx1 >= 0 )
914             {
915                 msg_Dbg( p_sys->p_input, "idx1=%d(%s)",
916                         idx1, es->psz_language_code );
917
918                 i_wanted  = es->i_channel;
919             }
920             if( p_sys->i_sub_last >= 0 )
921                 i_wanted  = p_sys->i_sub_last;
922         }
923         else if( i_cat == VIDEO_ES )
924         {
925             i_wanted  = es->i_channel;
926         }
927
928         if( i_wanted == es->i_channel && es->p_dec == NULL )
929             EsSelect( out, es );
930     }
931
932     /* FIXME TODO handle priority here */
933     if( es->p_dec )
934     {
935         if( i_cat == AUDIO_ES )
936         {
937             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
938                 p_sys->p_es_audio &&
939                 p_sys->p_es_audio != es &&
940                 p_sys->p_es_audio->p_dec )
941             {
942                 EsUnselect( out, p_sys->p_es_audio, VLC_FALSE );
943             }
944             p_sys->p_es_audio = es;
945         }
946         else if( i_cat == SPU_ES )
947         {
948             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
949                 p_sys->p_es_sub &&
950                 p_sys->p_es_sub != es &&
951                 p_sys->p_es_sub->p_dec )
952             {
953                 EsUnselect( out, p_sys->p_es_sub, VLC_FALSE );
954             }
955             p_sys->p_es_sub = es;
956         }
957         else if( i_cat == VIDEO_ES )
958         {
959             p_sys->p_es_video = es;
960         }
961     }
962 }
963
964 /**
965  * Send a block for the given es_out
966  *
967  * \param out the es_out to send from
968  * \param es the es_out_id
969  * \param p_block the data block to send
970  */
971 static int EsOutSend( es_out_t *out, es_out_id_t *es, block_t *p_block )
972 {
973     es_out_sys_t *p_sys = out->p_sys;
974     input_thread_t    *p_input = p_sys->p_input;
975     es_out_pgrm_t *p_pgrm = es->p_pgrm;
976     int64_t i_delay;
977
978     if( es->fmt.i_cat == AUDIO_ES )
979         i_delay = p_sys->i_audio_delay;
980     else if( es->fmt.i_cat == SPU_ES )
981         i_delay = p_sys->i_spu_delay;
982     else
983         i_delay = 0;
984
985     /* Mark preroll blocks */
986     if( es->i_preroll_end >= 0 )
987     {
988         int64_t i_date = p_block->i_pts;
989         if( i_date <= 0 )
990             i_date = p_block->i_dts;
991
992         if( i_date < es->i_preroll_end )
993             p_block->i_flags |= BLOCK_FLAG_PREROLL;
994         else
995             es->i_preroll_end = -1;
996     }
997
998     /* +11 -> avoid null value with non null dts/pts */
999     if( p_block->i_dts > 0 )
1000     {
1001         p_block->i_dts =
1002             input_ClockGetTS( p_input, &p_pgrm->clock,
1003                               ( p_block->i_dts + 11 ) * 9 / 100 ) + i_delay;
1004     }
1005     if( p_block->i_pts > 0 )
1006     {
1007         p_block->i_pts =
1008             input_ClockGetTS( p_input, &p_pgrm->clock,
1009                               ( p_block->i_pts + 11 ) * 9 / 100 ) + i_delay;
1010     }
1011     if ( es->fmt.i_codec == VLC_FOURCC( 't', 'e', 'l', 'x' ) )
1012     {
1013         mtime_t current_date = mdate();
1014         if( !p_block->i_pts
1015                || p_block->i_pts > current_date + 10000000
1016                || current_date > p_block->i_pts )
1017         {
1018             /* ETSI EN 300 472 Annex A : do not take into account the PTS
1019              * for teletext streams. */
1020             p_block->i_pts = current_date + 400000
1021                                + p_input->i_pts_delay + i_delay;
1022         }
1023     }
1024
1025     p_block->i_rate = p_input->i_rate;
1026
1027     /* TODO handle mute */
1028     if( es->p_dec && ( es->fmt.i_cat != AUDIO_ES ||
1029         p_input->i_rate == INPUT_RATE_DEFAULT ) )
1030     {
1031         input_DecoderDecode( es->p_dec, p_block );
1032     }
1033     else
1034     {
1035         block_Release( p_block );
1036     }
1037
1038     return VLC_SUCCESS;
1039 }
1040
1041 /*****************************************************************************
1042  * EsOutDel:
1043  *****************************************************************************/
1044 static void EsOutDel( es_out_t *out, es_out_id_t *es )
1045 {
1046     es_out_sys_t *p_sys = out->p_sys;
1047
1048     /* We don't try to reselect */
1049     if( es->p_dec )
1050         EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1051
1052     if( es->p_pgrm == p_sys->p_pgrm )
1053         EsOutESVarUpdate( out, es, VLC_TRUE );
1054
1055     TAB_REMOVE( p_sys->i_es, p_sys->es, es );
1056
1057     es->p_pgrm->i_es--;
1058     if( es->p_pgrm->i_es == 0 ) EsOutProgramDel( out, es->p_pgrm->i_id );
1059
1060     if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;
1061     if( p_sys->p_es_video == es ) p_sys->p_es_video = NULL;
1062     if( p_sys->p_es_sub   == es ) p_sys->p_es_sub   = NULL;
1063
1064     switch( es->fmt.i_cat )
1065     {
1066         case AUDIO_ES:
1067             p_sys->i_audio--;
1068             break;
1069         case SPU_ES:
1070             p_sys->i_sub--;
1071             break;
1072         case VIDEO_ES:
1073             p_sys->i_video--;
1074             break;
1075     }
1076
1077     if( es->psz_language )
1078         free( es->psz_language );
1079     if( es->psz_language_code )
1080         free( es->psz_language_code );
1081
1082     es_format_Clean( &es->fmt );
1083
1084     free( es );
1085 }
1086
1087 /**
1088  * Control query handler
1089  *
1090  * \param out the es_out to control
1091  * \param i_query A es_out query as defined in include/ninput.h
1092  * \param args a variable list of arguments for the query
1093  * \return VLC_SUCCESS or an error code
1094  */
1095 static int EsOutControl( es_out_t *out, int i_query, va_list args )
1096 {
1097     es_out_sys_t *p_sys = out->p_sys;
1098     vlc_bool_t  b, *pb;
1099     int         i, *pi;
1100
1101     es_out_id_t *es;
1102
1103     switch( i_query )
1104     {
1105         case ES_OUT_SET_ES_STATE:
1106             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1107             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1108             if( b && es->p_dec == NULL )
1109             {
1110                 EsSelect( out, es );
1111                 return es->p_dec ? VLC_SUCCESS : VLC_EGENERIC;
1112             }
1113             else if( !b && es->p_dec )
1114             {
1115                 EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1116                 return VLC_SUCCESS;
1117             }
1118             return VLC_SUCCESS;
1119
1120         case ES_OUT_GET_ES_STATE:
1121             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1122             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1123
1124             *pb = es->p_dec ? VLC_TRUE : VLC_FALSE;
1125             return VLC_SUCCESS;
1126
1127         case ES_OUT_SET_ACTIVE:
1128         {
1129             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1130             p_sys->b_active = b;
1131             /* Needed ? */
1132             if( b )
1133                 var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
1134             return VLC_SUCCESS;
1135         }
1136
1137         case ES_OUT_GET_ACTIVE:
1138             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1139             *pb = p_sys->b_active;
1140             return VLC_SUCCESS;
1141
1142         case ES_OUT_SET_MODE:
1143             i = (int) va_arg( args, int );
1144             if( i == ES_OUT_MODE_NONE || i == ES_OUT_MODE_ALL ||
1145                 i == ES_OUT_MODE_AUTO || i == ES_OUT_MODE_PARTIAL )
1146             {
1147                 p_sys->i_mode = i;
1148
1149                 /* Reapply policy mode */
1150                 for( i = 0; i < p_sys->i_es; i++ )
1151                 {
1152                     if( p_sys->es[i]->p_dec )
1153                     {
1154                         EsUnselect( out, p_sys->es[i],
1155                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1156                     }
1157                 }
1158                 for( i = 0; i < p_sys->i_es; i++ )
1159                 {
1160                     EsOutSelect( out, p_sys->es[i], VLC_FALSE );
1161                 }
1162                 return VLC_SUCCESS;
1163             }
1164             return VLC_EGENERIC;
1165
1166         case ES_OUT_GET_MODE:
1167             pi = (int*) va_arg( args, int* );
1168             *pi = p_sys->i_mode;
1169             return VLC_SUCCESS;
1170
1171         case ES_OUT_SET_ES:
1172             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1173             /* Special case NULL, NULL+i_cat */
1174             if( es == NULL )
1175             {
1176                 for( i = 0; i < p_sys->i_es; i++ )
1177                 {
1178                     if( p_sys->es[i]->p_dec )
1179                         EsUnselect( out, p_sys->es[i],
1180                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1181                 }
1182             }
1183             else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
1184             {
1185                 for( i = 0; i < p_sys->i_es; i++ )
1186                 {
1187                     if( p_sys->es[i]->p_dec &&
1188                         p_sys->es[i]->fmt.i_cat == AUDIO_ES )
1189                         EsUnselect( out, p_sys->es[i],
1190                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1191                 }
1192             }
1193             else if( es == (es_out_id_t*)((uint8_t*)NULL+VIDEO_ES) )
1194             {
1195                 for( i = 0; i < p_sys->i_es; i++ )
1196                 {
1197                     if( p_sys->es[i]->p_dec &&
1198                         p_sys->es[i]->fmt.i_cat == VIDEO_ES )
1199                         EsUnselect( out, p_sys->es[i],
1200                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1201                 }
1202             }
1203             else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
1204             {
1205                 for( i = 0; i < p_sys->i_es; i++ )
1206                 {
1207                     if( p_sys->es[i]->p_dec &&
1208                         p_sys->es[i]->fmt.i_cat == SPU_ES )
1209                         EsUnselect( out, p_sys->es[i],
1210                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1211                 }
1212             }
1213             else
1214             {
1215                 for( i = 0; i < p_sys->i_es; i++ )
1216                 {
1217                     if( es == p_sys->es[i] )
1218                     {
1219                         EsOutSelect( out, es, VLC_TRUE );
1220                         break;
1221                     }
1222                 }
1223             }
1224             return VLC_SUCCESS;
1225
1226         case ES_OUT_SET_PCR:
1227         case ES_OUT_SET_GROUP_PCR:
1228         {
1229             es_out_pgrm_t *p_pgrm = NULL;
1230             int            i_group = 0;
1231             int64_t        i_pcr;
1232
1233             if( i_query == ES_OUT_SET_PCR )
1234             {
1235                 p_pgrm = p_sys->p_pgrm;
1236             }
1237             else
1238             {
1239                 int i;
1240                 i_group = (int)va_arg( args, int );
1241                 for( i = 0; i < p_sys->i_pgrm; i++ )
1242                 {
1243                     if( p_sys->pgrm[i]->i_id == i_group )
1244                     {
1245                         p_pgrm = p_sys->pgrm[i];
1246                         break;
1247                     }
1248                 }
1249             }
1250             if( p_pgrm == NULL )
1251                 p_pgrm = EsOutProgramAdd( out, i_group );   /* Create it */
1252
1253             i_pcr = (int64_t)va_arg( args, int64_t );
1254             /* search program */
1255             /* 11 is a vodoo trick to avoid non_pcr*9/100 to be null */
1256             input_ClockSetPCR( p_sys->p_input, &p_pgrm->clock,
1257                                (i_pcr + 11 ) * 9 / 100);
1258             return VLC_SUCCESS;
1259         }
1260
1261         case ES_OUT_RESET_PCR:
1262             for( i = 0; i < p_sys->i_pgrm; i++ )
1263             {
1264                 p_sys->pgrm[i]->clock.i_synchro_state =  SYNCHRO_REINIT;
1265                 p_sys->pgrm[i]->clock.last_pts = 0;
1266             }
1267             return VLC_SUCCESS;
1268
1269         case ES_OUT_GET_TS:
1270             if( p_sys->p_pgrm )
1271             {
1272                 int64_t i_ts = (int64_t)va_arg( args, int64_t );
1273                 int64_t *pi_ts = (int64_t *)va_arg( args, int64_t * );
1274                 *pi_ts = input_ClockGetTS( p_sys->p_input,
1275                                            &p_sys->p_pgrm->clock,
1276                                            ( i_ts + 11 ) * 9 / 100 );
1277                 return VLC_SUCCESS;
1278             }
1279             return VLC_EGENERIC;
1280
1281         case ES_OUT_GET_GROUP:
1282             pi = (int*) va_arg( args, int* );
1283             if( p_sys->p_pgrm )
1284                 *pi = p_sys->p_pgrm->i_id;
1285             else
1286                 *pi = -1;    /* FIXME */
1287             return VLC_SUCCESS;
1288
1289         case ES_OUT_SET_GROUP:
1290         {
1291             int j;
1292             i = (int) va_arg( args, int );
1293             for( j = 0; j < p_sys->i_pgrm; j++ )
1294             {
1295                 es_out_pgrm_t *p_pgrm = p_sys->pgrm[j];
1296                 if( p_pgrm->i_id == i )
1297                 {
1298                     EsOutProgramSelect( out, p_pgrm );
1299                     return VLC_SUCCESS;
1300                 }
1301             }
1302             return VLC_EGENERIC;
1303         }
1304
1305         case ES_OUT_SET_FMT:
1306         {
1307             /* This ain't pretty but is need by some demuxers (eg. Ogg )
1308              * to update the p_extra data */
1309             es_format_t *p_fmt;
1310             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1311             p_fmt = (es_format_t*) va_arg( args, es_format_t * );
1312             if( es == NULL ) return VLC_EGENERIC;
1313
1314             if( p_fmt->i_extra )
1315             {
1316                 es->fmt.i_extra = p_fmt->i_extra;
1317                 es->fmt.p_extra = realloc( es->fmt.p_extra, p_fmt->i_extra );
1318                 memcpy( es->fmt.p_extra, p_fmt->p_extra, p_fmt->i_extra );
1319
1320                 if( !es->p_dec ) return VLC_SUCCESS;
1321
1322 #if 1
1323                 input_DecoderDelete( es->p_dec );
1324                 es->p_dec = input_DecoderNew( p_sys->p_input,
1325                                               &es->fmt, VLC_FALSE );
1326
1327 #else
1328                 es->p_dec->fmt_in.i_extra = p_fmt->i_extra;
1329                 es->p_dec->fmt_in.p_extra =
1330                     realloc( es->p_dec->fmt_in.p_extra, p_fmt->i_extra );
1331                 memcpy( es->p_dec->fmt_in.p_extra,
1332                         p_fmt->p_extra, p_fmt->i_extra );
1333 #endif
1334             }
1335
1336             return VLC_SUCCESS;
1337         }
1338
1339         case ES_OUT_SET_NEXT_DISPLAY_TIME:
1340         {
1341             int64_t i_date;
1342
1343             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1344             i_date = (int64_t)va_arg( args, int64_t );
1345
1346             if( !es || !es->p_dec )
1347                 return VLC_EGENERIC;
1348
1349             es->i_preroll_end = i_date;
1350             input_DecoderPreroll( es->p_dec, i_date );
1351
1352             return VLC_SUCCESS;
1353         }
1354         case ES_OUT_SET_GROUP_META:
1355         {
1356             int i_group = (int)va_arg( args, int );
1357             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t * );
1358
1359             EsOutProgramMeta( out, i_group, p_meta );
1360             return VLC_SUCCESS;
1361         }
1362
1363         default:
1364             msg_Err( p_sys->p_input, "unknown query in es_out_Control" );
1365             return VLC_EGENERIC;
1366     }
1367 }
1368
1369 /****************************************************************************
1370  * LanguageGetName: try to expend iso639 into plain name
1371  ****************************************************************************/
1372 static char *LanguageGetName( const char *psz_code )
1373 {
1374     const iso639_lang_t *pl;
1375
1376     if( psz_code == NULL )
1377     {
1378         return strdup( "" );
1379     }
1380
1381     if( strlen( psz_code ) == 2 )
1382     {
1383         pl = GetLang_1( psz_code );
1384     }
1385     else if( strlen( psz_code ) == 3 )
1386     {
1387         pl = GetLang_2B( psz_code );
1388         if( !strcmp( pl->psz_iso639_1, "??" ) )
1389         {
1390             pl = GetLang_2T( psz_code );
1391         }
1392     }
1393     else
1394     {
1395         return strdup( psz_code );
1396     }
1397
1398     if( !strcmp( pl->psz_iso639_1, "??" ) )
1399     {
1400        return strdup( psz_code );
1401     }
1402     else
1403     {
1404         if( *pl->psz_native_name )
1405         {
1406             return strdup( pl->psz_native_name );
1407         }
1408         return strdup( pl->psz_eng_name );
1409     }
1410 }
1411
1412 /* Get a 2 char code */
1413 static char *LanguageGetCode( const char *psz_lang )
1414 {
1415     const iso639_lang_t *pl;
1416
1417     if( psz_lang == NULL || *psz_lang == '\0' )
1418         return strdup("??");
1419
1420     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
1421     {
1422         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
1423             !strcasecmp( pl->psz_native_name, psz_lang ) ||
1424             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
1425             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
1426             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
1427             break;
1428     }
1429
1430     if( pl->psz_iso639_1 != NULL )
1431         return strdup( pl->psz_iso639_1 );
1432
1433     return strdup("??");
1434 }
1435
1436 static char **LanguageSplit( const char *psz_langs )
1437 {
1438     char *psz_dup;
1439     char *psz_parser;
1440     char **ppsz = NULL;
1441     int i_psz = 0;
1442
1443     if( psz_langs == NULL ) return NULL;
1444
1445     psz_parser = psz_dup = strdup(psz_langs);
1446
1447     while( psz_parser && *psz_parser )
1448     {
1449         char *psz;
1450         char *psz_code;
1451
1452         psz = strchr(psz_parser, ',' );
1453         if( psz ) *psz++ = '\0';
1454
1455         psz_code = LanguageGetCode( psz_parser );
1456         if( strcmp( psz_code, "??" ) )
1457         {
1458             TAB_APPEND( i_psz, ppsz, psz_code );
1459         }
1460
1461         psz_parser = psz;
1462     }
1463
1464     if( i_psz )
1465     {
1466         TAB_APPEND( i_psz, ppsz, NULL );
1467     }
1468
1469     free( psz_dup );
1470     return ppsz;
1471 }
1472
1473 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang )
1474 {
1475     int i;
1476
1477     if( !ppsz_langs || !psz_lang ) return -1;
1478
1479     for( i = 0; ppsz_langs[i]; i++ )
1480         if( !strcasecmp( ppsz_langs[i], psz_lang ) ) return i;
1481
1482     return -1;
1483 }
1484
1485 /****************************************************************************
1486  * EsOutAddInfo:
1487  * - add meta info to the playlist item
1488  ****************************************************************************/
1489 static void EsOutAddInfo( es_out_t *out, es_out_id_t *es )
1490 {
1491     es_out_sys_t   *p_sys = out->p_sys;
1492     input_thread_t *p_input = p_sys->p_input;
1493     es_format_t    *fmt = &es->fmt;
1494     char           *psz_cat;
1495
1496     /* Add stream info */
1497     asprintf( &psz_cat, _("Stream %d"), out->p_sys->i_id - 1 );
1498
1499     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Codec"),
1500                    "%.4s", (char*)&fmt->i_codec );
1501
1502     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Language"),
1503                    "%s", es->psz_language );
1504
1505     /* Add information */
1506     switch( fmt->i_cat )
1507     {
1508     case AUDIO_ES:
1509         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1510                        _("Type"), _("Audio") );
1511
1512         if( fmt->audio.i_channels > 0 )
1513             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
1514                            "%d", fmt->audio.i_channels );
1515
1516         if( fmt->audio.i_rate > 0 )
1517             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Sample rate"),
1518                            _("%d Hz"), fmt->audio.i_rate );
1519
1520         if( fmt->audio.i_bitspersample > 0 )
1521             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1522                            _("Bits per sample"), "%d",
1523                            fmt->audio.i_bitspersample );
1524
1525         if( fmt->i_bitrate > 0 )
1526             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Bitrate"),
1527                            _("%d kb/s"), fmt->i_bitrate / 1000 );
1528         break;
1529
1530     case VIDEO_ES:
1531         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1532                        _("Type"), _("Video") );
1533
1534         if( fmt->video.i_width > 0 && fmt->video.i_height > 0 )
1535             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1536                            _("Resolution"), "%dx%d",
1537                            fmt->video.i_width, fmt->video.i_height );
1538
1539         if( fmt->video.i_visible_width > 0 &&
1540             fmt->video.i_visible_height > 0 )
1541             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1542                            _("Display resolution"), "%dx%d",
1543                            fmt->video.i_visible_width,
1544                            fmt->video.i_visible_height);
1545        if( fmt->video.i_frame_rate > 0 &&
1546            fmt->video.i_frame_rate_base > 0 )
1547            input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1548                           _("Frame rate"), "%f",
1549                           (float)fmt->video.i_frame_rate / 
1550                           fmt->video.i_frame_rate_base );
1551         break;
1552
1553     case SPU_ES:
1554         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1555                        _("Type"), _("Subtitle") );
1556         break;
1557
1558     default:
1559         break;
1560     }
1561
1562     free( psz_cat );
1563 }