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