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