]> git.sesse.net Git - vlc/blob - modules/access/dvb/access.c
* modules/access/dvb: Major rewrite of the code.
[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     add_integer( "dvb-program", 0, NULL, PROGRAM_TEXT, PROGRAM_LONGTEXT,
147                  VLC_FALSE );
148     add_integer( "dvb-adapter", 0, NULL, ADAPTER_TEXT, ADAPTER_LONGTEXT,
149                  VLC_FALSE );
150     add_integer( "dvb-device", 0, NULL, DEVICE_TEXT, DEVICE_LONGTEXT,
151                  VLC_FALSE );
152     add_integer( "dvb-frequency", 11954000, NULL, FREQ_TEXT, FREQ_LONGTEXT,
153                  VLC_FALSE );
154     add_integer( "dvb-inversion", 2, NULL, INVERSION_TEXT, INVERSION_LONGTEXT,
155                  VLC_TRUE );
156     add_bool( "dvb-probe", 1, NULL, PROBE_TEXT, PROBE_LONGTEXT, VLC_TRUE );
157     add_integer( "dvb-lnb-lof1", 9750000, NULL, LNB_LOF1_TEXT, LNB_LOF1_LONGTEXT,
158                  VLC_TRUE );
159     add_integer( "dvb-lnb-lof2", 10600000, NULL, LNB_LOF2_TEXT, LNB_LOF2_LONGTEXT,
160                  VLC_TRUE );
161     add_integer( "dvb-lnb-slof", 11700000, NULL, LNB_SLOF_TEXT,
162                  LNB_SLOF_LONGTEXT, VLC_TRUE );
163     /* DVB-S (satellite) */
164     add_bool( "dvb-budget-mode", 0, NULL, BUDGET_TEXT, BUDGET_LONGTEXT,
165               VLC_FALSE );
166     add_integer( "dvb-satno", 0, NULL, SATNO_TEXT, SATNO_LONGTEXT,
167                  VLC_TRUE );
168     add_integer( "dvb-voltage", 13, NULL, VOLTAGE_TEXT, VOLTAGE_LONGTEXT,
169                  VLC_FALSE );
170     add_integer( "dvb-tone", -1, NULL, TONE_TEXT, TONE_LONGTEXT,
171                  VLC_FALSE );
172     add_integer( "dvb-fec", 9, NULL, FEC_TEXT, FEC_LONGTEXT, VLC_TRUE );
173     add_integer( "dvb-srate", 27500000, NULL, SRATE_TEXT, SRATE_LONGTEXT,
174                  VLC_FALSE );
175     /* DVB-T (terrestrial) */
176     add_integer( "dvb-modulation", 0, NULL, MODULATION_TEXT, MODULATION_LONGTEXT,
177                  VLC_TRUE );
178     /* DVB-T (terrestrial) */
179     add_integer( "dvb-code-rate-hp", 9, NULL, CODE_RATE_HP_TEXT,
180                  CODE_RATE_HP_LONGTEXT, VLC_TRUE );
181     add_integer( "dvb-code-rate-lp", 9, NULL, CODE_RATE_LP_TEXT,
182                  CODE_RATE_LP_LONGTEXT, VLC_TRUE );
183     add_integer( "dvb-bandwidth", 0, NULL, BANDWIDTH_TEXT, BANDWIDTH_LONGTEXT,
184                  VLC_TRUE );
185     add_integer( "dvb-guard", 0, NULL, GUARD_TEXT, GUARD_LONGTEXT, VLC_TRUE );
186     add_integer( "dvb-transmission", 0, NULL, TRANSMISSION_TEXT,
187                  TRANSMISSION_LONGTEXT, VLC_TRUE );
188     add_integer( "dvb-hierarchy", 0, NULL, HIERARCHY_TEXT, HIERARCHY_LONGTEXT,
189                  VLC_TRUE );
190
191     set_capability( "access", 0 );
192     add_shortcut( "dvb" );
193     add_shortcut( "dvb-s" );
194     add_shortcut( "qpsk" );
195     add_shortcut( "dvb-c" );
196     add_shortcut( "cable" );
197     add_shortcut( "dvb-t" );
198     add_shortcut( "terrestrial" );
199     add_shortcut( "satellite" );    /* compatibility with the interface. */
200     set_callbacks( Open, Close );
201 vlc_module_end();
202
203 /*****************************************************************************
204  * Open: open the frontend device
205  *****************************************************************************/
206 #define GET_OPTION_INT( option )                                            \
207     if ( !strncmp( psz_parser, option "=", strlen(option "=") ) )           \
208     {                                                                       \
209         val.i_int = strtol( psz_parser + strlen(option "="), &psz_parser,   \
210                             0 );                                            \
211         var_Set( p_input, "dvb-" option, val );                             \
212     }
213
214 #define GET_OPTION_BOOL( option )                                           \
215     if ( !strncmp( psz_parser, option "=", strlen(option "=") ) )           \
216     {                                                                       \
217         val.b_bool = strtol( psz_parser + strlen(option "="), &psz_parser,  \
218                              0 );                                           \
219         var_Set( p_input, "dvb-" option, val );                             \
220     }
221
222 static int Open( vlc_object_t *p_this )
223 {
224     input_thread_t *    p_input = (input_thread_t *)p_this;
225     thread_dvb_data_t * p_dvb;
226     char *              psz_parser;
227     char *              psz_next;
228     vlc_value_t         val;
229     int                 i_test;
230
231     /* Initialize structure */
232     p_dvb = malloc( sizeof( thread_dvb_data_t ) );
233     if( p_dvb == NULL )
234     {
235         msg_Err( p_input, "out of memory" );
236         return -1;
237     }
238     memset( p_dvb, 0, sizeof(thread_dvb_data_t) );
239     p_input->p_access_data = (void *)p_dvb;
240
241     /* Register callback functions */
242     p_input->pf_read = Read;
243     p_input->pf_set_program = SetProgram;
244     p_input->pf_set_area = SetArea;
245     p_input->pf_seek = Seek;
246
247     /* Parse the options passed in command line */
248
249     psz_parser = strdup( p_input->psz_name );
250     if ( !psz_parser )
251     {
252         free( p_dvb );
253         return( -1 );
254     }
255
256     var_Create( p_input, "dvb-program", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
257     var_Create( p_input, "dvb-adapter", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
258     var_Create( p_input, "dvb-device", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
259     var_Create( p_input, "dvb-frequency", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
260     var_Create( p_input, "dvb-inversion", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
261     var_Create( p_input, "dvb-probe", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
262     var_Create( p_input, "dvb-lnb-lof1", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
263     var_Create( p_input, "dvb-lnb-lof2", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
264     var_Create( p_input, "dvb-lnb-slof", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
265
266     var_Create( p_input, "dvb-budget-mode", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
267     var_Create( p_input, "dvb-satno", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
268     var_Create( p_input, "dvb-voltage", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
269     var_Create( p_input, "dvb-tone", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
270     var_Create( p_input, "dvb-fec", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
271     var_Create( p_input, "dvb-srate", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
272
273     var_Create( p_input, "dvb-modulation", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
274
275     var_Create( p_input, "dvb-code-rate-hp", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
276     var_Create( p_input, "dvb-code-rate-lp", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
277     var_Create( p_input, "dvb-bandwidth", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
278     var_Create( p_input, "dvb-transmission", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
279     var_Create( p_input, "dvb-guard", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
280     var_Create( p_input, "dvb-hierarchy", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
281
282     i_test = strtol( psz_parser, &psz_next, 10 );
283     if ( psz_next == psz_parser )
284     {
285         for ( ; ; )
286         {
287             GET_OPTION_INT("adapter")
288             else GET_OPTION_INT("device")
289             else GET_OPTION_INT("frequency")
290             else GET_OPTION_INT("inversion")
291             else GET_OPTION_BOOL("probe")
292             else GET_OPTION_INT("lnb-lof1")
293             else GET_OPTION_INT("lnb-lof2")
294             else GET_OPTION_INT("lnb-slof")
295
296             else GET_OPTION_BOOL("budget-mode")
297             else GET_OPTION_INT("voltage")
298             else GET_OPTION_INT("tone")
299             else GET_OPTION_INT("fec")
300             else GET_OPTION_INT("srate")
301
302             else GET_OPTION_INT("modulation")
303
304             else GET_OPTION_INT("code-rate-hp")
305             else GET_OPTION_INT("code-rate-lp")
306             else GET_OPTION_INT("bandwidth")
307             else GET_OPTION_INT("transmission")
308             else GET_OPTION_INT("guard")
309             else GET_OPTION_INT("hierarchy")
310
311             else if( !strncmp( psz_parser, "satno=",
312                                strlen( "satno=" ) ) )
313             {
314                 psz_parser += strlen( "satno=" );
315                 if ( *psz_parser == 'A' || *psz_parser == 'a' )
316                     val.i_int = -1;
317                 else if ( *psz_parser == 'B' || *psz_parser == 'b' )
318                     val.i_int = -2;
319                 else
320                     val.i_int = strtol( psz_parser, &psz_parser, 0 );
321                 var_Set( p_input, "dvb-satno", val );
322             }
323             /* Redundant with voltage but much easier to use */
324             else if( !strncmp( psz_parser, "polarization=",
325                                strlen( "polarization=" ) ) )
326             {
327                 psz_parser += strlen( "polarization=" );
328                 if ( *psz_parser == 'V' || *psz_parser == 'v' )
329                     val.i_int = 13;
330                 else if ( *psz_parser == 'H' || *psz_parser == 'h' )
331                     val.i_int = 18;
332                 else
333                 {
334                     msg_Err( p_input, "illegal polarization %c", *psz_parser );
335                     free( p_dvb );
336                     return -1;
337                 }
338                 var_Set( p_input, "dvb-voltage", val );
339             }
340             if ( *psz_parser )
341                 psz_parser++;
342             else
343                 break;
344         }
345     }
346     else
347     {
348         msg_Err( p_input, "the DVB input old syntax is deprecated, use vlc " \
349                  "-p dvb to see an explanation of the new syntax" );
350         free( p_dvb );
351         return -1;
352     }
353
354     /* Getting frontend info */
355     if ( E_(FrontendOpen)( p_input ) < 0 )
356     {
357         free( p_dvb );
358         return -1;
359     }
360
361     /* Setting frontend parameters for tuning the hardware */      
362     msg_Dbg( p_input, "trying to tune the frontend...");
363     if ( E_(FrontendSet)( p_input ) < 0 )
364     {
365         E_(FrontendClose)( p_input );
366         free( p_dvb );
367         return -1;
368     }
369
370     /* Opening DVR device */      
371     if ( E_(DVROpen)( p_input ) < 0 )
372     {
373         E_(FrontendClose)( p_input );
374         free( p_dvb );
375         return -1;
376     }
377
378     var_Get( p_input, "dvb-budget-mode", &val );
379     p_dvb->b_budget_mode = val.b_bool;
380     if ( val.b_bool )
381     {
382         msg_Dbg( p_input, "setting filter on all PIDs" );
383         AllocateDemux( p_input, 0x2000, OTHER_TYPE );
384     }
385     else
386     {
387         msg_Dbg( p_input, "setting filter on PAT" );
388         AllocateDemux( p_input, 0x0, OTHER_TYPE );
389     }
390
391     if( input_InitStream( p_input, sizeof( stream_ts_data_t ) ) == -1 )
392     {
393         msg_Err( p_input, "could not initialize stream structure" );
394         close( p_dvb->i_handle );
395         free( p_dvb );
396         return( -1 );
397     }
398
399     vlc_mutex_lock( &p_input->stream.stream_lock );
400
401     p_input->stream.b_pace_control = 0;
402     p_input->stream.b_seekable = 0;
403     p_input->stream.p_selected_area->i_tell = 0;
404
405     vlc_mutex_unlock( &p_input->stream.stream_lock );
406
407     p_input->i_mtu = SATELLITE_READ_ONCE * TS_PACKET_SIZE;
408     p_input->stream.i_method = INPUT_METHOD_SATELLITE;
409
410     return 0;
411 }
412
413 /*****************************************************************************
414  * Close : Close the device
415  *****************************************************************************/
416 static void Close( vlc_object_t *p_this )
417 {
418     input_thread_t *    p_input = (input_thread_t *)p_this;
419     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
420
421     if ( !p_dvb->b_budget_mode )
422     {
423         CloseProgram( p_input );
424     }
425     if ( p_dvb->p_demux_handles[0].i_type )
426     {
427         E_(DMXUnsetFilter)( p_input, p_dvb->p_demux_handles[0].i_handle );
428         p_dvb->p_demux_handles[0].i_type = 0;
429     }
430 }
431
432 /*****************************************************************************
433  * Read: reads data from the satellite card
434  *****************************************************************************/
435 static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer,
436                      size_t i_len )
437 {
438     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
439     ssize_t i_ret;
440     vlc_value_t val;
441     struct timeval timeout;
442     fd_set fds;
443
444     if ( !p_dvb->b_budget_mode && !p_dvb->p_demux_handles[1].i_type )
445     {
446         int i_program;
447         unsigned int i;
448         var_Get( p_input, "dvb-program", &val );
449         i_program = val.i_int;
450
451         /* FIXME : this is not demux2-compatible */
452         for ( i = 0; i < p_input->stream.i_pgrm_number; i++ )
453         {
454             /* Only set a filter on the selected program : some boards
455              * (read: Dreambox) only have 8 filters, so you don't want to
456              * spend them on unwanted PMTs. --Meuuh */
457             msg_Err(p_input, "Meuuh %d %d %d", p_input->stream.pp_programs[i]->i_number, p_input->stream.pp_programs[i]->pp_es[0]->i_id, i_program);
458             if ( !i_program
459                    || p_input->stream.pp_programs[i]->i_number == i_program )
460             {
461                 msg_Dbg( p_input, "setting filter on PMT pid %d",
462                          p_input->stream.pp_programs[i]->pp_es[0]->i_id );
463                 AllocateDemux( p_input,
464                         p_input->stream.pp_programs[i]->pp_es[0]->i_id,
465                         OTHER_TYPE );
466             }
467         }
468     }
469
470     /* Find if some data is available. This won't work under Windows. */
471
472     /* Initialize file descriptor set */
473     FD_ZERO( &fds );
474     FD_SET( p_dvb->i_handle, &fds );
475
476     /* We'll wait 0.5 second if nothing happens */
477     timeout.tv_sec = 0;
478     timeout.tv_usec = 500000;
479
480     /* Find if some data is available */
481     while ( (i_ret = select( p_dvb->i_handle + 1, &fds,
482                              NULL, NULL, &timeout )) == 0
483              || (i_ret < 0 && errno == EINTR) )
484     {
485         FD_ZERO( &fds );
486         FD_SET( p_dvb->i_handle, &fds );
487         timeout.tv_sec = 0;
488         timeout.tv_usec = 500000;
489
490         if ( p_input->b_die || p_input->b_error )
491         {
492             return 0;
493         }
494     }
495
496     if ( i_ret < 0 )
497     {
498 #ifdef HAVE_ERRNO_H
499         msg_Err( p_input, "select error (%s)", strerror(errno) );
500 #else
501         msg_Err( p_input, "select error" );
502 #endif
503         return -1;
504     }
505
506     i_ret = read( p_dvb->i_handle, p_buffer, i_len );
507  
508     if( i_ret < 0 )
509     {
510 #ifdef HAVE_ERRNO_H
511         msg_Err( p_input, "read failed (%s)", strerror(errno) );
512 #else
513         msg_Err( p_input, "read failed" );
514 #endif
515     }
516
517     return i_ret;
518 }
519
520 /*****************************************************************************
521  * SetArea : Does nothing
522  *****************************************************************************/
523 static int SetArea( input_thread_t * p_input, input_area_t * p_area )
524 {
525     return -1;
526 }
527
528 /*****************************************************************************
529  * SetProgram : Sets the card filters according to the selected program,
530  *              and makes the appropriate changes to stream structure.
531  *****************************************************************************/
532 static int SetProgram( input_thread_t    * p_input,
533                        pgrm_descriptor_t * p_new_prg )
534 {
535     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
536     unsigned int i_es_index;
537     vlc_value_t val;
538     int i_video_type = VIDEO0_TYPE;
539     int i_audio_type = AUDIO0_TYPE;
540
541     if ( p_input->stream.p_selected_program )
542     {
543         for ( i_es_index = 0; /* 0 should be the PMT */
544                 i_es_index < p_input->stream.p_selected_program->i_es_number;
545                 i_es_index ++ )
546         {
547 #define p_es p_input->stream.p_selected_program->pp_es[i_es_index]
548             if ( p_es->p_dec )
549             {
550                 input_UnselectES( p_input , p_es );
551             }
552 #undef p_es
553         }
554     }
555
556     if ( !p_dvb->b_budget_mode )
557     {
558         msg_Dbg( p_input, "unsetting filters on all pids" );
559         CloseProgram( p_input );
560         msg_Dbg( p_input, "setting filter on PMT pid %d",
561                  p_new_prg->pp_es[0]->i_id );
562         AllocateDemux( p_input, p_new_prg->pp_es[0]->i_id, OTHER_TYPE );
563     }
564
565     for ( i_es_index = 1; i_es_index < p_new_prg->i_es_number;
566           i_es_index++ )
567     {
568 #define p_es p_new_prg->pp_es[i_es_index]
569         switch( p_es->i_cat )
570         {
571         case VIDEO_ES:
572             if ( !p_dvb->b_budget_mode )
573             {
574                 msg_Dbg(p_input, "setting filter on video ES 0x%x",
575                         p_es->i_id);
576                 /* Always set the filter. This may seem a little odd, but
577                  * it allows you to stream the video with demuxstream
578                  * without having a decoder or a stream output behind.
579                  * The result is you'll sometimes filter a PID which you
580                  * don't really want, but in the most common cases it
581                  * should be OK. --Meuuh */
582                 AllocateDemux( p_input, p_es->i_id, i_video_type );
583                 i_video_type += TYPE_INTERVAL;
584             }
585             input_SelectES( p_input, p_es );
586             break;
587
588         case AUDIO_ES:
589             if ( !p_dvb->b_budget_mode )
590             {
591                 msg_Dbg(p_input, "setting filter on audio ES 0x%x",
592                         p_es->i_id);
593                 AllocateDemux( p_input, p_es->i_id, i_audio_type );
594                 i_audio_type += TYPE_INTERVAL;
595             }
596             input_SelectES( p_input, p_es );
597             break;
598         default:
599             if ( !p_dvb->b_budget_mode )
600             {
601                 msg_Dbg(p_input, "setting filter on other ES 0x%x",
602                         p_es->i_id);
603                 AllocateDemux( p_input, p_es->i_id, OTHER_TYPE );
604             }
605             input_SelectES( p_input, p_es );
606             break;
607         }
608 #undef p_es
609     }
610
611     p_input->stream.p_selected_program = p_new_prg;
612
613     /* Update the navigation variables without triggering a callback */
614     val.i_int = p_new_prg->i_number;
615     var_Change( p_input, "program", VLC_VAR_SETVALUE, &val, NULL );
616
617     return 0;
618 }
619
620 /*****************************************************************************
621  * Seek: does nothing (not a seekable stream
622  *****************************************************************************/
623 static void Seek( input_thread_t * p_input, off_t i_off )
624 {
625     ;
626 }
627
628 /*****************************************************************************
629  * AllocateDemux:
630  *****************************************************************************/
631 static void AllocateDemux( input_thread_t * p_input, int i_pid,
632                            int i_type )
633 {
634     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
635     int                 i;
636
637     /* Find first free slot */
638     for ( i = 0; i < MAX_DEMUX; i++ )
639     {
640         if ( !p_dvb->p_demux_handles[i].i_type )
641         {
642             if ( E_(DMXSetFilter)( p_input, i_pid,
643                                    &p_dvb->p_demux_handles[i].i_handle,
644                                    i_type ) < 0 )
645             {
646                 break;
647             }
648             p_dvb->p_demux_handles[i].i_type = i_type;
649             p_dvb->p_demux_handles[i].i_pid = i_pid;
650             break;
651         }
652     }
653 }
654
655 /*****************************************************************************
656  * CloseProgram:
657  *****************************************************************************/
658 static void CloseProgram( input_thread_t * p_input )
659 {
660     thread_dvb_data_t * p_dvb = (thread_dvb_data_t *)p_input->p_access_data;
661     int                 i;
662
663     for ( i = 1; i < MAX_DEMUX; i++ )
664     {
665         if ( p_dvb->p_demux_handles[i].i_type )
666         {
667             E_(DMXUnsetFilter)( p_input, p_dvb->p_demux_handles[i].i_handle );
668             p_dvb->p_demux_handles[i].i_type = 0;
669         }
670     }
671 }
672
673