]> git.sesse.net Git - vlc/blob - src/input/es_out.c
* aded the new Catalan translation
[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 int 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 )
520         return VLC_EGENERIC;
521
522     if( p_pgrm->i_es )
523     {
524         msg_Dbg( p_input, "can't delete program %d which still has %i ES",
525                  i_group, p_pgrm->i_es );
526         return VLC_EGENERIC;
527     }
528
529     TAB_REMOVE( p_sys->i_pgrm, p_sys->pgrm, p_pgrm );
530
531     /* If program is selected we need to unselect it */
532     if( p_sys->p_pgrm == p_pgrm ) p_sys->p_pgrm = 0;
533
534     if( p_pgrm->psz_now_playing ) free( p_pgrm->psz_now_playing );
535     free( p_pgrm );
536
537     /* Update "program" variable */
538     val.i_int = i_group;
539     var_Change( p_input, "program", VLC_VAR_DELCHOICE, &val, NULL );
540
541     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
542
543     return VLC_SUCCESS;
544 }
545
546 /* EsOutProgramMeta:
547  */
548 static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
549 {
550     es_out_sys_t      *p_sys = out->p_sys;
551     es_out_pgrm_t     *p_pgrm = NULL;
552     input_thread_t    *p_input = p_sys->p_input;
553     char              *psz_cat = malloc( strlen(_("Program")) + 10 );
554     char              *psz_name = NULL;
555     char              *psz_now_playing = NULL;
556     char              *psz_provider = NULL;
557     int i;
558
559     msg_Dbg( p_input, "EsOutProgramMeta: number=%d", i_group );
560     sprintf( psz_cat, "%s %d", _("Program"), i_group );
561
562     for( i = 0; i < p_meta->i_meta; i++ )
563     {
564         msg_Dbg( p_input, "  - %s = %s", p_meta->name[i], p_meta->value[i] );
565
566         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
567                       _(p_meta->name[i]), "%s", p_meta->value[i] );
568         if( !strcasecmp( p_meta->name[i], "Name" ) )
569             psz_name = p_meta->value[i];
570         else if( !strcasecmp( p_meta->name[i], "Provider" ) )
571             psz_provider = p_meta->value[i];
572         else if( !strcasecmp( p_meta->name[i], VLC_META_NOW_PLAYING ) )
573             psz_now_playing = p_meta->value[i];
574     }
575
576     if( !psz_name && !psz_now_playing )
577     {
578         free( psz_cat );
579         return;
580     }
581
582     for( i = 0; i < p_sys->i_pgrm; i++ )
583     {
584         if( p_sys->pgrm[i]->i_id == i_group )
585         {
586             p_pgrm = p_sys->pgrm[i];
587             break;
588         }
589     }
590
591     if( p_pgrm == NULL )
592         p_pgrm = EsOutProgramAdd( out, i_group );
593
594     /* Update the description text of the program */
595     if( psz_name && *psz_name )
596     {
597         vlc_value_t val;
598         vlc_value_t text;
599
600         /* ugly but it works */
601         val.i_int = i_group;
602         var_Change( p_input, "program", VLC_VAR_DELCHOICE, &val, NULL );
603
604         if( psz_provider && *psz_provider )
605         {
606             asprintf( &text.psz_string, "%s [%s]", psz_name, psz_provider );
607             var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
608             free( text.psz_string );
609         }
610         else
611         {
612             text.psz_string = psz_name;
613             var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
614         }
615     }
616     if( psz_now_playing )
617     {
618         p_pgrm->psz_now_playing = strdup(psz_now_playing);
619
620         if( p_sys->p_pgrm == p_pgrm )
621         {
622             input_Control( p_input, INPUT_ADD_INFO, _("Meta-information"),
623                            VLC_META_NOW_PLAYING, "%s", psz_now_playing );
624         }
625     }
626     free( psz_cat );
627 }
628
629 /* EsOutAdd:
630  *  Add an es_out
631  */
632 static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt )
633 {
634     es_out_sys_t      *p_sys = out->p_sys;
635     input_thread_t    *p_input = p_sys->p_input;
636
637     es_out_id_t       *es = malloc( sizeof( es_out_id_t ) );
638     es_out_pgrm_t     *p_pgrm = NULL;
639     int i;
640
641     if( fmt->i_group < 0 )
642     {
643         msg_Err( p_input, "invalid group number" );
644         return NULL;
645     }
646
647     /* Search the program */
648     for( i = 0; i < p_sys->i_pgrm; i++ )
649     {
650         if( fmt->i_group == p_sys->pgrm[i]->i_id )
651         {
652             p_pgrm = p_sys->pgrm[i];
653             break;
654         }
655     }
656     if( p_pgrm == NULL )
657     {
658         /* Create a new one */
659         p_pgrm = EsOutProgramAdd( out, fmt->i_group );
660     }
661
662     /* Increase ref count for program */
663     p_pgrm->i_es++;
664
665     /* Set up ES */
666     if( fmt->i_id < 0 )
667         fmt->i_id = out->p_sys->i_id;
668     es->i_id = fmt->i_id;
669     es->p_pgrm = p_pgrm;
670     es_format_Copy( &es->fmt, fmt );
671     es->i_preroll_end = -1;
672
673     switch( fmt->i_cat )
674     {
675     case AUDIO_ES:
676         es->i_channel = p_sys->i_audio;
677         break;
678
679     case VIDEO_ES:
680         es->i_channel = p_sys->i_video;
681         break;
682
683     case SPU_ES:
684         es->i_channel = p_sys->i_sub;
685         break;
686
687     default:
688         es->i_channel = 0;
689         break;
690     }
691     es->psz_language = LanguageGetName( fmt->psz_language ); /* remember so we only need to do it once */
692     es->psz_language_code = LanguageGetCode( fmt->psz_language );
693     es->p_dec = NULL;
694
695     if( es->p_pgrm == p_sys->p_pgrm )
696         EsOutESVarUpdate( out, es, VLC_FALSE );
697
698     /* Select it if needed */
699     EsOutSelect( out, es, VLC_FALSE );
700
701
702     TAB_APPEND( out->p_sys->i_es, out->p_sys->es, es );
703     p_sys->i_id++;  /* always incremented */
704     switch( fmt->i_cat )
705     {
706         case AUDIO_ES:
707             p_sys->i_audio++;
708             break;
709         case SPU_ES:
710             p_sys->i_sub++;
711             break;
712         case VIDEO_ES:
713             p_sys->i_video++;
714             break;
715     }
716
717     EsOutAddInfo( out, es );
718
719     return es;
720 }
721
722 static void EsSelect( es_out_t *out, es_out_id_t *es )
723 {
724     es_out_sys_t   *p_sys = out->p_sys;
725     input_thread_t *p_input = p_sys->p_input;
726     vlc_value_t    val;
727     char           *psz_var;
728
729     if( es->p_dec )
730     {
731         msg_Warn( p_input, "ES 0x%x is already selected", es->i_id );
732         return;
733     }
734
735     if( es->fmt.i_cat == VIDEO_ES || es->fmt.i_cat == SPU_ES )
736     {
737         if( !var_GetBool( p_input, "video" ) ||
738             ( p_input->p_sout && !var_GetBool( p_input, "sout-video" ) ) )
739         {
740             msg_Dbg( p_input, "video is disabled, not selecting ES 0x%x",
741                      es->i_id );
742             return;
743         }
744     }
745     else if( es->fmt.i_cat == AUDIO_ES )
746     {
747         var_Get( p_input, "audio", &val );
748         if( !var_GetBool( p_input, "audio" ) ||
749             ( p_input->p_sout && !var_GetBool( p_input, "sout-audio" ) ) )
750         {
751             msg_Dbg( p_input, "audio is disabled, not selecting ES 0x%x",
752                      es->i_id );
753             return;
754         }
755     }
756
757     es->i_preroll_end = -1;
758     es->p_dec = input_DecoderNew( p_input, &es->fmt, VLC_FALSE );
759     if( es->p_dec == NULL || es->p_pgrm != p_sys->p_pgrm )
760         return;
761
762     if( es->fmt.i_cat == VIDEO_ES )
763         psz_var = "video-es";
764     else if( es->fmt.i_cat == AUDIO_ES )
765         psz_var = "audio-es";
766     else if( es->fmt.i_cat == SPU_ES )
767         psz_var = "spu-es";
768     else
769         return;
770
771     /* Mark it as selected */
772     val.i_int = es->i_id;
773     var_Change( p_input, psz_var, VLC_VAR_SETVALUE, &val, NULL );
774
775
776     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
777 }
778
779 static void EsUnselect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_update )
780 {
781     es_out_sys_t   *p_sys = out->p_sys;
782     input_thread_t *p_input = p_sys->p_input;
783     vlc_value_t    val;
784     char           *psz_var;
785
786     if( es->p_dec == NULL )
787     {
788         msg_Warn( p_input, "ES 0x%x is already unselected", es->i_id );
789         return;
790     }
791
792     input_DecoderDelete( es->p_dec );
793     es->p_dec = NULL;
794
795     if( !b_update )
796         return;
797
798     /* Update var */
799     if( es->p_dec == NULL )
800         return;
801     if( es->fmt.i_cat == VIDEO_ES )
802         psz_var = "video-es";
803     else if( es->fmt.i_cat == AUDIO_ES )
804         psz_var = "audio-es";
805     else if( es->fmt.i_cat == SPU_ES )
806         psz_var = "spu-es";
807     else
808         return;
809
810     /* Mark it as selected */
811     val.i_int = -1;
812     var_Change( p_input, psz_var, VLC_VAR_SETVALUE, &val, NULL );
813
814     var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
815 }
816
817 /**
818  * Select an ES given the current mode
819  * XXX: you need to take a the lock before (stream.stream_lock)
820  *
821  * \param out The es_out structure
822  * \param es es_out_id structure
823  * \param b_force ...
824  * \return nothing
825  */
826 static void EsOutSelect( es_out_t *out, es_out_id_t *es, vlc_bool_t b_force )
827 {
828     es_out_sys_t      *p_sys = out->p_sys;
829
830     int i_cat = es->fmt.i_cat;
831
832     if( !p_sys->b_active ||
833         ( !b_force && es->fmt.i_priority < 0 ) )
834     {
835         return;
836     }
837
838     if( p_sys->i_mode == ES_OUT_MODE_ALL || b_force )
839     {
840         if( !es->p_dec )
841             EsSelect( out, es );
842     }
843     else if( p_sys->i_mode == ES_OUT_MODE_PARTIAL )
844     {
845         vlc_value_t val;
846         int i;
847         var_Get( p_sys->p_input, "programs", &val );
848         for ( i = 0; i < val.p_list->i_count; i++ )
849         {
850             if ( val.p_list->p_values[i].i_int == es->p_pgrm->i_id || b_force )
851             {
852                 if( !es->p_dec )
853                     EsSelect( out, es );
854                 break;
855             }
856         }
857         var_Change( p_sys->p_input, "programs", VLC_VAR_FREELIST, &val, NULL );
858     }
859     else if( p_sys->i_mode == ES_OUT_MODE_AUTO )
860     {
861         int i_wanted  = -1;
862
863         if( es->p_pgrm != p_sys->p_pgrm )
864             return;
865
866         if( i_cat == AUDIO_ES )
867         {
868             int idx1 = LanguageArrayIndex( p_sys->ppsz_audio_language,
869                                      es->psz_language_code );
870
871             if( p_sys->p_es_audio &&
872                 p_sys->p_es_audio->fmt.i_priority >= es->fmt.i_priority )
873             {
874                 int idx2 = LanguageArrayIndex( p_sys->ppsz_audio_language,
875                                          p_sys->p_es_audio->psz_language_code );
876
877                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
878                     return;
879                 i_wanted = es->i_channel;
880             }
881             else
882             {
883                 /* Select audio if (no audio selected yet)
884                  * - no audio-language
885                  * - no audio code for the ES
886                  * - audio code in the requested list */
887                 if( idx1 >= 0 ||
888                     !strcmp( es->psz_language_code, "??" ) ||
889                     !p_sys->ppsz_audio_language )
890                     i_wanted = es->i_channel;
891             }
892
893             if( p_sys->i_audio_last >= 0 )
894                 i_wanted = p_sys->i_audio_last;
895         }
896         else if( i_cat == SPU_ES )
897         {
898             int idx1 = LanguageArrayIndex( p_sys->ppsz_sub_language,
899                                      es->psz_language_code );
900
901             if( p_sys->p_es_sub &&
902                 p_sys->p_es_sub->fmt.i_priority >= es->fmt.i_priority )
903             {
904                 int idx2 = LanguageArrayIndex( p_sys->ppsz_sub_language,
905                                          p_sys->p_es_sub->psz_language_code );
906
907                 msg_Dbg( p_sys->p_input, "idx1=%d(%s) idx2=%d(%s)",
908                         idx1, es->psz_language_code, idx2,
909                         p_sys->p_es_sub->psz_language_code );
910
911                 if( idx1 < 0 || ( idx2 >= 0 && idx2 <= idx1 ) )
912                     return;
913                 /* We found a SPU that matches our language request */
914                 i_wanted  = es->i_channel;
915             }
916             else if( idx1 >= 0 )
917             {
918                 msg_Dbg( p_sys->p_input, "idx1=%d(%s)",
919                         idx1, es->psz_language_code );
920
921                 i_wanted  = es->i_channel;
922             }
923             if( p_sys->i_sub_last >= 0 )
924                 i_wanted  = p_sys->i_sub_last;
925         }
926         else if( i_cat == VIDEO_ES )
927         {
928             i_wanted  = es->i_channel;
929         }
930
931         if( i_wanted == es->i_channel && es->p_dec == NULL )
932             EsSelect( out, es );
933     }
934
935     /* FIXME TODO handle priority here */
936     if( es->p_dec )
937     {
938         if( i_cat == AUDIO_ES )
939         {
940             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
941                 p_sys->p_es_audio &&
942                 p_sys->p_es_audio != es &&
943                 p_sys->p_es_audio->p_dec )
944             {
945                 EsUnselect( out, p_sys->p_es_audio, VLC_FALSE );
946             }
947             p_sys->p_es_audio = es;
948         }
949         else if( i_cat == SPU_ES )
950         {
951             if( p_sys->i_mode == ES_OUT_MODE_AUTO &&
952                 p_sys->p_es_sub &&
953                 p_sys->p_es_sub != es &&
954                 p_sys->p_es_sub->p_dec )
955             {
956                 EsUnselect( out, p_sys->p_es_sub, VLC_FALSE );
957             }
958             p_sys->p_es_sub = es;
959         }
960         else if( i_cat == VIDEO_ES )
961         {
962             p_sys->p_es_video = es;
963         }
964     }
965 }
966
967 /**
968  * Send a block for the given es_out
969  *
970  * \param out the es_out to send from
971  * \param es the es_out_id
972  * \param p_block the data block to send
973  */
974 static int EsOutSend( es_out_t *out, es_out_id_t *es, block_t *p_block )
975 {
976     es_out_sys_t *p_sys = out->p_sys;
977     input_thread_t    *p_input = p_sys->p_input;
978     es_out_pgrm_t *p_pgrm = es->p_pgrm;
979     int64_t i_delay;
980
981     if( es->fmt.i_cat == AUDIO_ES )
982         i_delay = p_sys->i_audio_delay;
983     else if( es->fmt.i_cat == SPU_ES )
984         i_delay = p_sys->i_spu_delay;
985     else
986         i_delay = 0;
987
988     /* Mark preroll blocks */
989     if( es->i_preroll_end >= 0 )
990     {
991         int64_t i_date = p_block->i_pts;
992         if( i_date <= 0 )
993             i_date = p_block->i_dts;
994
995         if( i_date < es->i_preroll_end )
996             p_block->i_flags |= BLOCK_FLAG_PREROLL;
997         else
998             es->i_preroll_end = -1;
999     }
1000
1001     /* +11 -> avoid null value with non null dts/pts */
1002     if( p_block->i_dts > 0 )
1003     {
1004         p_block->i_dts =
1005             input_ClockGetTS( p_input, &p_pgrm->clock,
1006                               ( p_block->i_dts + 11 ) * 9 / 100 ) + i_delay;
1007     }
1008     if( p_block->i_pts > 0 )
1009     {
1010         p_block->i_pts =
1011             input_ClockGetTS( p_input, &p_pgrm->clock,
1012                               ( p_block->i_pts + 11 ) * 9 / 100 ) + i_delay;
1013     }
1014     if ( es->fmt.i_codec == VLC_FOURCC( 't', 'e', 'l', 'x' ) )
1015     {
1016         mtime_t current_date = mdate();
1017         if( !p_block->i_pts
1018                || p_block->i_pts > current_date + 10000000
1019                || current_date > p_block->i_pts )
1020         {
1021             /* ETSI EN 300 472 Annex A : do not take into account the PTS
1022              * for teletext streams. */
1023             p_block->i_pts = current_date + 400000
1024                                + p_input->i_pts_delay + i_delay;
1025         }
1026     }
1027
1028     p_block->i_rate = p_input->i_rate;
1029
1030     /* TODO handle mute */
1031     if( es->p_dec && ( es->fmt.i_cat != AUDIO_ES ||
1032         p_input->i_rate == INPUT_RATE_DEFAULT ) )
1033     {
1034         input_DecoderDecode( es->p_dec, p_block );
1035     }
1036     else
1037     {
1038         block_Release( p_block );
1039     }
1040
1041     return VLC_SUCCESS;
1042 }
1043
1044 /*****************************************************************************
1045  * EsOutDel:
1046  *****************************************************************************/
1047 static void EsOutDel( es_out_t *out, es_out_id_t *es )
1048 {
1049     es_out_sys_t *p_sys = out->p_sys;
1050
1051     /* We don't try to reselect */
1052     if( es->p_dec )
1053         EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1054
1055     if( es->p_pgrm == p_sys->p_pgrm )
1056         EsOutESVarUpdate( out, es, VLC_TRUE );
1057
1058     TAB_REMOVE( p_sys->i_es, p_sys->es, es );
1059
1060     es->p_pgrm->i_es--;
1061     if( es->p_pgrm->i_es == 0 )
1062     {
1063         msg_Dbg( p_sys->p_input, "Program doesn't contain anymore ES" );
1064     }
1065
1066     if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;
1067     if( p_sys->p_es_video == es ) p_sys->p_es_video = NULL;
1068     if( p_sys->p_es_sub   == es ) p_sys->p_es_sub   = NULL;
1069
1070     switch( es->fmt.i_cat )
1071     {
1072         case AUDIO_ES:
1073             p_sys->i_audio--;
1074             break;
1075         case SPU_ES:
1076             p_sys->i_sub--;
1077             break;
1078         case VIDEO_ES:
1079             p_sys->i_video--;
1080             break;
1081     }
1082
1083     if( es->psz_language )
1084         free( es->psz_language );
1085     if( es->psz_language_code )
1086         free( es->psz_language_code );
1087
1088     es_format_Clean( &es->fmt );
1089
1090     free( es );
1091 }
1092
1093 /**
1094  * Control query handler
1095  *
1096  * \param out the es_out to control
1097  * \param i_query A es_out query as defined in include/ninput.h
1098  * \param args a variable list of arguments for the query
1099  * \return VLC_SUCCESS or an error code
1100  */
1101 static int EsOutControl( es_out_t *out, int i_query, va_list args )
1102 {
1103     es_out_sys_t *p_sys = out->p_sys;
1104     vlc_bool_t  b, *pb;
1105     int         i, *pi;
1106
1107     es_out_id_t *es;
1108
1109     switch( i_query )
1110     {
1111         case ES_OUT_SET_ES_STATE:
1112             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1113             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1114             if( b && es->p_dec == NULL )
1115             {
1116                 EsSelect( out, es );
1117                 return es->p_dec ? VLC_SUCCESS : VLC_EGENERIC;
1118             }
1119             else if( !b && es->p_dec )
1120             {
1121                 EsUnselect( out, es, es->p_pgrm == p_sys->p_pgrm );
1122                 return VLC_SUCCESS;
1123             }
1124             return VLC_SUCCESS;
1125
1126         case ES_OUT_GET_ES_STATE:
1127             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1128             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1129
1130             *pb = es->p_dec ? VLC_TRUE : VLC_FALSE;
1131             return VLC_SUCCESS;
1132
1133         case ES_OUT_SET_ACTIVE:
1134         {
1135             b = (vlc_bool_t) va_arg( args, vlc_bool_t );
1136             p_sys->b_active = b;
1137             /* Needed ? */
1138             if( b )
1139                 var_SetBool( p_sys->p_input, "intf-change", VLC_TRUE );
1140             return VLC_SUCCESS;
1141         }
1142
1143         case ES_OUT_GET_ACTIVE:
1144             pb = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
1145             *pb = p_sys->b_active;
1146             return VLC_SUCCESS;
1147
1148         case ES_OUT_SET_MODE:
1149             i = (int) va_arg( args, int );
1150             if( i == ES_OUT_MODE_NONE || i == ES_OUT_MODE_ALL ||
1151                 i == ES_OUT_MODE_AUTO || i == ES_OUT_MODE_PARTIAL )
1152             {
1153                 p_sys->i_mode = i;
1154
1155                 /* Reapply policy mode */
1156                 for( i = 0; i < p_sys->i_es; i++ )
1157                 {
1158                     if( p_sys->es[i]->p_dec )
1159                     {
1160                         EsUnselect( out, p_sys->es[i],
1161                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1162                     }
1163                 }
1164                 for( i = 0; i < p_sys->i_es; i++ )
1165                 {
1166                     EsOutSelect( out, p_sys->es[i], VLC_FALSE );
1167                 }
1168                 return VLC_SUCCESS;
1169             }
1170             return VLC_EGENERIC;
1171
1172         case ES_OUT_GET_MODE:
1173             pi = (int*) va_arg( args, int* );
1174             *pi = p_sys->i_mode;
1175             return VLC_SUCCESS;
1176
1177         case ES_OUT_SET_ES:
1178             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1179             /* Special case NULL, NULL+i_cat */
1180             if( es == NULL )
1181             {
1182                 for( i = 0; i < p_sys->i_es; i++ )
1183                 {
1184                     if( p_sys->es[i]->p_dec )
1185                         EsUnselect( out, p_sys->es[i],
1186                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1187                 }
1188             }
1189             else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
1190             {
1191                 for( i = 0; i < p_sys->i_es; i++ )
1192                 {
1193                     if( p_sys->es[i]->p_dec &&
1194                         p_sys->es[i]->fmt.i_cat == AUDIO_ES )
1195                         EsUnselect( out, p_sys->es[i],
1196                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1197                 }
1198             }
1199             else if( es == (es_out_id_t*)((uint8_t*)NULL+VIDEO_ES) )
1200             {
1201                 for( i = 0; i < p_sys->i_es; i++ )
1202                 {
1203                     if( p_sys->es[i]->p_dec &&
1204                         p_sys->es[i]->fmt.i_cat == VIDEO_ES )
1205                         EsUnselect( out, p_sys->es[i],
1206                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1207                 }
1208             }
1209             else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
1210             {
1211                 for( i = 0; i < p_sys->i_es; i++ )
1212                 {
1213                     if( p_sys->es[i]->p_dec &&
1214                         p_sys->es[i]->fmt.i_cat == SPU_ES )
1215                         EsUnselect( out, p_sys->es[i],
1216                                     p_sys->es[i]->p_pgrm == p_sys->p_pgrm );
1217                 }
1218             }
1219             else
1220             {
1221                 for( i = 0; i < p_sys->i_es; i++ )
1222                 {
1223                     if( es == p_sys->es[i] )
1224                     {
1225                         EsOutSelect( out, es, VLC_TRUE );
1226                         break;
1227                     }
1228                 }
1229             }
1230             return VLC_SUCCESS;
1231
1232         case ES_OUT_SET_PCR:
1233         case ES_OUT_SET_GROUP_PCR:
1234         {
1235             es_out_pgrm_t *p_pgrm = NULL;
1236             int            i_group = 0;
1237             int64_t        i_pcr;
1238
1239             if( i_query == ES_OUT_SET_PCR )
1240             {
1241                 p_pgrm = p_sys->p_pgrm;
1242             }
1243             else
1244             {
1245                 int i;
1246                 i_group = (int)va_arg( args, int );
1247                 for( i = 0; i < p_sys->i_pgrm; i++ )
1248                 {
1249                     if( p_sys->pgrm[i]->i_id == i_group )
1250                     {
1251                         p_pgrm = p_sys->pgrm[i];
1252                         break;
1253                     }
1254                 }
1255             }
1256             if( p_pgrm == NULL )
1257                 p_pgrm = EsOutProgramAdd( out, i_group );   /* Create it */
1258
1259             i_pcr = (int64_t)va_arg( args, int64_t );
1260             /* search program */
1261             /* 11 is a vodoo trick to avoid non_pcr*9/100 to be null */
1262             input_ClockSetPCR( p_sys->p_input, &p_pgrm->clock,
1263                                (i_pcr + 11 ) * 9 / 100);
1264             return VLC_SUCCESS;
1265         }
1266
1267         case ES_OUT_RESET_PCR:
1268             for( i = 0; i < p_sys->i_pgrm; i++ )
1269             {
1270                 p_sys->pgrm[i]->clock.i_synchro_state =  SYNCHRO_REINIT;
1271                 p_sys->pgrm[i]->clock.last_pts = 0;
1272             }
1273             return VLC_SUCCESS;
1274
1275         case ES_OUT_GET_TS:
1276             if( p_sys->p_pgrm )
1277             {
1278                 int64_t i_ts = (int64_t)va_arg( args, int64_t );
1279                 int64_t *pi_ts = (int64_t *)va_arg( args, int64_t * );
1280                 *pi_ts = input_ClockGetTS( p_sys->p_input,
1281                                            &p_sys->p_pgrm->clock,
1282                                            ( i_ts + 11 ) * 9 / 100 );
1283                 return VLC_SUCCESS;
1284             }
1285             return VLC_EGENERIC;
1286
1287         case ES_OUT_GET_GROUP:
1288             pi = (int*) va_arg( args, int* );
1289             if( p_sys->p_pgrm )
1290                 *pi = p_sys->p_pgrm->i_id;
1291             else
1292                 *pi = -1;    /* FIXME */
1293             return VLC_SUCCESS;
1294
1295         case ES_OUT_SET_GROUP:
1296         {
1297             int j;
1298             i = (int) va_arg( args, int );
1299             for( j = 0; j < p_sys->i_pgrm; j++ )
1300             {
1301                 es_out_pgrm_t *p_pgrm = p_sys->pgrm[j];
1302                 if( p_pgrm->i_id == i )
1303                 {
1304                     EsOutProgramSelect( out, p_pgrm );
1305                     return VLC_SUCCESS;
1306                 }
1307             }
1308             return VLC_EGENERIC;
1309         }
1310
1311         case ES_OUT_SET_FMT:
1312         {
1313             /* This ain't pretty but is need by some demuxers (eg. Ogg )
1314              * to update the p_extra data */
1315             es_format_t *p_fmt;
1316             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1317             p_fmt = (es_format_t*) va_arg( args, es_format_t * );
1318             if( es == NULL ) return VLC_EGENERIC;
1319
1320             if( p_fmt->i_extra )
1321             {
1322                 es->fmt.i_extra = p_fmt->i_extra;
1323                 es->fmt.p_extra = realloc( es->fmt.p_extra, p_fmt->i_extra );
1324                 memcpy( es->fmt.p_extra, p_fmt->p_extra, p_fmt->i_extra );
1325
1326                 if( !es->p_dec ) return VLC_SUCCESS;
1327
1328 #if 1
1329                 input_DecoderDelete( es->p_dec );
1330                 es->p_dec = input_DecoderNew( p_sys->p_input,
1331                                               &es->fmt, VLC_FALSE );
1332
1333 #else
1334                 es->p_dec->fmt_in.i_extra = p_fmt->i_extra;
1335                 es->p_dec->fmt_in.p_extra =
1336                     realloc( es->p_dec->fmt_in.p_extra, p_fmt->i_extra );
1337                 memcpy( es->p_dec->fmt_in.p_extra,
1338                         p_fmt->p_extra, p_fmt->i_extra );
1339 #endif
1340             }
1341
1342             return VLC_SUCCESS;
1343         }
1344
1345         case ES_OUT_SET_NEXT_DISPLAY_TIME:
1346         {
1347             int64_t i_date;
1348
1349             es = (es_out_id_t*) va_arg( args, es_out_id_t * );
1350             i_date = (int64_t)va_arg( args, int64_t );
1351
1352             if( !es || !es->p_dec )
1353                 return VLC_EGENERIC;
1354
1355             es->i_preroll_end = i_date;
1356             input_DecoderPreroll( es->p_dec, i_date );
1357
1358             return VLC_SUCCESS;
1359         }
1360         case ES_OUT_SET_GROUP_META:
1361         {
1362             int i_group = (int)va_arg( args, int );
1363             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t * );
1364
1365             EsOutProgramMeta( out, i_group, p_meta );
1366             return VLC_SUCCESS;
1367         }
1368         case ES_OUT_DEL_GROUP:
1369         {
1370             int i_group = (int)va_arg( args, int );
1371
1372             return EsOutProgramDel( out, i_group );
1373         }
1374
1375         default:
1376             msg_Err( p_sys->p_input, "unknown query in es_out_Control" );
1377             return VLC_EGENERIC;
1378     }
1379 }
1380
1381 /****************************************************************************
1382  * LanguageGetName: try to expend iso639 into plain name
1383  ****************************************************************************/
1384 static char *LanguageGetName( const char *psz_code )
1385 {
1386     const iso639_lang_t *pl;
1387
1388     if( psz_code == NULL )
1389     {
1390         return strdup( "" );
1391     }
1392
1393     if( strlen( psz_code ) == 2 )
1394     {
1395         pl = GetLang_1( psz_code );
1396     }
1397     else if( strlen( psz_code ) == 3 )
1398     {
1399         pl = GetLang_2B( psz_code );
1400         if( !strcmp( pl->psz_iso639_1, "??" ) )
1401         {
1402             pl = GetLang_2T( psz_code );
1403         }
1404     }
1405     else
1406     {
1407         return strdup( psz_code );
1408     }
1409
1410     if( !strcmp( pl->psz_iso639_1, "??" ) )
1411     {
1412        return strdup( psz_code );
1413     }
1414     else
1415     {
1416         if( *pl->psz_native_name )
1417         {
1418             return strdup( pl->psz_native_name );
1419         }
1420         return strdup( pl->psz_eng_name );
1421     }
1422 }
1423
1424 /* Get a 2 char code */
1425 static char *LanguageGetCode( const char *psz_lang )
1426 {
1427     const iso639_lang_t *pl;
1428
1429     if( psz_lang == NULL || *psz_lang == '\0' )
1430         return strdup("??");
1431
1432     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
1433     {
1434         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
1435             !strcasecmp( pl->psz_native_name, psz_lang ) ||
1436             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
1437             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
1438             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
1439             break;
1440     }
1441
1442     if( pl->psz_iso639_1 != NULL )
1443         return strdup( pl->psz_iso639_1 );
1444
1445     return strdup("??");
1446 }
1447
1448 static char **LanguageSplit( const char *psz_langs )
1449 {
1450     char *psz_dup;
1451     char *psz_parser;
1452     char **ppsz = NULL;
1453     int i_psz = 0;
1454
1455     if( psz_langs == NULL ) return NULL;
1456
1457     psz_parser = psz_dup = strdup(psz_langs);
1458
1459     while( psz_parser && *psz_parser )
1460     {
1461         char *psz;
1462         char *psz_code;
1463
1464         psz = strchr(psz_parser, ',' );
1465         if( psz ) *psz++ = '\0';
1466
1467         psz_code = LanguageGetCode( psz_parser );
1468         if( strcmp( psz_code, "??" ) )
1469         {
1470             TAB_APPEND( i_psz, ppsz, psz_code );
1471         }
1472
1473         psz_parser = psz;
1474     }
1475
1476     if( i_psz )
1477     {
1478         TAB_APPEND( i_psz, ppsz, NULL );
1479     }
1480
1481     free( psz_dup );
1482     return ppsz;
1483 }
1484
1485 static int LanguageArrayIndex( char **ppsz_langs, char *psz_lang )
1486 {
1487     int i;
1488
1489     if( !ppsz_langs || !psz_lang ) return -1;
1490
1491     for( i = 0; ppsz_langs[i]; i++ )
1492         if( !strcasecmp( ppsz_langs[i], psz_lang ) ) return i;
1493
1494     return -1;
1495 }
1496
1497 /****************************************************************************
1498  * EsOutAddInfo:
1499  * - add meta info to the playlist item
1500  ****************************************************************************/
1501 static void EsOutAddInfo( es_out_t *out, es_out_id_t *es )
1502 {
1503     es_out_sys_t   *p_sys = out->p_sys;
1504     input_thread_t *p_input = p_sys->p_input;
1505     es_format_t    *fmt = &es->fmt;
1506     char           *psz_cat;
1507
1508     /* Add stream info */
1509     asprintf( &psz_cat, _("Stream %d"), out->p_sys->i_id - 1 );
1510
1511     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Codec"),
1512                    "%.4s", (char*)&fmt->i_codec );
1513
1514     input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Language"),
1515                    "%s", es->psz_language );
1516
1517     /* Add information */
1518     switch( fmt->i_cat )
1519     {
1520     case AUDIO_ES:
1521         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1522                        _("Type"), _("Audio") );
1523
1524         if( fmt->audio.i_channels > 0 )
1525             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
1526                            "%d", fmt->audio.i_channels );
1527
1528         if( fmt->audio.i_rate > 0 )
1529             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Sample rate"),
1530                            _("%d Hz"), fmt->audio.i_rate );
1531
1532         if( fmt->audio.i_bitspersample > 0 )
1533             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1534                            _("Bits per sample"), "%d",
1535                            fmt->audio.i_bitspersample );
1536
1537         if( fmt->i_bitrate > 0 )
1538             input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Bitrate"),
1539                            _("%d kb/s"), fmt->i_bitrate / 1000 );
1540         break;
1541
1542     case VIDEO_ES:
1543         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1544                        _("Type"), _("Video") );
1545
1546         if( fmt->video.i_width > 0 && fmt->video.i_height > 0 )
1547             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1548                            _("Resolution"), "%dx%d",
1549                            fmt->video.i_width, fmt->video.i_height );
1550
1551         if( fmt->video.i_visible_width > 0 &&
1552             fmt->video.i_visible_height > 0 )
1553             input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1554                            _("Display resolution"), "%dx%d",
1555                            fmt->video.i_visible_width,
1556                            fmt->video.i_visible_height);
1557        if( fmt->video.i_frame_rate > 0 &&
1558            fmt->video.i_frame_rate_base > 0 )
1559            input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1560                           _("Frame rate"), "%f",
1561                           (float)fmt->video.i_frame_rate / 
1562                           fmt->video.i_frame_rate_base );
1563         break;
1564
1565     case SPU_ES:
1566         input_Control( p_input, INPUT_ADD_INFO, psz_cat,
1567                        _("Type"), _("Subtitle") );
1568         break;
1569
1570     default:
1571         break;
1572     }
1573
1574     free( psz_cat );
1575 }