]> git.sesse.net Git - vlc/blob - modules/access/dvb/access.c
* src/input/input_programs.c: Fixed the --program option (thanks gibalou)
[vlc] / modules / access / dvb / access.c
1 /*****************************************************************************
2  * access.c: DVB card input v4l2 only
3  *****************************************************************************
4  * Copyright (C) 1998-2004 VideoLAN
5  *
6  * Authors: Johan Bilien <jobi@via.ecp.fr>
7  *          Jean-Paul Saman <jpsaman@wxs.nl>
8  *          Christophe Massiot <massiot@via.ecp.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdio.h>
30 #include <stdlib.h>
31
32 #include <vlc/vlc.h>
33 #include <vlc/input.h>
34
35 #include "../../demux/mpeg/system.h"
36
37 #ifdef HAVE_UNISTD_H
38 #   include <unistd.h>
39 #endif
40
41 #include <fcntl.h>
42 #include <sys/types.h>
43
44 #ifdef HAVE_ERRNO_H
45 #    include <string.h>
46 #    include <errno.h>
47 #endif
48
49 #ifdef STRNCASECMP_IN_STRINGS_H
50 #   include <strings.h>
51 #endif
52
53 #include "dvb.h"
54
55 #define SATELLITE_READ_ONCE 3
56
57 /*****************************************************************************
58  * Local prototypes
59  *****************************************************************************/
60 static int     Open( vlc_object_t *p_this );
61 static void    Close( vlc_object_t *p_this );
62 static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer,
63                               size_t i_len);
64 static int     SetArea    ( input_thread_t *, input_area_t * );
65 static int     SetProgram ( input_thread_t *, pgrm_descriptor_t * );
66 static void    Seek       ( input_thread_t *, off_t );
67 static void    AllocateDemux( input_thread_t * p_input, int i_pid,
68                               int i_type );
69 static void    CloseProgram( input_thread_t * p_input );
70
71 /*****************************************************************************
72  * Module descriptor
73  *****************************************************************************/
74 #define PROGRAM_TEXT N_("Program to decode")
75 #define PROGRAM_LONGTEXT N_("This is a workaround for a bug in the input")
76
77 #define ADAPTER_TEXT N_("Adapter card to tune")
78 #define ADAPTER_LONGTEXT N_("Adapter cards have a device file in directory named /dev/dvb/adapter[n] with n>=0.")
79
80 #define DEVICE_TEXT N_("Device number to use on adapter")
81 #define DEVICE_LONGTEXT ""
82
83 #define FREQ_TEXT N_("Transponder/multiplex frequency")
84 #define FREQ_LONGTEXT N_("In kHz for DVB-S or Hz for DVB-C/T")
85
86 #define INVERSION_TEXT N_("Inversion mode")
87 #define INVERSION_LONGTEXT N_("Inversion mode [0=off, 1=on, 2=auto]")
88
89 #define PROBE_TEXT N_("Probe DVB card for capabilities")
90 #define PROBE_LONGTEXT N_("Some DVB cards do not like to be probed for their capabilities.")
91
92 #define LNB_LOF1_TEXT N_("Antenna lnb_lof1 (kHz)")
93 #define LNB_LOF1_LONGTEXT ""
94
95 #define LNB_LOF2_TEXT N_("Antenna lnb_lof2 (kHz)")
96 #define LNB_LOF2_LONGTEXT ""
97
98 #define LNB_SLOF_TEXT N_("Antenna lnb_slof (kHz)")
99 #define LNB_SLOF_LONGTEXT ""
100
101 /* Satellite */
102 #define BUDGET_TEXT N_("Budget mode")
103 #define BUDGET_LONGTEXT N_("This allows you to stream an entire transponder with a budget card. Budget mode is compatible with the ts2 demux.")
104
105 #define SATNO_TEXT N_("Satellite number in the Diseqc system")
106 #define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=normal diseqc, -1=A, -2=B simple diseqc")
107
108 #define VOLTAGE_TEXT N_("LNB voltage")
109 #define VOLTAGE_LONGTEXT N_("In Volts [0, 13=vertical, 18=horizontal]")
110
111 #define TONE_TEXT N_("22 kHz tone")
112 #define TONE_LONGTEXT N_("[0=off, 1=on, -1=auto]")
113
114 #define FEC_TEXT N_("Transponder FEC")
115 #define FEC_LONGTEXT N_("FEC=Forward Error Correction mode [9=auto]")
116
117 #define SRATE_TEXT N_("Transponder symbol rate in kHz")
118 #define SRATE_LONGTEXT ""
119
120 /* Cable */
121 #define MODULATION_TEXT N_("Modulation type")
122 #define MODULATION_LONGTEXT N_("Modulation type for front-end device.")
123
124 /* Terrestrial */
125 #define CODE_RATE_HP_TEXT N_("Terrestrial high priority stream code rate (FEC)")
126 #define CODE_RATE_HP_LONGTEXT ""
127
128 #define CODE_RATE_LP_TEXT N_("Terrestrial low priority stream code rate (FEC)")
129 #define CODE_RATE_LP_LONGTEXT ""
130
131 #define BANDWIDTH_TEXT N_("Terrestrial bandwidth")
132 #define BANDWIDTH_LONGTEXT N_("Terrestrial bandwidth [0=auto,6,7,8 in MHz]")
133
134 #define GUARD_TEXT N_("Terrestrial guard interval")
135 #define GUARD_LONGTEXT ""
136
137 #define TRANSMISSION_TEXT N_("Terrestrial transmission mode")
138 #define TRANSMISSION_LONGTEXT ""
139
140 #define HIERARCHY_TEXT N_("Terrestrial hierarchy mode")
141 #define HIERARCHY_LONGTEXT ""
142
143 vlc_module_begin();
144     set_description( N_("DVB input with v4l2 support") );
145
146                  VLC_FALSE );
147     add_integer( "dvb-adapter", 0, NULL, ADAPTER_TEXT, ADAPTER_LONGTEXT,
148                  VLC_FALSE );
149     add_integer( "dvb-device", 0, NULL, DEVICE_TEXT, DEVICE_LONGTEXT,
150                  VLC_FALSE );
151     add_integer( "dvb-frequency", 11954000, NULL, FREQ_TEXT, FREQ_LONGTEXT,
152                  VLC_FALSE );
153     add_integer( "dvb-inversion", 2, NULL, INVERSION_TEXT, INVERSION_LONGTEXT,
154                  VLC_TRUE );
155     add_bool( "dvb-probe", 1, NULL, PROBE_TEXT, PROBE_LONGTEXT, VLC_TRUE );
156     add_integer( "dvb-lnb-lof1", 9750000, NULL, LNB_LOF1_TEXT, LNB_LOF1_LONGTEXT,
157                  VLC_TRUE );
158     add_integer( "dvb-lnb-lof2", 10600000, NULL, LNB_LOF2_TEXT, LNB_LOF2_LONGTEXT,
159                  VLC_TRUE );
160     add_integer( "dvb-lnb-slof", 11700000, NULL, LNB_SLOF_TEXT,
161                  LNB_SLOF_LONGTEXT, VLC_TRUE );
162     /* DVB-S (satellite) */
163     add_bool( "dvb-budget-mode", 0, NULL, BUDGET_TEXT, BUDGET_LONGTEXT,
164               VLC_FALSE );
165     add_integer( "dvb-satno", 0, NULL, SATNO_TEXT, SATNO_LONGTEXT,
166                  VLC_TRUE );
167     add_integer( "dvb-voltage", 13, NULL, VOLTAGE_TEXT, VOLTAGE_LONGTEXT,
168                  VLC_FALSE );
169     add_integer( "dvb-tone", -1, NULL, TONE_TEXT, TONE_LONGTEXT,
170                  VLC_FALSE );
171     add_integer( "dvb-fec", 9, NULL, FEC_TEXT, FEC_LONGTEXT, VLC_TRUE );
172     add_integer( "dvb-srate", 27500000, NULL, SRATE_TEXT, SRATE_LONGTEXT,
173                  VLC_FALSE );
174     /* DVB-T (terrestrial) */
175     add_integer( "dvb-modulation", 0, NULL, MODULATION_TEXT, MODULATION_LONGTEXT,
176                  VLC_TRUE );
177     /* DVB-T (terrestrial) */
178     add_integer( "dvb-code-rate-hp", 9, NULL, CODE_RATE_HP_TEXT,
179                  CODE_RATE_HP_LONGTEXT, VLC_TRUE );
180     add_integer( "dvb-code-rate-lp", 9, NULL, CODE_RATE_LP_TEXT,
181                  CODE_RATE_LP_LONGTEXT, VLC_TRUE );
182     add_integer( "dvb-bandwidth", 0, NULL, BANDWIDTH_TEXT, BANDWIDTH_LONGTEXT,
183                  VLC_TRUE );
184     add_integer( "dvb-guard", 0, NULL, GUARD_TEXT, GUARD_LONGTEXT, VLC_TRUE );
185     add_integer( "dvb-transmission", 0, NULL, TRANSMISSION_TEXT,
186                  TRANSMISSION_LONGTEXT, VLC_TRUE );
187     add_integer( "dvb-hierarchy", 0, NULL, HIERARCHY_TEXT, HIERARCHY_LONGTEXT,
188                  VLC_TRUE );
189
190     set_capability( "access", 0 );
191     add_shortcut( "dvb" );
192     add_shortcut( "dvb-s" );
193     add_shortcut( "qpsk" );
194     add_shortcut( "dvb-c" );
195     add_shortcut( "cable" );
196     add_shortcut( "dvb-t" );
197     add_shortcut( "terrestrial" );
198     add_shortcut( "satellite" );    /* compatibility with the interface. */
199     set_callbacks( Open, Close );
200 vlc_module_end();
201
202 /*****************************************************************************
203  * Open: open the frontend device
204  *****************************************************************************/
205 #define GET_OPTION_INT( option )                                            \
206     if ( !strncmp( psz_parser, option "=", strlen(option "=") ) )           \
207     {                                                                       \
208         val.i_int = strtol( psz_parser + strlen(option "="), &psz_parser,   \
209                             0 );                                            \
210         var_Set( p_input, "dvb-" option, val );                             \
211     }
212
213 #define GET_OPTION_BOOL( option )                                           \
214     if ( !strncmp( psz_parser, option "=", strlen(option "=") ) )           \
215     {                                                                       \
216         val.b_bool = strtol( psz_parser + strlen(option "="), &psz_parser,  \
217                              0 );                                           \
218         var_Set( p_input, "dvb-" option, val );                             \
219     }
220
221 static int Open( vlc_object_t *p_this )
222 {
223     input_thread_t *    p_input = (input_thread_t *)p_this;
224     thread_dvb_data_t * p_dvb;
225     char *              psz_parser;
226     char *              psz_next;
227     vlc_value_t         val;
228     int                 i_test;
229
230     /* Initialize structure */
231     p_dvb = malloc( sizeof( thread_dvb_data_t ) );
232     if( p_dvb == NULL )
233     {
234         msg_Err( p_input, "out of memory" );
235         return -1;
236     }
237     memset( p_dvb, 0, sizeof(thread_dvb_data_t) );
238     p_input->p_access_data = (void *)p_dvb;
239
240     /* Register callback functions */
241     p_input->pf_read = Read;
242     p_input->pf_set_program = SetProgram;
243     p_input->pf_set_area = SetArea;
244     p_input->pf_seek = Seek;
245
246     /* Parse the options passed in command line */
247
248     psz_parser = strdup( p_input->psz_name );
249     if ( !psz_parser )
250     {
251         free( p_dvb );
252         return( -1 );
253     }
254
255     var_Create( p_input, "dvb-adapter", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
256     var_Create( p_input, "dvb-device", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
257     var_Create( p_input, "dvb-frequency", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
258     var_Create( p_input, "dvb-inversion", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
259     var_Create( p_input, "dvb-probe", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
260     var_Create( p_input, "dvb-lnb-lof1", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
261     var_Create( p_input, "dvb-lnb-lof2", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
262     var_Create( p_input, "dvb-lnb-slof", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
263
264     var_Create( p_input, "dvb-budget-mode", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
265     var_Create( p_input, "dvb-satno", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
266     var_Create( p_input, "dvb-voltage", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
267     var_Create( p_input, "dvb-tone", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
268     var_Create( p_input, "dvb-fec", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
269     var_Create( p_input, "dvb-srate", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
270
271     var_Create( p_input, "dvb-modulation", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
272
273     var_Create( p_input, "dvb-code-rate-hp", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
274     var_Create( p_input, "dvb-code-rate-lp", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
275     var_Create( p_input, "dvb-bandwidth", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
276     var_Create( p_input, "dvb-transmission", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
277     var_Create( p_input, "dvb-guard", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
278     var_Create( p_input, "dvb-hierarchy", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
279
280     i_test = strtol( psz_parser, &psz_next, 10 );
281     if ( psz_next == psz_parser )
282     {
283         for ( ; ; )
284         {
285             GET_OPTION_INT("adapter")
286             else GET_OPTION_INT("device")
287             else GET_OPTION_INT("frequency")
288             else GET_OPTION_INT("inversion")
289             else GET_OPTION_BOOL("probe")
290             else GET_OPTION_INT("lnb-lof1")
291             else GET_OPTION_INT("lnb-lof2")
292             else GET_OPTION_INT("lnb-slof")
293
294             else GET_OPTION_BOOL("budget-mode")
295             else GET_OPTION_INT("voltage")
296             else GET_OPTION_INT("tone")
297             else GET_OPTION_INT("fec")
298             else GET_OPTION_INT("srate")
299
300             else GET_OPTION_INT("modulation")
301
302             else GET_OPTION_INT("code-rate-hp")
303             else GET_OPTION_INT("code-rate-lp")
304             else GET_OPTION_INT("bandwidth")
305             else GET_OPTION_INT("transmission")
306             else GET_OPTION_INT("guard")
307             else GET_OPTION_INT("hierarchy")
308
309             else if( !strncmp( psz_parser, "satno=",
310                                strlen( "satno=" ) ) )
311             {
312                 psz_parser += strlen( "satno=" );
313                 if ( *psz_parser == 'A' || *psz_parser == 'a' )
314                     val.i_int = -1;
315                 else if ( *psz_parser == 'B' || *psz_parser == 'b' )
316                     val.i_int = -2;
317                 else
318                     val.i_int = strtol( psz_parser, &psz_parser, 0 );
319                 var_Set( p_input, "dvb-satno", val );
320             }
321             /* Redundant with voltage but much easier to use */
322             else if( !strncmp( psz_parser, "polarization=",
323                                strlen( "polarization=" ) ) )
324             {
325                 psz_parser += strlen( "polarization=" );
326                 if ( *psz_parser == 'V' || *psz_parser == 'v' )
327                     val.i_int = 13;
328                 else if ( *psz_parser == 'H' || *psz_parser == 'h' )
329                     val.i_int = 18;
330                 else
331                 {
332                     msg_Err( p_input, "illegal polarization %c", *psz_parser );
333                     free( p_dvb );
334                     return -1;
335                 }
336                 var_Set( p_input, "dvb-voltage", val );
337             }
338             if ( *psz_parser )
339                 psz_parser++;
340             else
341                 break;
342         }
343     }
344     else
345     {
346         msg_Err( p_input, "the DVB input old syntax is deprecated, use vlc " \
347                  "-p dvb to see an explanation of the new syntax" );
348         free( p_dvb );
349         return -1;
350     }
351
352     /* Getting frontend info */
353     if ( E_(FrontendOpen)( p_input ) < 0 )
354     {
355         free( p_dvb );
356         return -1;
357     }
358
359     /* Setting frontend parameters for tuning the hardware */      
360     msg_Dbg( p_input, "trying to tune the frontend...");
361     if ( E_(FrontendSet)( p_input ) < 0 )
362     {
363         E_(FrontendClose)( p_input );
364         free( p_dvb );
365         return -1;
366     }
367
368     /* Opening DVR device */      
369     if ( E_(DVROpen)( p_input ) < 0 )
370     {
371         E_(FrontendClose)( p_input );
372         free( p_dvb );
373         return -1;
374     }
375
376     var_Get( p_input, "dvb-budget-mode", &val );
377     p_dvb->b_budget_mode = val.b_bool;
378     if ( val.b_bool )
379     {
380         msg_Dbg( p_input, "setting filter on all PIDs" );
381         AllocateDemux( p_input, 0x2000, OTHER_TYPE );
382     }
383     else
384     {
385         msg_Dbg( p_input, "setting filter on PAT" );
386         AllocateDemux( p_input, 0x0, OTHER_TYPE );
387     }
388
389     if( input_InitStream( p_input, sizeof( stream_ts_data_t ) ) == -1 )
390     {
391         msg_Err( p_input, "could not initialize stream structure" );
392         close( p_dvb->i_handle );
393         free( p_dvb );
394         return( -1 );
395     }
396
397     vlc_mutex_lock( &p_input->stream.stream_lock );
398
399     p_input->stream.b_pace_control = 0;
400     p_input->stream.b_seekable = 0;
401     p_input->stream.p_selected_area->i_tell = 0;
402
403     vlc_mutex_unlock( &p_input->stream.stream_lock );
404
405     p_input->i_mtu = SATELLITE_READ_ONCE * TS_PACKET_SIZE;
406     p_input->stream.i_method = INPUT_METHOD_SATELLITE;
407
408     return 0;
409 }
410
411 /*****************************************************************************
412  * Close : Close the device
413  *****************************************************************************/
414 static void Close( vlc_object_t *p_this )
415 {
416     input_thread_t *    p_input = (input_thread_t *)p_this;
417     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
418
419     if ( !p_dvb->b_budget_mode )
420     {
421         CloseProgram( p_input );
422     }
423     if ( p_dvb->p_demux_handles[0].i_type )
424     {
425         E_(DMXUnsetFilter)( p_input, p_dvb->p_demux_handles[0].i_handle );
426         p_dvb->p_demux_handles[0].i_type = 0;
427     }
428 }
429
430 /*****************************************************************************
431  * Read: reads data from the satellite card
432  *****************************************************************************/
433 static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer,
434                      size_t i_len )
435 {
436     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
437     ssize_t i_ret;
438     vlc_value_t val;
439     struct timeval timeout;
440     fd_set fds;
441
442     if ( !p_dvb->b_budget_mode && !p_dvb->p_demux_handles[1].i_type )
443     {
444         int i_program;
445         unsigned int i;
446         var_Get( p_input, "program", &val );
447         i_program = val.i_int;
448
449         /* FIXME : this is not demux2-compatible */
450         for ( i = 0; i < p_input->stream.i_pgrm_number; i++ )
451         {
452             /* Only set a filter on the selected program : some boards
453              * (read: Dreambox) only have 8 filters, so you don't want to
454              * spend them on unwanted PMTs. --Meuuh */
455             if ( !i_program
456                    || p_input->stream.pp_programs[i]->i_number == i_program )
457             {
458                 msg_Dbg( p_input, "setting filter on PMT pid %d",
459                          p_input->stream.pp_programs[i]->pp_es[0]->i_id );
460                 AllocateDemux( p_input,
461                         p_input->stream.pp_programs[i]->pp_es[0]->i_id,
462                         OTHER_TYPE );
463             }
464         }
465     }
466
467     /* Find if some data is available. This won't work under Windows. */
468
469     /* Initialize file descriptor set */
470     FD_ZERO( &fds );
471     FD_SET( p_dvb->i_handle, &fds );
472
473     /* We'll wait 0.5 second if nothing happens */
474     timeout.tv_sec = 0;
475     timeout.tv_usec = 500000;
476
477     /* Find if some data is available */
478     while ( (i_ret = select( p_dvb->i_handle + 1, &fds,
479                              NULL, NULL, &timeout )) == 0
480              || (i_ret < 0 && errno == EINTR) )
481     {
482         FD_ZERO( &fds );
483         FD_SET( p_dvb->i_handle, &fds );
484         timeout.tv_sec = 0;
485         timeout.tv_usec = 500000;
486
487         if ( p_input->b_die || p_input->b_error )
488         {
489             return 0;
490         }
491     }
492
493     if ( i_ret < 0 )
494     {
495 #ifdef HAVE_ERRNO_H
496         msg_Err( p_input, "select error (%s)", strerror(errno) );
497 #else
498         msg_Err( p_input, "select error" );
499 #endif
500         return -1;
501     }
502
503     i_ret = read( p_dvb->i_handle, p_buffer, i_len );
504  
505     if( i_ret < 0 )
506     {
507 #ifdef HAVE_ERRNO_H
508         msg_Err( p_input, "read failed (%s)", strerror(errno) );
509 #else
510         msg_Err( p_input, "read failed" );
511 #endif
512     }
513
514     return i_ret;
515 }
516
517 /*****************************************************************************
518  * SetArea : Does nothing
519  *****************************************************************************/
520 static int SetArea( input_thread_t * p_input, input_area_t * p_area )
521 {
522     return -1;
523 }
524
525 /*****************************************************************************
526  * SetProgram : Sets the card filters according to the selected program,
527  *              and makes the appropriate changes to stream structure.
528  *****************************************************************************/
529 static int SetProgram( input_thread_t    * p_input,
530                        pgrm_descriptor_t * p_new_prg )
531 {
532     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
533     unsigned int i_es_index;
534     vlc_value_t val;
535     int i_video_type = VIDEO0_TYPE;
536     int i_audio_type = AUDIO0_TYPE;
537
538     if ( p_input->stream.p_selected_program )
539     {
540         for ( i_es_index = 0; /* 0 should be the PMT */
541                 i_es_index < p_input->stream.p_selected_program->i_es_number;
542                 i_es_index ++ )
543         {
544 #define p_es p_input->stream.p_selected_program->pp_es[i_es_index]
545             if ( p_es->p_dec )
546             {
547                 input_UnselectES( p_input , p_es );
548             }
549 #undef p_es
550         }
551     }
552
553     if ( !p_dvb->b_budget_mode )
554     {
555         msg_Dbg( p_input, "unsetting filters on all pids" );
556         CloseProgram( p_input );
557         msg_Dbg( p_input, "setting filter on PMT pid %d",
558                  p_new_prg->pp_es[0]->i_id );
559         AllocateDemux( p_input, p_new_prg->pp_es[0]->i_id, OTHER_TYPE );
560     }
561
562     for ( i_es_index = 1; i_es_index < p_new_prg->i_es_number;
563           i_es_index++ )
564     {
565 #define p_es p_new_prg->pp_es[i_es_index]
566         switch( p_es->i_cat )
567         {
568         case VIDEO_ES:
569             if ( !p_dvb->b_budget_mode )
570             {
571                 msg_Dbg(p_input, "setting filter on video ES 0x%x",
572                         p_es->i_id);
573                 /* Always set the filter. This may seem a little odd, but
574                  * it allows you to stream the video with demuxstream
575                  * without having a decoder or a stream output behind.
576                  * The result is you'll sometimes filter a PID which you
577                  * don't really want, but in the most common cases it
578                  * should be OK. --Meuuh */
579                 AllocateDemux( p_input, p_es->i_id, i_video_type );
580                 i_video_type += TYPE_INTERVAL;
581             }
582             input_SelectES( p_input, p_es );
583             break;
584
585         case AUDIO_ES:
586             if ( !p_dvb->b_budget_mode )
587             {
588                 msg_Dbg(p_input, "setting filter on audio ES 0x%x",
589                         p_es->i_id);
590                 AllocateDemux( p_input, p_es->i_id, i_audio_type );
591                 i_audio_type += TYPE_INTERVAL;
592             }
593             input_SelectES( p_input, p_es );
594             break;
595         default:
596             if ( !p_dvb->b_budget_mode )
597             {
598                 msg_Dbg(p_input, "setting filter on other ES 0x%x",
599                         p_es->i_id);
600                 AllocateDemux( p_input, p_es->i_id, OTHER_TYPE );
601             }
602             input_SelectES( p_input, p_es );
603             break;
604         }
605 #undef p_es
606     }
607
608     p_input->stream.p_selected_program = p_new_prg;
609
610     /* Update the navigation variables without triggering a callback */
611     val.i_int = p_new_prg->i_number;
612     var_Change( p_input, "program", VLC_VAR_SETVALUE, &val, NULL );
613
614     return 0;
615 }
616
617 /*****************************************************************************
618  * Seek: does nothing (not a seekable stream
619  *****************************************************************************/
620 static void Seek( input_thread_t * p_input, off_t i_off )
621 {
622     ;
623 }
624
625 /*****************************************************************************
626  * AllocateDemux:
627  *****************************************************************************/
628 static void AllocateDemux( input_thread_t * p_input, int i_pid,
629                            int i_type )
630 {
631     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
632     int                 i;
633
634     /* Find first free slot */
635     for ( i = 0; i < MAX_DEMUX; i++ )
636     {
637         if ( !p_dvb->p_demux_handles[i].i_type )
638         {
639             if ( E_(DMXSetFilter)( p_input, i_pid,
640                                    &p_dvb->p_demux_handles[i].i_handle,
641                                    i_type ) < 0 )
642             {
643                 break;
644             }
645             p_dvb->p_demux_handles[i].i_type = i_type;
646             p_dvb->p_demux_handles[i].i_pid = i_pid;
647             break;
648         }
649     }
650 }
651
652 /*****************************************************************************
653  * CloseProgram:
654  *****************************************************************************/
655 static void CloseProgram( input_thread_t * p_input )
656 {
657     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
658     int                 i;
659
660     for ( i = 1; i < MAX_DEMUX; i++ )
661     {
662         if ( p_dvb->p_demux_handles[i].i_type )
663         {
664             E_(DMXUnsetFilter)( p_input, p_dvb->p_demux_handles[i].i_handle );
665             p_dvb->p_demux_handles[i].i_type = 0;
666         }
667     }
668 }
669
670