]> git.sesse.net Git - vlc/blob - src/input/es_out.c
* src/input/es_out.c: reverted previous patch since it creates problems with the...
[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 )
1059     {
1060         msg_Warn( p_sys->p_input, "Program doesn't contain anymore ES, "
1061                   "TODO cleaning ?" );
1062     }
1063
1064     if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;
1065     if( p_sys->p_es_video == es ) p_sys->p_es_video = NULL;
1066     if( p_sys->p_es_sub   == es ) p_sys->p_es_sub   = NULL;
1067
1068     switch( es->fmt.i_cat )
1069     {
1070         case AUDIO_ES:
1071             p_sys->i_audio--;
1072             break;
1073         case SPU_ES:
1074             p_sys->i_sub--;
1075             break;
1076         case VIDEO_ES:
1077             p_sys->i_video--;
1078             break;
1079     }
1080
1081     if( es->psz_language )
1082         free( es->psz_language );
1083     if( es->psz_language_code )
1084         free( es->psz_language_code );
1085
1086     es_format_Clean( &es->fmt );
1087
1088     free( es );
1089 }
1090
1091 /**
1092  * Control query handler
1093  *
1094  * \param out the es_out to control
1095  * \param i_query A es_out query as defined in include/ninput.h
1096  * \param args a variable list of arguments for the query
1097  * \return VLC_SUCCESS or an error code
1098  */
1099 static int EsOutControl( es_out_t *out, int i_query, va_list args )
1100 {
1101     es_out_sys_t *p_sys = out->p_sys;
1102     vlc_bool_t  b, *pb;
1103     int         i, *pi;
1104
1105     es_out_id_t *es;
1106
1107     switch( i_query )
1108     {
1109         case ES_OUT_SET_ES_STATE:
1110             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1111             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1112             if( b && es->p_dec == NULL )
1113             {
1114                 EsSelect( out, es );
1115                 return es->p_dec ? VLC_SUCCESS : VLC_EGENERIC;
1116             }
1117             else if( !b && es->p_dec )
1118             {
1119                 EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1120                 return VLC_SUCCESS;
1121             }
1122             return VLC_SUCCESS;
1123
1124         case ES_OUT_GET_ES_STATE:
1125             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1126             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1127
1128             *pb = es->p_dec ? VLC_TRUE : VLC_FALSE;
1129             return VLC_SUCCESS;
1130
1131         case ES_OUT_SET_ACTIVE:
1132         {
1133             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1134             p_sys->b_active = b;
1135             /* Needed ? */
1136             if( b )
1137                 var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
1138             return VLC_SUCCESS;
1139         }
1140
1141         case ES_OUT_GET_ACTIVE:
1142             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1143             *pb = p_sys->b_active;
1144             return VLC_SUCCESS;
1145
1146         case ES_OUT_SET_MODE:
1147             i = (int) va_arg( args, int );
1148             if( i == ES_OUT_MODE_NONE || i == ES_OUT_MODE_ALL ||
1149                 i == ES_OUT_MODE_AUTO || i == ES_OUT_MODE_PARTIAL )
1150             {
1151                 p_sys->i_mode = i;
1152
1153                 /* Reapply policy mode */
1154                 for( i = 0; i < p_sys->i_es; i++ )
1155                 {
1156                     if( p_sys->es[i]->p_dec )
1157                     {
1158                         EsUnselect( out, p_sys->es[i],
1159                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1160                     }
1161                 }
1162                 for( i = 0; i < p_sys->i_es; i++ )
1163                 {
1164                     EsOutSelect( out, p_sys->es[i], VLC_FALSE );
1165                 }
1166                 return VLC_SUCCESS;
1167             }
1168             return VLC_EGENERIC;
1169
1170         case ES_OUT_GET_MODE:
1171             pi = (int*) va_arg( args, int* );
1172             *pi = p_sys->i_mode;
1173             return VLC_SUCCESS;
1174
1175         case ES_OUT_SET_ES:
1176             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1177             /* Special case NULL, NULL+i_cat */
1178             if( es == NULL )
1179             {
1180                 for( i = 0; i < p_sys->i_es; i++ )
1181                 {
1182                     if( p_sys->es[i]->p_dec )
1183                         EsUnselect( out, p_sys->es[i],
1184                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1185                 }
1186             }
1187             else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
1188             {
1189                 for( i = 0; i < p_sys->i_es; i++ )
1190                 {
1191                     if( p_sys->es[i]->p_dec &&
1192                         p_sys->es[i]->fmt.i_cat == AUDIO_ES )
1193                         EsUnselect( out, p_sys->es[i],
1194                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1195                 }
1196             }
1197             else if( es == (es_out_id_t*)((uint8_t*)NULL+VIDEO_ES) )
1198             {
1199                 for( i = 0; i < p_sys->i_es; i++ )
1200                 {
1201                     if( p_sys->es[i]->p_dec &&
1202                         p_sys->es[i]->fmt.i_cat == VIDEO_ES )
1203                         EsUnselect( out, p_sys->es[i],
1204                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1205                 }
1206             }
1207             else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
1208             {
1209                 for( i = 0; i < p_sys->i_es; i++ )
1210                 {
1211                     if( p_sys->es[i]->p_dec &&
1212                         p_sys->es[i]->fmt.i_cat == SPU_ES )
1213                         EsUnselect( out, p_sys->es[i],
1214                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1215                 }
1216             }
1217             else
1218             {
1219                 for( i = 0; i < p_sys->i_es; i++ )
1220                 {
1221                     if( es == p_sys->es[i] )
1222                     {
1223                         EsOutSelect( out, es, VLC_TRUE );
1224                         break;
1225                     }
1226                 }
1227             }
1228             return VLC_SUCCESS;
1229
1230         case ES_OUT_SET_PCR:
1231         case ES_OUT_SET_GROUP_PCR:
1232         {
1233             es_out_pgrm_t *p_pgrm = NULL;
1234             int            i_group = 0;
1235             int64_t        i_pcr;
1236
1237             if( i_query == ES_OUT_SET_PCR )
1238             {
1239                 p_pgrm = p_sys->p_pgrm;
1240             }
1241             else
1242             {
1243                 int i;
1244                 i_group = (int)va_arg( args, int );
1245                 for( i = 0; i < p_sys->i_pgrm; i++ )
1246                 {
1247                     if( p_sys->pgrm[i]->i_id == i_group )
1248                     {
1249                         p_pgrm = p_sys->pgrm[i];
1250                         break;
1251                     }
1252                 }
1253             }
1254             if( p_pgrm == NULL )
1255                 p_pgrm = EsOutProgramAdd( out, i_group );   /* Create it */
1256
1257             i_pcr = (int64_t)va_arg( args, int64_t );
1258             /* search program */
1259             /* 11 is a vodoo trick to avoid non_pcr*9/100 to be null */
1260             input_ClockSetPCR( p_sys->p_input, &p_pgrm->clock,
1261                                (i_pcr + 11 ) * 9 / 100);
1262             return VLC_SUCCESS;
1263         }
1264
1265         case ES_OUT_RESET_PCR:
1266             for( i = 0; i < p_sys->i_pgrm; i++ )
1267             {
1268                 p_sys->pgrm[i]->clock.i_synchro_state =  SYNCHRO_REINIT;
1269                 p_sys->pgrm[i]->clock.last_pts = 0;
1270             }
1271             return VLC_SUCCESS;
1272
1273         case ES_OUT_GET_TS:
1274             if( p_sys->p_pgrm )
1275             {
1276                 int64_t i_ts = (int64_t)va_arg( args, int64_t );
1277                 int64_t *pi_ts = (int64_t *)va_arg( args, int64_t * );
1278                 *pi_ts = input_ClockGetTS( p_sys->p_input,
1279                                            &p_sys->p_pgrm->clock,
1280                                            ( i_ts + 11 ) * 9 / 100 );
1281                 return VLC_SUCCESS;
1282             }
1283             return VLC_EGENERIC;
1284
1285         case ES_OUT_GET_GROUP:
1286             pi = (int*) va_arg( args, int* );
1287             if( p_sys->p_pgrm )
1288                 *pi = p_sys->p_pgrm->i_id;
1289             else
1290                 *pi = -1;    /* FIXME */
1291             return VLC_SUCCESS;
1292
1293         case ES_OUT_SET_GROUP:
1294         {
1295             int j;
1296             i = (int) va_arg( args, int );
1297             for( j = 0; j < p_sys->i_pgrm; j++ )
1298             {
1299                 es_out_pgrm_t *p_pgrm = p_sys->pgrm[j];
1300                 if( p_pgrm->i_id == i )
1301                 {
1302                     EsOutProgramSelect( out, p_pgrm );
1303                     return VLC_SUCCESS;
1304                 }
1305             }
1306             return VLC_EGENERIC;
1307         }
1308
1309         case ES_OUT_SET_FMT:
1310         {
1311             /* This ain't pretty but is need by some demuxers (eg. Ogg )
1312              * to update the p_extra data */
1313             es_format_t *p_fmt;
1314             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1315             p_fmt = (es_format_t*) va_arg( args, es_format_t * );
1316             if( es == NULL ) return VLC_EGENERIC;
1317
1318             if( p_fmt->i_extra )
1319             {
1320                 es->fmt.i_extra = p_fmt->i_extra;
1321                 es->fmt.p_extra = realloc( es->fmt.p_extra, p_fmt->i_extra );
1322                 memcpy( es->fmt.p_extra, p_fmt->p_extra, p_fmt->i_extra );
1323
1324                 if( !es->p_dec ) return VLC_SUCCESS;
1325
1326 #if 1
1327                 input_DecoderDelete( es->p_dec );
1328                 es->p_dec = input_DecoderNew( p_sys->p_input,
1329                                               &es->fmt, VLC_FALSE );
1330
1331 #else
1332                 es->p_dec->fmt_in.i_extra = p_fmt->i_extra;
1333                 es->p_dec->fmt_in.p_extra =
1334                     realloc( es->p_dec->fmt_in.p_extra, p_fmt->i_extra );
1335                 memcpy( es->p_dec->fmt_in.p_extra,
1336                         p_fmt->p_extra, p_fmt->i_extra );
1337 #endif
1338             }
1339
1340             return VLC_SUCCESS;
1341         }
1342
1343         case ES_OUT_SET_NEXT_DISPLAY_TIME:
1344         {
1345             int64_t i_date;
1346
1347             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1348             i_date = (int64_t)va_arg( args, int64_t );
1349
1350             if( !es || !es->p_dec )
1351                 return VLC_EGENERIC;
1352
1353             es->i_preroll_end = i_date;
1354             input_DecoderPreroll( es->p_dec, i_date );
1355
1356             return VLC_SUCCESS;
1357         }
1358         case ES_OUT_SET_GROUP_META:
1359         {
1360             int i_group = (int)va_arg( args, int );
1361             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t * );
1362
1363             EsOutProgramMeta( out, i_group, p_meta );
1364             return VLC_SUCCESS;
1365         }
1366
1367         default:
1368             msg_Err( p_sys->p_input, "unknown query in es_out_Control" );
1369             return VLC_EGENERIC;
1370     }
1371 }
1372
1373 /****************************************************************************
1374  * LanguageGetName: try to expend iso639 into plain name
1375  ****************************************************************************/
1376 static char *LanguageGetName( const char *psz_code )
1377 {
1378     const iso639_lang_t *pl;
1379
1380     if( psz_code == NULL )
1381     {
1382         return strdup( "" );
1383     }
1384
1385     if( strlen( psz_code ) == 2 )
1386     {
1387         pl = GetLang_1( psz_code );
1388     }
1389     else if( strlen( psz_code ) == 3 )
1390     {
1391         pl = GetLang_2B( psz_code );
1392         if( !strcmp( pl->psz_iso639_1, "??" ) )
1393         {
1394             pl = GetLang_2T( psz_code );
1395         }
1396     }
1397     else
1398     {
1399         return strdup( psz_code );
1400     }
1401
1402     if( !strcmp( pl->psz_iso639_1, "??" ) )
1403     {
1404        return strdup( psz_code );
1405     }
1406     else
1407     {
1408         if( *pl->psz_native_name )
1409         {
1410             return strdup( pl->psz_native_name );
1411         }
1412         return strdup( pl->psz_eng_name );
1413     }
1414 }
1415
1416 /* Get a 2 char code */
1417 static char *LanguageGetCode( const char *psz_lang )
1418 {
1419     const iso639_lang_t *pl;
1420
1421     if( psz_lang == NULL || *psz_lang == '\0' )
1422         return strdup("??");
1423
1424     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
1425     {
1426         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
1427             !strcasecmp( pl->psz_native_name, psz_lang ) ||
1428             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
1429             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
1430             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
1431             break;
1432     }
1433
1434     if( pl->psz_iso639_1 != NULL )
1435         return strdup( pl->psz_iso639_1 );
1436
1437     return strdup("??");
1438 }
1439
1440 static char **LanguageSplit( const char *psz_langs )
1441 {
1442     char *psz_dup;
1443     char *psz_parser;
1444     char **ppsz = NULL;
1445     int i_psz = 0;
1446
1447     if( psz_langs == NULL ) return NULL;
1448
1449     psz_parser = psz_dup = strdup(psz_langs);
1450
1451     while( psz_parser && *psz_parser )
1452     {
1453         char *psz;
1454         char *psz_code;
1455
1456         psz = strchr(psz_parser, ',' );
1457         if( psz ) *psz++ = '\0';
1458
1459         psz_code = LanguageGetCode( psz_parser );
1460         if( strcmp( psz_code, "??" ) )
1461         {
1462             TAB_APPEND( i_psz, ppsz, psz_code );
1463         }
1464
1465         psz_parser = psz;
1466     }
1467
1468     if( i_psz )
1469     {
1470         TAB_APPEND( i_psz, ppsz, NULL );
1471     }
1472
1473     free( psz_dup );
1474     return ppsz;
1475 }
1476
1477 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang )
1478 {
1479     int i;
1480
1481     if( !ppsz_langs || !psz_lang ) return -1;
1482
1483     for( i = 0; ppsz_langs[i]; i++ )
1484         if( !strcasecmp( ppsz_langs[i], psz_lang ) ) return i;
1485
1486     return -1;
1487 }
1488
1489 /****************************************************************************
1490  * EsOutAddInfo:
1491  * - add meta info to the playlist item
1492  ****************************************************************************/
1493 static void EsOutAddInfo( es_out_t *out, es_out_id_t *es )
1494 {
1495     es_out_sys_t   *p_sys = out->p_sys;
1496     input_thread_t *p_input = p_sys->p_input;
1497     es_format_t    *fmt = &es->fmt;
1498     char           *psz_cat;
1499
1500     /* Add stream info */
1501     asprintf( &psz_cat, _("Stream %d"), out->p_sys->i_id - 1 );
1502
1503     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Codec"),
1504                    "%.4s", (char*)&fmt->i_codec );
1505
1506     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Language"),
1507                    "%s", es->psz_language );
1508
1509     /* Add information */
1510     switch( fmt->i_cat )
1511     {
1512     case AUDIO_ES:
1513         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1514                        _("Type"), _("Audio") );
1515
1516         if( fmt->audio.i_channels > 0 )
1517             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
1518                            "%d", fmt->audio.i_channels );
1519
1520         if( fmt->audio.i_rate > 0 )
1521             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Sample rate"),
1522                            _("%d Hz"), fmt->audio.i_rate );
1523
1524         if( fmt->audio.i_bitspersample > 0 )
1525             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1526                            _("Bits per sample"), "%d",
1527                            fmt->audio.i_bitspersample );
1528
1529         if( fmt->i_bitrate > 0 )
1530             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Bitrate"),
1531                            _("%d kb/s"), fmt->i_bitrate / 1000 );
1532         break;
1533
1534     case VIDEO_ES:
1535         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1536                        _("Type"), _("Video") );
1537
1538         if( fmt->video.i_width > 0 && fmt->video.i_height > 0 )
1539             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1540                            _("Resolution"), "%dx%d",
1541                            fmt->video.i_width, fmt->video.i_height );
1542
1543         if( fmt->video.i_visible_width > 0 &&
1544             fmt->video.i_visible_height > 0 )
1545             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1546                            _("Display resolution"), "%dx%d",
1547                            fmt->video.i_visible_width,
1548                            fmt->video.i_visible_height);
1549        if( fmt->video.i_frame_rate > 0 &&
1550            fmt->video.i_frame_rate_base > 0 )
1551            input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1552                           _("Frame rate"), "%f",
1553                           (float)fmt->video.i_frame_rate / 
1554                           fmt->video.i_frame_rate_base );
1555         break;
1556
1557     case SPU_ES:
1558         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1559                        _("Type"), _("Subtitle") );
1560         break;
1561
1562     default:
1563         break;
1564     }
1565
1566     free( psz_cat );
1567 }