]> git.sesse.net Git - vlc/blob - modules/access/pvr.c
Don't print a message a malloc failed.
[vlc] / modules / access / pvr.c
1 /*****************************************************************************
2  * pvr.c
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Eric Petit <titer@videolan.org>
8  *          Paul Corke <paulc@datatote.co.uk>
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 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_access.h>
35
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <fcntl.h>
39 #include <unistd.h>
40 #include <errno.h>
41 #include <linux/types.h>
42 #include <sys/ioctl.h>
43 #include <sys/poll.h>
44 #ifdef HAVE_NEW_LINUX_VIDEODEV2_H
45 #   ifdef VIDEODEV2_H_FILE
46 #   include VIDEODEV2_H_FILE
47 #   else
48 #   include <linux/videodev2.h>
49 #   endif
50 #else
51 #include "videodev2.h"
52 #endif
53
54 /*****************************************************************************
55  * Module descriptor
56  *****************************************************************************/
57 static int  Open ( vlc_object_t * );
58 static void Close( vlc_object_t * );
59
60 #define CACHING_TEXT N_("Caching value in ms")
61 #define CACHING_LONGTEXT N_( \
62     "Default caching value for PVR streams. This " \
63     "value should be set in milliseconds." )
64
65 #define DEVICE_TEXT N_( "Device" )
66 #define DEVICE_LONGTEXT N_( "PVR video device" )
67
68 #define RADIO_DEVICE_TEXT N_( "Radio device" )
69 #define RADIO_DEVICE_LONGTEXT N_( "PVR radio device" )
70
71 #define NORM_TEXT N_( "Norm" )
72 #define NORM_LONGTEXT N_( "Norm of the stream " \
73     "(Automatic, SECAM, PAL, or NTSC)." )
74
75 #define WIDTH_TEXT N_( "Width" )
76 #define WIDTH_LONGTEXT N_( "Width of the stream to capture " \
77     "(-1 for autodetection)." )
78
79 #define HEIGHT_TEXT N_( "Height" )
80 #define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \
81     "(-1 for autodetection)." )
82
83 #define FREQUENCY_TEXT N_( "Frequency" )
84 #define FREQUENCY_LONGTEXT N_( "Frequency to capture (in kHz), if applicable." )
85
86 #define FRAMERATE_TEXT N_( "Framerate" )
87 #define FRAMERATE_LONGTEXT N_( "Framerate to capture, if applicable " \
88     "(-1 for autodetect)." )
89
90 #define KEYINT_TEXT N_( "Key interval" )
91 #define KEYINT_LONGTEXT N_( "Interval between keyframes (-1 for autodetect)." )
92
93 #define BFRAMES_TEXT N_( "B Frames" )
94 #define BFRAMES_LONGTEXT N_("If this option is set, B-Frames will be used. " \
95     "Use this option to set the number of B-Frames.")
96
97 #define BITRATE_TEXT N_( "Bitrate" )
98 #define BITRATE_LONGTEXT N_( "Bitrate to use (-1 for default)." )
99
100 #define BITRATE_PEAK_TEXT N_( "Bitrate peak" )
101 #define BITRATE_PEAK_LONGTEXT N_( "Peak bitrate in VBR mode." )
102
103 #define BITRATE_MODE_TEXT N_( "Bitrate mode" )
104 #define BITRATE_MODE_LONGTEXT N_( "Bitrate mode to use (VBR or CBR)." )
105
106 #define BITMASK_TEXT N_( "Audio bitmask" )
107 #define BITMASK_LONGTEXT N_("Bitmask that will "\
108     "get used by the audio part of the card." )
109
110 #define VOLUME_TEXT N_( "Volume" )
111 #define VOLUME_LONGTEXT N_("Audio volume (0-65535)." )
112
113 #define CHAN_TEXT N_( "Channel" )
114 #define CHAN_LONGTEXT N_( "Channel of the card to use (Usually, 0 = tuner, " \
115     "1 = composite, 2 = svideo)" )
116
117 static const int i_norm_list[] =
118     { V4L2_STD_UNKNOWN, V4L2_STD_SECAM, V4L2_STD_PAL, V4L2_STD_NTSC };
119 static const char *const psz_norm_list_text[] =
120     { N_("Automatic"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
121
122 static const int i_bitrates[] = { 0, 1 };
123 static const char *const psz_bitrates_list_text[] = { N_("vbr"), N_("cbr") };
124
125 static const int pi_radio_range[2] = { 65000, 108000 };
126
127 vlc_module_begin();
128     set_shortname( N_("PVR") );
129     set_description( N_("IVTV MPEG Encoding cards input") );
130     set_category( CAT_INPUT );
131     set_subcategory( SUBCAT_INPUT_ACCESS );
132     set_capability( "access", 0 );
133     add_shortcut( "pvr" );
134
135     add_integer( "pvr-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
136                  CACHING_LONGTEXT, true );
137     add_string( "pvr-device", "/dev/video0", NULL, DEVICE_TEXT,
138                  DEVICE_LONGTEXT, false );
139     add_string( "pvr-radio-device", "/dev/radio0", NULL, RADIO_DEVICE_TEXT,
140                  RADIO_DEVICE_LONGTEXT, false );
141     add_integer( "pvr-norm", V4L2_STD_UNKNOWN , NULL, NORM_TEXT,
142                  NORM_LONGTEXT, false );
143        change_integer_list( i_norm_list, psz_norm_list_text, 0 );
144     add_integer( "pvr-width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, true );
145     add_integer( "pvr-height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT,
146                  true );
147     add_integer( "pvr-frequency", -1, NULL, FREQUENCY_TEXT, FREQUENCY_LONGTEXT,
148                  false );
149     add_integer( "pvr-framerate", -1, NULL, FRAMERATE_TEXT, FRAMERATE_LONGTEXT,
150                  true );
151     add_integer( "pvr-keyint", -1, NULL, KEYINT_TEXT, KEYINT_LONGTEXT,
152                  true );
153     add_integer( "pvr-bframes", -1, NULL, FRAMERATE_TEXT, FRAMERATE_LONGTEXT,
154                  true );
155     add_integer( "pvr-bitrate", -1, NULL, BITRATE_TEXT, BITRATE_LONGTEXT,
156                  false );
157     add_integer( "pvr-bitrate-peak", -1, NULL, BITRATE_PEAK_TEXT,
158                  BITRATE_PEAK_LONGTEXT, true );
159     add_integer( "pvr-bitrate-mode", -1, NULL, BITRATE_MODE_TEXT,
160                  BITRATE_MODE_LONGTEXT, true );
161         change_integer_list( i_bitrates, psz_bitrates_list_text, 0 );
162     add_integer( "pvr-audio-bitmask", -1, NULL, BITMASK_TEXT,
163                  BITMASK_LONGTEXT, true );
164     add_integer( "pvr-audio-volume", -1, NULL, VOLUME_TEXT,
165                  VOLUME_LONGTEXT, true );
166     add_integer( "pvr-channel", -1, NULL, CHAN_TEXT, CHAN_LONGTEXT, true );
167
168     set_callbacks( Open, Close );
169 vlc_module_end();
170
171 /*****************************************************************************
172  * Prototypes
173  *****************************************************************************/
174 static ssize_t Read   ( access_t *, uint8_t *, size_t );
175 static int Control( access_t *, int, va_list );
176
177 /* ivtv specific ioctls */
178 #define IVTV_IOC_G_CODEC    0xFFEE7703
179 #define IVTV_IOC_S_CODEC    0xFFEE7704
180
181 /* for use with IVTV_IOC_G_CODEC and IVTV_IOC_S_CODEC */
182
183 struct ivtv_ioctl_codec {
184     uint32_t aspect;
185     uint32_t audio_bitmask;
186     uint32_t bframes;
187     uint32_t bitrate_mode;
188     uint32_t bitrate;
189     uint32_t bitrate_peak;
190     uint32_t dnr_mode;
191     uint32_t dnr_spatial;
192     uint32_t dnr_temporal;
193     uint32_t dnr_type;
194     uint32_t framerate;
195     uint32_t framespergop;
196     uint32_t gop_closure;
197     uint32_t pulldown;
198     uint32_t stream_type;
199 };
200
201 struct access_sys_t
202 {
203     /* file descriptor */
204     int i_fd;
205     int i_radio_fd;
206
207     char *psz_videodev;
208     char *psz_radiodev;
209
210     /* options */
211     int i_standard;
212     int i_width;
213     int i_height;
214     int i_frequency;
215     int i_framerate;
216     int i_keyint;
217     int i_bframes;
218     int i_bitrate;
219     int i_bitrate_peak;
220     int i_bitrate_mode;
221     int i_audio_bitmask;
222     int i_input;
223     int i_volume;
224
225     /* driver version */
226     bool b_v4l2_api;
227 };
228
229 /*****************************************************************************
230  * ConfigureIVTV: set up codec parameters using the old ivtv api
231  *****************************************************************************/
232 static int ConfigureIVTV( access_t * p_access )
233 {
234     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
235     struct ivtv_ioctl_codec codec;
236     int result;
237
238     memset( &codec, 0, sizeof(struct ivtv_ioctl_codec) );
239
240     result = ioctl( p_sys->i_fd, IVTV_IOC_G_CODEC, &codec );
241     if( result < 0 )
242     {
243         msg_Err( p_access, "Failed to read current capture card settings." );
244         return VLC_EGENERIC;
245     }
246
247     if( p_sys->i_framerate != -1 )
248     {
249         switch( p_sys->i_framerate )
250         {
251             case 30:
252                 codec.framerate = 0;
253                 break;
254
255             case 25:
256                 codec.framerate = 1;
257                 break;
258
259             default:
260                 msg_Warn( p_access, "Invalid framerate, reverting to 25." );
261                 codec.framerate = 1;
262                 break;
263         }
264     }
265
266     if( p_sys->i_bitrate != -1 )
267     {
268         codec.bitrate = p_sys->i_bitrate;
269     }
270
271     if( p_sys->i_bitrate_peak != -1 )
272     {
273         codec.bitrate_peak = p_sys->i_bitrate_peak;
274     }
275
276     if( p_sys->i_bitrate_mode != -1 )
277     {
278         codec.bitrate_mode = p_sys->i_bitrate_mode;
279     }
280
281     if( p_sys->i_audio_bitmask != -1 )
282     {
283         codec.audio_bitmask = p_sys->i_audio_bitmask;
284     }
285
286     if( p_sys->i_keyint != -1 )
287     {
288         codec.framespergop = p_sys->i_keyint;
289     }
290
291     if( p_sys->i_bframes != -1 )
292     {
293         codec.bframes = p_sys->i_bframes;
294     }
295
296     result = ioctl( p_sys->i_fd, IVTV_IOC_S_CODEC, &codec );
297     if( result  < 0 )
298     {
299         msg_Err( p_access, "Failed to write new capture card settings." );
300         return VLC_EGENERIC;
301     }
302
303     msg_Dbg( p_access, "Setting codec parameters to:  framerate: "
304                         "%d, bitrate: %d/%d/%d",
305                         codec.framerate, codec.bitrate,
306                         codec.bitrate_peak, codec.bitrate_mode );
307     return VLC_SUCCESS;
308 }
309
310 #ifdef HAVE_NEW_LINUX_VIDEODEV2_H
311
312 #define MAX_V4L2_CTRLS (6)
313 /*****************************************************************************
314  * AddV4L2Ctrl: adds a control to the v4l2 controls list
315  *****************************************************************************/
316 static void AddV4L2Ctrl( access_t * p_access,
317                          struct v4l2_ext_controls * p_controls,
318                          uint32_t i_id, uint32_t i_value )
319 {
320     if( p_controls->count >= MAX_V4L2_CTRLS )
321     {
322         msg_Err( p_access, "Tried to set too many v4l2 controls at once." );
323         return;
324     }
325
326     p_controls->controls[p_controls->count].id    = i_id;
327     p_controls->controls[p_controls->count].value = i_value;
328     p_controls->count++;
329 }
330
331 /*****************************************************************************
332  * V4L2SampleRate: calculate v4l2 sample rate from pvr-audio-bitmask
333  *****************************************************************************/
334 static uint32_t V4L2SampleRate( uint32_t i_bitmask )
335 {
336     switch( i_bitmask & 0x0003 )
337     {
338         case 0x0001: return V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000;
339         case 0x0002: return V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000;
340     }
341     return V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100;
342 }
343
344 /*****************************************************************************
345  * V4L2AudioEncoding: calculate v4l2 audio encoding level from pvr-audio-bitmask
346  *****************************************************************************/
347 static uint32_t V4L2AudioEncoding( uint32_t i_bitmask )
348 {
349     switch( i_bitmask & 0x000c )
350     {
351         case 0x0004: return V4L2_MPEG_AUDIO_ENCODING_LAYER_1;
352         case 0x0008: return V4L2_MPEG_AUDIO_ENCODING_LAYER_2;
353     }
354     return 0xffffffff;
355 }
356
357 /*****************************************************************************
358  * V4L2AudioL1Bitrate: calculate v4l2 audio bitrate for layer-1 audio from pvr-audio-bitmask
359  *****************************************************************************/
360 static uint32_t V4L2AudioL1Bitrate( uint32_t i_bitmask )
361 {
362     switch( i_bitmask & 0x00f0 )
363     {
364         case 0x0010: return V4L2_MPEG_AUDIO_L1_BITRATE_32K;
365         case 0x0020: return V4L2_MPEG_AUDIO_L1_BITRATE_64K;
366         case 0x0030: return V4L2_MPEG_AUDIO_L1_BITRATE_96K;
367         case 0x0040: return V4L2_MPEG_AUDIO_L1_BITRATE_128K;
368         case 0x0050: return V4L2_MPEG_AUDIO_L1_BITRATE_160K;
369         case 0x0060: return V4L2_MPEG_AUDIO_L1_BITRATE_192K;
370         case 0x0070: return V4L2_MPEG_AUDIO_L1_BITRATE_224K;
371         case 0x0080: return V4L2_MPEG_AUDIO_L1_BITRATE_256K;
372         case 0x0090: return V4L2_MPEG_AUDIO_L1_BITRATE_288K;
373         case 0x00a0: return V4L2_MPEG_AUDIO_L1_BITRATE_320K;
374         case 0x00b0: return V4L2_MPEG_AUDIO_L1_BITRATE_352K;
375         case 0x00c0: return V4L2_MPEG_AUDIO_L1_BITRATE_384K;
376         case 0x00d0: return V4L2_MPEG_AUDIO_L1_BITRATE_416K;
377         case 0x00e0: return V4L2_MPEG_AUDIO_L1_BITRATE_448K;
378     }
379     return V4L2_MPEG_AUDIO_L1_BITRATE_320K;
380 }
381
382 /*****************************************************************************
383  * V4L2AudioL2Bitrate: calculate v4l2 audio bitrate for layer-1 audio from pvr-audio-bitmask
384  *****************************************************************************/
385 static uint32_t V4L2AudioL2Bitrate( uint32_t i_bitmask )
386 {
387     switch( i_bitmask & 0x00f0 )
388     {
389         case 0x0010: return V4L2_MPEG_AUDIO_L2_BITRATE_32K;
390         case 0x0020: return V4L2_MPEG_AUDIO_L2_BITRATE_48K;
391         case 0x0030: return V4L2_MPEG_AUDIO_L2_BITRATE_56K;
392         case 0x0040: return V4L2_MPEG_AUDIO_L2_BITRATE_64K;
393         case 0x0050: return V4L2_MPEG_AUDIO_L2_BITRATE_80K;
394         case 0x0060: return V4L2_MPEG_AUDIO_L2_BITRATE_96K;
395         case 0x0070: return V4L2_MPEG_AUDIO_L2_BITRATE_112K;
396         case 0x0080: return V4L2_MPEG_AUDIO_L2_BITRATE_128K;
397         case 0x0090: return V4L2_MPEG_AUDIO_L2_BITRATE_160K;
398         case 0x00a0: return V4L2_MPEG_AUDIO_L2_BITRATE_192K;
399         case 0x00b0: return V4L2_MPEG_AUDIO_L2_BITRATE_224K;
400         case 0x00c0: return V4L2_MPEG_AUDIO_L2_BITRATE_256K;
401         case 0x00d0: return V4L2_MPEG_AUDIO_L2_BITRATE_320K;
402         case 0x00e0: return V4L2_MPEG_AUDIO_L2_BITRATE_384K;
403     }
404     return V4L2_MPEG_AUDIO_L2_BITRATE_192K;
405 }
406
407 /*****************************************************************************
408  * V4L2AudioMode: calculate v4l2 audio mode from pvr-audio-bitmask
409  *****************************************************************************/
410 static uint32_t V4L2AudioMode( uint32_t i_bitmask )
411 {
412     switch( i_bitmask & 0x0300 )
413     {
414         case 0x0100: return V4L2_MPEG_AUDIO_MODE_JOINT_STEREO;
415         case 0x0200: return V4L2_MPEG_AUDIO_MODE_DUAL;
416         case 0x0300: return V4L2_MPEG_AUDIO_MODE_MONO;
417     }
418     return V4L2_MPEG_AUDIO_MODE_STEREO;
419 }
420
421 /*****************************************************************************
422  * ConfigureV4L2: set up codec parameters using the new v4l2 api
423  *****************************************************************************/
424 static int ConfigureV4L2( access_t * p_access )
425 {
426     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
427     struct v4l2_ext_controls controls;
428     int result;
429
430     memset( &controls, 0, sizeof(struct v4l2_ext_controls) );
431     controls.ctrl_class  = V4L2_CTRL_CLASS_MPEG;
432     controls.error_idx   = 0;
433     controls.reserved[0] = 0;
434     controls.reserved[1] = 0;
435     controls.count       = 0;
436     controls.controls    = calloc( sizeof( struct v4l2_ext_control ),
437                                    MAX_V4L2_CTRLS );
438
439     if( controls.controls == NULL )
440         return VLC_ENOMEM;
441
442     /* Note: Ignore frame rate.  Doesn't look like it can be changed. */
443     if( p_sys->i_bitrate != -1 )
444     {
445         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_VIDEO_BITRATE,
446                      p_sys->i_bitrate );
447         msg_Dbg( p_access, "Setting [%u] bitrate = %u",
448                  controls.count - 1, p_sys->i_bitrate );
449     }
450
451     if( p_sys->i_bitrate_peak != -1 )
452     {
453         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
454                      p_sys->i_bitrate_peak );
455         msg_Dbg( p_access, "Setting [%u] bitrate_peak = %u",
456                  controls.count - 1, p_sys->i_bitrate_peak );
457     }
458
459     if( p_sys->i_bitrate_mode != -1 )
460     {
461         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
462                      p_sys->i_bitrate_mode );
463         msg_Dbg( p_access, "Setting [%u] bitrate_mode = %u",
464                  controls.count - 1, p_sys->i_bitrate_mode );
465     }
466
467     if( p_sys->i_audio_bitmask != -1 )
468     {
469         /* Sample rate */
470         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
471                     V4L2SampleRate( p_sys->i_audio_bitmask ) );
472
473         /* Encoding layer and bitrate */
474         switch( V4L2AudioEncoding( p_sys->i_audio_bitmask ) )
475         {
476             case V4L2_MPEG_AUDIO_ENCODING_LAYER_1:
477                  AddV4L2Ctrl( p_access, &controls,
478                               V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
479                               V4L2_MPEG_AUDIO_ENCODING_LAYER_1 );
480                  AddV4L2Ctrl( p_access, &controls,
481                               V4L2_CID_MPEG_AUDIO_L1_BITRATE,
482                               V4L2AudioL1Bitrate( p_sys->i_audio_bitmask ) );
483                  break;
484
485             case V4L2_MPEG_AUDIO_ENCODING_LAYER_2:
486                  AddV4L2Ctrl( p_access, &controls,
487                               V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
488                               V4L2_MPEG_AUDIO_ENCODING_LAYER_2 );
489                  AddV4L2Ctrl( p_access, &controls,
490                               V4L2_CID_MPEG_AUDIO_L2_BITRATE,
491                               V4L2AudioL2Bitrate( p_sys->i_audio_bitmask ) );
492                  break;
493         }
494
495         /* Audio mode - stereo or mono */
496         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_AUDIO_MODE,
497                      V4L2AudioMode( p_sys->i_audio_bitmask ) );
498
499         /* See if the user wants any other audio feature */
500         if( ( p_sys->i_audio_bitmask & 0x1ff00 ) != 0 )
501         {
502             /* It would be possible to support the bits that represent:
503              *   V4L2_CID_MPEG_AUDIO_MODE_EXTENSION
504              *   V4L2_CID_MPEG_AUDIO_EMPHASIS
505              *   V4L2_CID_MPEG_AUDIO_CRC
506              * but they are not currently used.  Tell the user.
507              */
508             msg_Err( p_access, "There were bits in pvr-audio-bitmask that were not used.");
509         }
510         msg_Dbg( p_access, "Setting audio controls");
511     }
512
513     if( p_sys->i_keyint != -1 )
514     {
515         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_VIDEO_GOP_SIZE,
516                      p_sys->i_keyint );
517         msg_Dbg( p_access, "Setting [%u] keyint = %u",
518                  controls.count - 1, p_sys->i_keyint );
519     }
520
521     if( p_sys->i_bframes != -1 )
522     {
523         AddV4L2Ctrl( p_access, &controls, V4L2_CID_MPEG_VIDEO_B_FRAMES,
524                      p_sys->i_bframes );
525         msg_Dbg( p_access, "Setting [%u] bframes = %u",
526                  controls.count - 1, p_sys->i_bframes );
527     }
528
529     result = ioctl( p_sys->i_fd, VIDIOC_S_EXT_CTRLS, &controls );
530     if( result < 0 )
531     {
532         msg_Err( p_access, "Failed to write %u new capture card settings.",
533                             controls.error_idx );
534     }
535     free( controls.controls );
536     return VLC_SUCCESS;
537 }
538
539 #endif /* HAVE_NEW_LINUX_VIDEODEV2_H */
540
541 /*****************************************************************************
542  * Open: open the device
543  *****************************************************************************/
544 static int Open( vlc_object_t * p_this )
545 {
546     access_t *p_access = (access_t*) p_this;
547     access_sys_t * p_sys;
548     char * psz_tofree;
549     char * psz_parser;
550     char * psz_device = NULL;
551     vlc_value_t val;
552     struct v4l2_capability device_capability;
553     int result;
554
555     memset( &device_capability, 0, sizeof(struct v4l2_capability) );
556
557     p_access->pf_read = Read;
558     p_access->pf_block = NULL;
559     p_access->pf_seek = NULL;
560     p_access->pf_control = Control;
561     p_access->info.i_update = 0;
562     p_access->info.i_size = 0;
563     p_access->info.i_pos = 0;
564     p_access->info.b_eof = false;
565     p_access->info.i_title = 0;
566     p_access->info.i_seekpoint = 0;
567
568     /* create private access data */
569     p_sys = calloc( sizeof( access_sys_t ), 1 );
570     if( !p_sys )
571         return VLC_ENOMEM;
572
573     p_access->p_sys = p_sys;
574
575     /* defaults values */
576     var_Create( p_access, "pvr-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
577
578     var_Create( p_access, "pvr-device", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
579     var_Get( p_access, "pvr-device" , &val);
580     p_sys->psz_videodev = val.psz_string;
581
582     var_Create( p_access, "pvr-radio-device", VLC_VAR_STRING |
583                                               VLC_VAR_DOINHERIT );
584     var_Get( p_access, "pvr-radio-device" , &val);
585     p_sys->psz_radiodev = val.psz_string;
586
587     var_Create( p_access, "pvr-norm", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
588     var_Get( p_access, "pvr-norm" , &val);
589     p_sys->i_standard = val.i_int;
590
591     var_Create( p_access, "pvr-width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
592     var_Get( p_access, "pvr-width" , &val);
593     p_sys->i_width = val.i_int;
594
595     var_Create( p_access, "pvr-height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
596     var_Get( p_access, "pvr-height" , &val);
597     p_sys->i_height = val.i_int;
598
599     var_Create( p_access, "pvr-frequency", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
600     var_Get( p_access, "pvr-frequency" , &val);
601     p_sys->i_frequency = val.i_int;
602
603     var_Create( p_access, "pvr-framerate", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
604     var_Get( p_access, "pvr-framerate" , &val);
605     p_sys->i_framerate = val.i_int;
606
607     var_Create( p_access, "pvr-keyint", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
608     var_Get( p_access, "pvr-keyint" , &val);
609     p_sys->i_keyint = val.i_int;
610
611     var_Create( p_access, "pvr-bframes", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
612     var_Get( p_access, "pvr-bframes" , &val);
613     p_sys->i_bframes = val.b_bool;
614
615     var_Create( p_access, "pvr-bitrate", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
616     var_Get( p_access, "pvr-bitrate" , &val);
617     p_sys->i_bitrate = val.i_int;
618
619     var_Create( p_access, "pvr-bitrate-peak", VLC_VAR_INTEGER |
620                                               VLC_VAR_DOINHERIT );
621     var_Get( p_access, "pvr-bitrate-peak" , &val);
622     p_sys->i_bitrate_peak = val.i_int;
623
624     var_Create( p_access, "pvr-bitrate-mode", VLC_VAR_INTEGER |
625                                               VLC_VAR_DOINHERIT );
626     var_Get( p_access, "pvr-bitrate-mode" , &val);
627     p_sys->i_bitrate_mode = val.i_int;
628
629     var_Create( p_access, "pvr-audio-bitmask", VLC_VAR_INTEGER |
630                                               VLC_VAR_DOINHERIT );
631     var_Get( p_access, "pvr-audio-bitmask" , &val);
632     p_sys->i_audio_bitmask = val.i_int;
633
634     var_Create( p_access, "pvr-audio-volume", VLC_VAR_INTEGER |
635                                               VLC_VAR_DOINHERIT );
636     var_Get( p_access, "pvr-audio-volume" , &val);
637     p_sys->i_volume = val.i_int;
638
639     var_Create( p_access, "pvr-channel", VLC_VAR_INTEGER |
640                                               VLC_VAR_DOINHERIT );
641     var_Get( p_access, "pvr-channel" , &val);
642     p_sys->i_input = val.i_int;
643
644     /* parse command line options */
645     psz_tofree = strdup( p_access->psz_path );
646     if( !psz_tofree )
647         return VLC_ENOMEM;
648
649     psz_parser = psz_tofree;
650     if( *psz_parser )
651     {
652         for( ;; )
653         {
654             if ( !strncmp( psz_parser, "norm=", strlen( "norm=" ) ) )
655             {
656                 char *psz_parser_init;
657                 psz_parser += strlen( "norm=" );
658                 psz_parser_init = psz_parser;
659                 while ( (*psz_parser != ':')
660                         && (*psz_parser != ',')
661                         && (*psz_parser != '\0') )
662                 {
663                     psz_parser++;
664                 }
665
666                 if ( !strncmp( psz_parser_init, "secam" ,
667                                psz_parser - psz_parser_init ) )
668                 {
669                     p_sys->i_standard = V4L2_STD_SECAM;
670                 }
671                 else if ( !strncmp( psz_parser_init, "pal" ,
672                                     psz_parser - psz_parser_init ) )
673                 {
674                     p_sys->i_standard = V4L2_STD_PAL;
675                 }
676                 else if ( !strncmp( psz_parser_init, "ntsc" ,
677                                     psz_parser - psz_parser_init ) )
678                 {
679                     p_sys->i_standard = V4L2_STD_NTSC;
680                 }
681                 else
682                 {
683                     p_sys->i_standard = strtol( psz_parser_init ,
684                                                 &psz_parser, 0 );
685                 }
686             }
687             else if( !strncmp( psz_parser, "channel=",
688                                strlen( "channel=" ) ) )
689             {
690                 p_sys->i_input =
691                     strtol( psz_parser + strlen( "channel=" ),
692                             &psz_parser, 0 );
693             }
694             else if( !strncmp( psz_parser, "device=", strlen( "device=" ) ) )
695             {
696                 int i_len = strlen( "/dev/videox" );
697                 psz_device = calloc( i_len  + 1, 1 );
698                 if( !psz_device )
699                     return VLC_ENOMEM;
700
701                 snprintf( psz_device, i_len, "/dev/video%ld",
702                             strtol( psz_parser + strlen( "device=" ),
703                             &psz_parser, 0 ) );
704             }
705             else if( !strncmp( psz_parser, "frequency=",
706                                strlen( "frequency=" ) ) )
707             {
708                 p_sys->i_frequency =
709                     strtol( psz_parser + strlen( "frequency=" ),
710                             &psz_parser, 0 );
711             }
712             else if( !strncmp( psz_parser, "framerate=",
713                                strlen( "framerate=" ) ) )
714             {
715                 p_sys->i_framerate =
716                     strtol( psz_parser + strlen( "framerate=" ),
717                             &psz_parser, 0 );
718             }
719             else if( !strncmp( psz_parser, "keyint=",
720                                strlen( "keyint=" ) ) )
721             {
722                 p_sys->i_keyint =
723                     strtol( psz_parser + strlen( "keyint=" ),
724                             &psz_parser, 0 );
725             }
726             else if( !strncmp( psz_parser, "bframes=",
727                                strlen( "bframes=" ) ) )
728             {
729                 p_sys->i_bframes =
730                     strtol( psz_parser + strlen( "bframes=" ),
731                             &psz_parser, 0 );
732             }
733
734             else if( !strncmp( psz_parser, "width=",
735                                strlen( "width=" ) ) )
736             {
737                 p_sys->i_width =
738                     strtol( psz_parser + strlen( "width=" ),
739                             &psz_parser, 0 );
740             }
741             else if( !strncmp( psz_parser, "height=",
742                                strlen( "height=" ) ) )
743             {
744                 p_sys->i_height =
745                     strtol( psz_parser + strlen( "height=" ),
746                             &psz_parser, 0 );
747             }
748             else if( !strncmp( psz_parser, "audio=",
749                                strlen( "audio=" ) ) )
750             {
751                 p_sys->i_audio_bitmask =
752                     strtol( psz_parser + strlen( "audio=" ),
753                             &psz_parser, 0 );
754             }
755             else if( !strncmp( psz_parser, "bitrate=",
756                                strlen( "bitrate=" ) ) )
757             {
758                 p_sys->i_bitrate =
759                     strtol( psz_parser + strlen( "bitrate=" ),
760                             &psz_parser, 0 );
761             }
762             else if( !strncmp( psz_parser, "maxbitrate=",
763                                strlen( "maxbitrate=" ) ) )
764             {
765                 p_sys->i_bitrate_peak =
766                     strtol( psz_parser + strlen( "maxbitrate=" ),
767                             &psz_parser, 0 );
768             }
769             else if( !strncmp( psz_parser, "bitratemode=",
770                                strlen( "bitratemode=" ) ) )
771             {
772                 char *psz_parser_init;
773                 psz_parser += strlen( "bitratemode=" );
774                 psz_parser_init = psz_parser;
775                 while ( (*psz_parser != ':')
776                         && (*psz_parser != ',')
777                         && (*psz_parser != '\0') )
778                 {
779                     psz_parser++;
780                 }
781
782                 if ( !strncmp( psz_parser_init, "vbr" ,
783                                psz_parser - psz_parser_init ) )
784                 {
785                      p_sys->i_bitrate_mode = 0;
786                 }
787                 else if ( !strncmp( psz_parser_init, "cbr" ,
788                                     psz_parser - psz_parser_init ) )
789                 {
790                     p_sys->i_bitrate_mode = 1;
791                 }
792             }
793             else if( !strncmp( psz_parser, "size=",
794                                strlen( "size=" ) ) )
795             {
796                 p_sys->i_width =
797                     strtol( psz_parser + strlen( "size=" ),
798                             &psz_parser, 0 );
799                 p_sys->i_height =
800                     strtol( psz_parser + 1 ,
801                             &psz_parser, 0 );
802             }
803             else
804             {
805                 char *psz_parser_init;
806                 psz_parser_init = psz_parser;
807                 while ( (*psz_parser != ':') &&
808                         (*psz_parser != ',') &&
809                         (*psz_parser != '\0') )
810                 {
811                     psz_parser++;
812                 }
813                 psz_device = calloc( psz_parser - psz_parser_init + 1, 1 );
814                 if( !psz_device )
815                     return VLC_ENOMEM;
816
817                 strncpy( psz_device, psz_parser_init,
818                          psz_parser - psz_parser_init );
819             }
820             if( *psz_parser )
821                 psz_parser++;
822             else
823                 break;
824         }
825     }
826     free( psz_tofree );
827
828     if( psz_device )
829     {
830         free( p_sys->psz_videodev );
831         p_sys->psz_videodev = psz_device;
832     }
833
834     /* open the device */
835     p_sys->i_fd = open( p_sys->psz_videodev, O_RDWR );
836     if( p_sys->i_fd < 0 )
837     {
838         msg_Err( p_access, "Cannot open device (%m)." );
839         Close( VLC_OBJECT(p_access) );
840         return VLC_EGENERIC;
841     }
842     msg_Dbg( p_access, "Using video device: %s.", p_sys->psz_videodev);
843
844     /* See what version of ivtvdriver is running */
845     result = ioctl( p_sys->i_fd, VIDIOC_QUERYCAP, &device_capability );
846     if( result < 0 )
847     {
848         msg_Err( p_access, "unknown ivtv/pvr driver version in use" );
849         Close( VLC_OBJECT(p_access) );
850         return VLC_EGENERIC;
851     }
852
853     msg_Dbg( p_access, "%s driver (%s on %s) version %02x.%02x.%02x",
854               device_capability.driver,
855               device_capability.card,
856               device_capability.bus_info,
857             ( device_capability.version >> 16 ) & 0xff,
858             ( device_capability.version >>  8 ) & 0xff,
859             ( device_capability.version       ) & 0xff);
860
861     if ( strncmp( (char *) device_capability.driver, "ivtv", 4 )
862            || device_capability.version >= 0x000800 )
863     {
864         /* Drivers > 0.8.0 use v4l2 API instead of IVTV ioctls */
865         msg_Dbg( p_access, "this driver uses the v4l2 API" );
866         p_sys->b_v4l2_api = true;
867     }
868     else
869     {
870         p_sys->b_v4l2_api = false;
871     }
872
873     /* set the input */
874     if ( p_sys->i_input != -1 )
875     {
876         result = ioctl( p_sys->i_fd, VIDIOC_S_INPUT, &p_sys->i_input );
877         if ( result < 0 )
878             msg_Warn( p_access, "Failed to select the requested input pin." );
879         else
880             msg_Dbg( p_access, "input set to: %d", p_sys->i_input );
881     }
882
883     /* set the video standard */
884     if ( p_sys->i_standard != V4L2_STD_UNKNOWN )
885     {
886         result = ioctl( p_sys->i_fd, VIDIOC_S_STD, &p_sys->i_standard );
887         if ( result  < 0 )
888             msg_Warn( p_access, "Failed to set the requested video standard." );
889         else
890             msg_Dbg( p_access, "video standard set to: %x",
891                      p_sys->i_standard);
892     }
893
894     /* set the picture size */
895     if ( (p_sys->i_width != -1) || (p_sys->i_height != -1) )
896     {
897         struct v4l2_format vfmt;
898
899         memset( &vfmt, 0, sizeof(struct v4l2_format) );
900         vfmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
901
902         result = ioctl( p_sys->i_fd, VIDIOC_G_FMT, &vfmt );
903         if ( result < 0 )
904         {
905             msg_Warn( p_access, "Failed to read current picture size." );
906         }
907         else
908         {
909             if ( p_sys->i_width != -1 )
910             {
911                 vfmt.fmt.pix.width = p_sys->i_width;
912             }
913
914             if ( p_sys->i_height != -1 )
915             {
916                 vfmt.fmt.pix.height = p_sys->i_height;
917             }
918
919             result = ioctl( p_sys->i_fd, VIDIOC_S_FMT, &vfmt );
920             if ( result < 0 )
921             {
922                 msg_Warn( p_access, "Failed to set requested picture size." );
923             }
924             else
925             {
926                 msg_Dbg( p_access, "picture size set to: %dx%d",
927                          vfmt.fmt.pix.width, vfmt.fmt.pix.height );
928             }
929         }
930     }
931
932     /* set the frequency */
933     if ( p_sys->i_frequency != -1 )
934     {
935         int i_fd;
936         struct v4l2_tuner vt;
937
938          /* TODO: let the user choose the tuner */
939         memset( &vt, 0, sizeof(struct v4l2_tuner) );
940
941         if ( (p_sys->i_frequency >= pi_radio_range[0])
942               && (p_sys->i_frequency <= pi_radio_range[1]) )
943         {
944             p_sys->i_radio_fd = open( p_sys->psz_radiodev, O_RDWR );
945             if( p_sys->i_radio_fd < 0 )
946             {
947                 msg_Err( p_access, "Cannot open radio device (%m)." );
948                 Close( VLC_OBJECT(p_access) );
949                 return VLC_EGENERIC;
950             }
951             msg_Dbg( p_access, "using radio device: %s",
952                      p_sys->psz_radiodev );
953             i_fd = p_sys->i_radio_fd;
954         }
955         else
956         {
957             i_fd = p_sys->i_fd;
958             p_sys->i_radio_fd = -1;
959         }
960
961         result = ioctl( i_fd, VIDIOC_G_TUNER, &vt );
962         if ( result < 0 )
963         {
964             msg_Warn( p_access, "Failed to read tuner information (%m)." );
965         }
966         else
967         {
968             struct v4l2_frequency vf;
969
970             memset( &vf, 0, sizeof(struct v4l2_frequency) );
971             vf.tuner = vt.index;
972
973             result = ioctl( i_fd, VIDIOC_G_FREQUENCY, &vf );
974             if ( result < 0 )
975             {
976                 msg_Warn( p_access, "Failed to read tuner frequency (%m)." );
977             }
978             else
979             {
980                 if( vt.capability & V4L2_TUNER_CAP_LOW )
981                     vf.frequency = p_sys->i_frequency * 16;
982                 else
983                     vf.frequency = (p_sys->i_frequency * 16 + 500) / 1000;
984
985                 result = ioctl( i_fd, VIDIOC_S_FREQUENCY, &vf );
986                 if( result < 0 )
987                 {
988                     msg_Warn( p_access, "Failed to set tuner frequency (%m)." );
989                 }
990                 else
991                 {
992                     msg_Dbg( p_access, "tuner frequency set to: %d",
993                              p_sys->i_frequency );
994                 }
995             }
996         }
997     }
998
999     /* control parameters */
1000     if ( p_sys->i_volume != -1 )
1001     {
1002         struct v4l2_control ctrl;
1003
1004         memset( &ctrl, 0, sizeof(struct v4l2_control) );
1005         ctrl.id = V4L2_CID_AUDIO_VOLUME;
1006         ctrl.value = p_sys->i_volume;
1007
1008         result = ioctl( p_sys->i_fd, VIDIOC_S_CTRL, &ctrl );
1009         if ( result < 0 )
1010         {
1011             msg_Warn( p_access, "Failed to set the volume." );
1012         }
1013     }
1014
1015     /* codec parameters */
1016     if ( (p_sys->i_framerate != -1)
1017             || (p_sys->i_bitrate_mode != -1)
1018             || (p_sys->i_bitrate_peak != -1)
1019             || (p_sys->i_keyint != -1)
1020             || (p_sys->i_bframes != -1)
1021             || (p_sys->i_bitrate != -1)
1022             || (p_sys->i_audio_bitmask != -1) )
1023     {
1024         if( p_sys->b_v4l2_api )
1025         {
1026 #ifdef HAVE_NEW_LINUX_VIDEODEV2_H
1027             result = ConfigureV4L2( p_access );
1028             if( result != VLC_SUCCESS )
1029             {
1030                 Close( VLC_OBJECT(p_access) );
1031                 return result;
1032             }
1033 #else
1034             msg_Warn( p_access, "You have new ivtvdrivers, "
1035                       "but this vlc was built against an old v4l2 version." );
1036 #endif
1037         }
1038         else
1039         {
1040             result = ConfigureIVTV( p_access );
1041             if( result != VLC_SUCCESS )
1042             {
1043                 Close( VLC_OBJECT(p_access) );
1044                 return result;
1045             }
1046         }
1047     }
1048
1049     return VLC_SUCCESS;
1050 }
1051
1052 /*****************************************************************************
1053  * Close: close the device
1054  *****************************************************************************/
1055 static void Close( vlc_object_t * p_this )
1056 {
1057     access_t *p_access = (access_t*) p_this;
1058     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
1059
1060     if ( p_sys->i_fd != -1 )
1061         close( p_sys->i_fd );
1062     if ( p_sys->i_radio_fd != -1 )
1063         close( p_sys->i_radio_fd );
1064     free( p_sys->psz_videodev );
1065     free( p_sys->psz_radiodev );
1066     free( p_sys );
1067 }
1068
1069 /*****************************************************************************
1070  * Read
1071  *****************************************************************************/
1072 static ssize_t Read( access_t * p_access, uint8_t * p_buffer, size_t i_len )
1073 {
1074     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
1075     struct pollfd ufd;
1076     int i_ret;
1077
1078     ufd.fd = p_sys->i_fd;
1079     ufd.events = POLLIN;
1080
1081     if( p_access->info.b_eof )
1082         return 0;
1083
1084     do
1085     {
1086         if( !vlc_object_alive (p_access) )
1087             return 0;
1088
1089         ufd.revents = 0;
1090     }
1091     while( ( i_ret = poll( &ufd, 1, 500 ) ) == 0 );
1092
1093     if( i_ret < 0 )
1094     {
1095         msg_Err( p_access, "Polling error (%m)." );
1096         return -1;
1097     }
1098
1099     i_ret = read( p_sys->i_fd, p_buffer, i_len );
1100     if( i_ret == 0 )
1101     {
1102         p_access->info.b_eof = true;
1103     }
1104     else if( i_ret > 0 )
1105     {
1106         p_access->info.i_pos += i_ret;
1107     }
1108
1109     return i_ret;
1110 }
1111
1112 /*****************************************************************************
1113  * Control
1114  *****************************************************************************/
1115 static int Control( access_t *p_access, int i_query, va_list args )
1116 {
1117     bool   *pb_bool;
1118     int          *pi_int;
1119     int64_t      *pi_64;
1120
1121     switch( i_query )
1122     {
1123         /* */
1124         case ACCESS_CAN_SEEK:
1125         case ACCESS_CAN_FASTSEEK:
1126             pb_bool = (bool*)va_arg( args, bool* );
1127             *pb_bool = false;
1128             break;
1129         case ACCESS_CAN_PAUSE:
1130             pb_bool = (bool*)va_arg( args, bool* );
1131             *pb_bool = false;
1132             break;
1133         case ACCESS_CAN_CONTROL_PACE:
1134             pb_bool = (bool*)va_arg( args, bool* );
1135             *pb_bool = false;
1136             break;
1137
1138         /* */
1139         case ACCESS_GET_MTU:
1140             pi_int = (int*)va_arg( args, int * );
1141             *pi_int = 0;
1142             break;
1143
1144         case ACCESS_GET_PTS_DELAY:
1145             pi_64 = (int64_t*)va_arg( args, int64_t * );
1146             *pi_64 = (int64_t)var_GetInteger( p_access, "pvr-caching" ) * 1000;
1147             break;
1148
1149         /* */
1150         case ACCESS_SET_PAUSE_STATE:
1151             /* Nothing to do */
1152             break;
1153
1154         case ACCESS_GET_TITLE_INFO:
1155         case ACCESS_SET_TITLE:
1156         case ACCESS_SET_SEEKPOINT:
1157         case ACCESS_SET_PRIVATE_ID_STATE:
1158         case ACCESS_GET_CONTENT_TYPE:
1159             return VLC_EGENERIC;
1160
1161         default:
1162             msg_Warn( p_access, "Unimplemented query in control." );
1163             return VLC_EGENERIC;
1164
1165     }
1166     return VLC_SUCCESS;
1167 }