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