]> git.sesse.net Git - vlc/blob - modules/access/v4l2/v4l2.c
Declared many static variables const
[vlc] / modules / access / v4l2 / v4l2.c
1 /*****************************************************************************
2  * v4l2.c : Video4Linux2 input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Benjamin Pracht <bigben at videolan dot org>
8  *          Richard Hosking <richard at hovis dot net>
9  *          Antoine Cellerier <dionoea at videolan d.t org>
10  *          Dennis Lou <dlou99 at yahoo dot com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*
28  * Sections based on the reference V4L2 capture example at
29  * http://v4l2spec.bytesex.org/spec/capture-example.html
30  *
31  * ALSA support based on parts of
32  * http://www.equalarea.com/paul/alsa-audio.html
33  * and hints taken from alsa-utils (aplay/arecord)
34  * http://www.alsa-project.org
35  */
36
37 /*****************************************************************************
38  * Preamble
39  *****************************************************************************/
40
41 #ifdef HAVE_CONFIG_H
42 # include "config.h"
43 #endif
44
45 #include <vlc_common.h>
46 #include <vlc_plugin.h>
47 #include <vlc_access.h>
48 #include <vlc_demux.h>
49 #include <vlc_input.h>
50 #include <vlc_vout.h>
51
52 #include <ctype.h>
53 #include <fcntl.h>
54 #include <unistd.h>
55 #include <sys/ioctl.h>
56 #include <sys/mman.h>
57
58 #include <linux/videodev2.h>
59
60 #include <sys/soundcard.h>
61
62 #ifdef HAVE_ALSA
63 #   define ALSA_PCM_NEW_HW_PARAMS_API
64 #   define ALSA_PCM_NEW_SW_PARAMS_API
65 #   include <alsa/asoundlib.h>
66 #endif
67
68 #include <poll.h>
69
70 /*****************************************************************************
71  * Module descriptior
72  *****************************************************************************/
73
74 static int  DemuxOpen ( vlc_object_t * );
75 static void DemuxClose( vlc_object_t * );
76 static int  AccessOpen ( vlc_object_t * );
77 static void AccessClose( vlc_object_t * );
78
79 #define DEV_TEXT N_("Device name")
80 #define DEV_LONGTEXT N_( \
81     "Name of the device to use. " \
82     "If you don't specify anything, /dev/video0 will be used.")
83 #define STANDARD_TEXT N_( "Standard" )
84 #define STANDARD_LONGTEXT N_( \
85     "Video standard (Default, SECAM, PAL, or NTSC)." )
86 #define CHROMA_TEXT N_("Video input chroma format")
87 #define CHROMA_LONGTEXT N_( \
88     "Force the Video4Linux2 video device to use a specific chroma format " \
89     "(eg. I420 or I422 for raw images, MJPG for M-JPEG compressed input) " \
90     "(Complete list: GREY, I240, RV16, RV15, RV24, RV32, YUY2, YUYV, UYVY, " \
91     "I41N, I422, I420, I411, I410, MJPG)")
92 #define INPUT_TEXT N_( "Input" )
93 #define INPUT_LONGTEXT N_( \
94     "Input of the card to use (see debug)." )
95 #define AUDIO_INPUT_TEXT N_( "Audio input" )
96 #define AUDIO_INPUT_LONGTEXT N_( \
97     "Audio input of the card to use (see debug)." )
98 #define IOMETHOD_TEXT N_( "IO Method" )
99 #define IOMETHOD_LONGTEXT N_( \
100     "IO Method (READ, MMAP, USERPTR)." )
101 #define WIDTH_TEXT N_( "Width" )
102 #define WIDTH_LONGTEXT N_( \
103     "Force width (-1 for autodetect)." )
104 #define HEIGHT_TEXT N_( "Height" )
105 #define HEIGHT_LONGTEXT N_( \
106     "Force height (-1 for autodetect)." )
107 #define FPS_TEXT N_( "Framerate" )
108 #define FPS_LONGTEXT N_( "Framerate to capture, if applicable " \
109     "(-1 for autodetect)." )
110
111 #define CTRL_RESET_TEXT N_( "Reset v4l2 controls" )
112 #define CTRL_RESET_LONGTEXT N_( \
113     "Reset controls to defaults provided by the v4l2 driver." )
114 #define BRIGHTNESS_TEXT N_( "Brightness" )
115 #define BRIGHTNESS_LONGTEXT N_( \
116     "Brightness of the video input (if supported by the v4l2 driver)." )
117 #define CONTRAST_TEXT N_( "Contrast" )
118 #define CONTRAST_LONGTEXT N_( \
119     "Contrast of the video input (if supported by the v4l2 driver)." )
120 #define SATURATION_TEXT N_( "Saturation" )
121 #define SATURATION_LONGTEXT N_( \
122     "Saturation of the video input (if supported by the v4l2 driver)." )
123 #define HUE_TEXT N_( "Hue" )
124 #define HUE_LONGTEXT N_( \
125     "Hue of the video input (if supported by the v4l2 driver)." )
126 #define BLACKLEVEL_TEXT N_( "Black level" )
127 #define BLACKLEVEL_LONGTEXT N_( \
128     "Black level of the video input (if supported by the v4l2 driver)." )
129 #define AUTOWHITEBALANCE_TEXT N_( "Auto white balance" )
130 #define AUTOWHITEBALANCE_LONGTEXT N_( \
131     "Automatically set the white balance of the video input " \
132     "(if supported by the v4l2 driver)." )
133 #define DOWHITEBALANCE_TEXT N_( "Do white balance" )
134 #define DOWHITEBALANCE_LONGTEXT N_( \
135     "Trigger a white balancing action, useless if auto white balance is " \
136     "activated (if supported by the v4l2 driver)." )
137 #define REDBALANCE_TEXT N_( "Red balance" )
138 #define REDBALANCE_LONGTEXT N_( \
139     "Red balance of the video input (if supported by the v4l2 driver)." )
140 #define BLUEBALANCE_TEXT N_( "Blue balance" )
141 #define BLUEBALANCE_LONGTEXT N_( \
142     "Blue balance of the video input (if supported by the v4l2 driver)." )
143 #define GAMMA_TEXT N_( "Gamma" )
144 #define GAMMA_LONGTEXT N_( \
145     "Gamma of the video input (if supported by the v4l2 driver)." )
146 #define EXPOSURE_TEXT N_( "Exposure" )
147 #define EXPOSURE_LONGTEXT N_( \
148     "Exposure of the video input (if supported by the v4L2 driver)." )
149 #define AUTOGAIN_TEXT N_( "Auto gain" )
150 #define AUTOGAIN_LONGTEXT N_( \
151     "Automatically set the video input's gain (if supported by the " \
152     "v4l2 driver)." )
153 #define GAIN_TEXT N_( "Gain" )
154 #define GAIN_LONGTEXT N_( \
155     "Video input's gain (if supported by the v4l2 driver)." )
156 #define HFLIP_TEXT N_( "Horizontal flip" )
157 #define HFLIP_LONGTEXT N_( \
158     "Flip the video horizontally (if supported by the v4l2 driver)." )
159 #define VFLIP_TEXT N_( "Vertical flip" )
160 #define VFLIP_LONGTEXT N_( \
161     "Flip the video vertically (if supported by the v4l2 driver)." )
162 #define HCENTER_TEXT N_( "Horizontal centering" )
163 #define HCENTER_LONGTEXT N_( \
164     "Set the camera's horizontal centering (if supported by the v4l2 driver)." )
165 #define VCENTER_TEXT N_( "Vertical centering" )
166 #define VCENTER_LONGTEXT N_( \
167     "Set the camera's vertical centering (if supported by the v4l2 driver)." )
168
169 #define ADEV_TEXT N_("Audio device name")
170 #ifndef HAVE_ALSA
171 #define ADEV_LONGTEXT N_( \
172     "Name of the audio device to use. " \
173     "If you don't specify anything, \"/dev/dsp\" will be used for OSS.")
174 #else
175 #define ADEV_LONGTEXT N_( \
176     "Name of the audio device to use. " \
177     "If you don't specify anything, \"/dev/dsp\" will be used for OSS, " \
178     "\"hw\" for Alsa.")
179 #endif
180 #define AUDIO_METHOD_TEXT N_( "Audio method" )
181 #ifndef HAVE_ALSA
182 #define AUDIO_METHOD_LONGTEXT N_( \
183     "Audio method to use: 0 to disable audio, 1 for OSS." )
184 #else
185 #define AUDIO_METHOD_LONGTEXT N_( \
186     "Audio method to use: 0 to disable audio, 1 for OSS, 2 for ALSA, " \
187     "3 for ALSA or OSS (ALSA is preferred)." )
188 #endif
189 #define AUDIO_VOLUME_TEXT N_( "Volume" )
190 #define AUDIO_VOLUME_LONGTEXT N_( \
191     "Volume of the audio input (if supported by the v4l2 driver)." )
192 #define AUDIO_BALANCE_TEXT N_( "Balance" )
193 #define AUDIO_BALANCE_LONGTEXT N_( \
194     "Balance of the audio input (if supported by the v4l2 driver)." )
195 #define AUDIO_MUTE_TEXT N_( "Mute" )
196 #define AUDIO_MUTE_LONGTEXT N_( \
197     "Mute audio input (if supported by the v4l2 driver)." )
198 #define AUDIO_BASS_TEXT N_( "Bass" )
199 #define AUDIO_BASS_LONGTEXT N_( \
200     "Bass level of the audio input (if supported by the v4l2 driver)." )
201 #define AUDIO_TREBLE_TEXT N_( "Treble" )
202 #define AUDIO_TREBLE_LONGTEXT N_( \
203     "Treble level of the audio input (if supported by the v4l2 driver)." )
204 #define AUDIO_LOUDNESS_TEXT N_( "Loudness" )
205 #define AUDIO_LOUDNESS_LONGTEXT N_( \
206     "Loudness of the audio input (if supported by the v4l2 driver)." )
207
208 #define STEREO_TEXT N_( "Stereo" )
209 #define STEREO_LONGTEXT N_( \
210     "Capture the audio stream in stereo." )
211 #define SAMPLERATE_TEXT N_( "Samplerate" )
212 #define SAMPLERATE_LONGTEXT N_( \
213     "Samplerate of the captured audio stream, in Hz (eg: 11025, 22050, 44100, 48000)" )
214
215 #define CACHING_TEXT N_("Caching value in ms")
216 #define CACHING_LONGTEXT N_( \
217     "Caching value for V4L2 captures. This " \
218     "value should be set in milliseconds." )
219 #define S_CTRLS_TEXT N_("v4l2 driver controls")
220 #define S_CTRLS_LONGTEXT N_( \
221     "Set the v4l2 driver controls to the values specified using a comma " \
222     "separated list optionally encapsulated by curly braces " \
223     "(e.g.: {video_bitrate=6000000,audio_crc=0,stream_type=3} ). " \
224     "To list available controls, increase verbosity (-vvv) " \
225     "or use the v4l2-ctl application." )
226
227 #define TUNER_TEXT N_("Tuner id")
228 #define TUNER_LONGTEXT N_( \
229     "Tuner id (see debug output)." )
230 #define FREQUENCY_TEXT N_("Frequency")
231 #define FREQUENCY_LONGTEXT N_( \
232     "Tuner frequency in Hz or kHz (see debug output)" )
233 #define TUNER_AUDIO_MODE_TEXT N_("Audio mode")
234 #define TUNER_AUDIO_MODE_LONGTEXT N_( \
235     "Tuner audio mono/stereo and track selection." )
236
237 typedef enum {
238     IO_METHOD_READ,
239     IO_METHOD_MMAP,
240     IO_METHOD_USERPTR,
241 } io_method;
242
243 static const int i_standards_list[] =
244     { V4L2_STD_UNKNOWN, V4L2_STD_SECAM, V4L2_STD_PAL, V4L2_STD_NTSC };
245 static const char *const psz_standards_list_text[] =
246     { N_("Default"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
247
248 static const int i_iomethod_list[] =
249     { IO_METHOD_READ, IO_METHOD_MMAP, IO_METHOD_USERPTR };
250 static const char *const psz_iomethod_list_text[] =
251     { N_("READ"), N_("MMAP"),  N_("USERPTR") };
252
253 static const int i_tuner_audio_modes_list[] =
254     { V4L2_TUNER_MODE_MONO, V4L2_TUNER_MODE_STEREO,
255       V4L2_TUNER_MODE_LANG1, V4L2_TUNER_MODE_LANG2,
256       V4L2_TUNER_MODE_SAP, V4L2_TUNER_MODE_LANG1_LANG2 };
257 static const char *const psz_tuner_audio_modes_list_text[] =
258     { N_( "Mono" ),
259       N_( "Stereo" ),
260       N_( "Primary language (Analog TV tuners only)" ),
261       N_( "Secondary language (Analog TV tuners only)" ),
262       N_( "Second audio program (Analog TV tuners only)" ),
263       N_( "Primary language left, Secondary language right" ) };
264
265 #define FIND_VIDEO 1
266 #define FIND_AUDIO 2
267
268 #define AUDIO_METHOD_OSS 1
269 #define OSS_DEFAULT "/dev/dsp"
270 #define AUDIO_METHOD_ALSA 2
271 #define ALSA_DEFAULT "hw"
272 #define CFG_PREFIX "v4l2-"
273
274 vlc_module_begin();
275     set_shortname( N_("Video4Linux2") );
276     set_description( N_("Video4Linux2 input") );
277     set_category( CAT_INPUT );
278     set_subcategory( SUBCAT_INPUT_ACCESS );
279
280     set_section( N_( "Video input" ), NULL );
281     add_string( CFG_PREFIX "dev", "/dev/video0", 0, DEV_TEXT, DEV_LONGTEXT,
282                 false );
283     add_integer( CFG_PREFIX "standard", 0, NULL, STANDARD_TEXT,
284                  STANDARD_LONGTEXT, false );
285         change_integer_list( i_standards_list, psz_standards_list_text, 0 );
286     add_string( CFG_PREFIX "chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
287                 true );
288     add_integer( CFG_PREFIX "input", 0, NULL, INPUT_TEXT, INPUT_LONGTEXT,
289                 true );
290     add_integer( CFG_PREFIX "audio-input", 0, NULL, AUDIO_INPUT_TEXT,
291                  AUDIO_INPUT_LONGTEXT, true );
292     add_integer( CFG_PREFIX "io", IO_METHOD_MMAP, NULL, IOMETHOD_TEXT,
293                  IOMETHOD_LONGTEXT, true );
294         change_integer_list( i_iomethod_list, psz_iomethod_list_text, 0 );
295     add_integer( CFG_PREFIX "width", 0, NULL, WIDTH_TEXT,
296                 WIDTH_LONGTEXT, true );
297     add_integer( CFG_PREFIX "height", 0, NULL, HEIGHT_TEXT,
298                 HEIGHT_LONGTEXT, true );
299     add_float( CFG_PREFIX "fps", 0, NULL, FPS_TEXT, FPS_LONGTEXT, true );
300
301     set_section( N_( "Audio input" ), NULL );
302     add_string( CFG_PREFIX "adev", NULL, 0, ADEV_TEXT, ADEV_LONGTEXT,
303                 false );
304     add_integer( CFG_PREFIX "audio-method", AUDIO_METHOD_OSS|AUDIO_METHOD_ALSA,
305                  NULL, AUDIO_METHOD_TEXT, AUDIO_METHOD_LONGTEXT, true );
306     add_bool( CFG_PREFIX "stereo", true, NULL, STEREO_TEXT, STEREO_LONGTEXT,
307                 true );
308     add_integer( CFG_PREFIX "samplerate", 48000, NULL, SAMPLERATE_TEXT,
309                 SAMPLERATE_LONGTEXT, true );
310     add_integer( CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000, NULL,
311                 CACHING_TEXT, CACHING_LONGTEXT, true );
312
313     set_section( N_( "Tuner" ), NULL );
314     add_integer( CFG_PREFIX "tuner", 0, NULL, TUNER_TEXT, TUNER_LONGTEXT,
315                  true );
316     add_integer( CFG_PREFIX "tuner-frequency", -1, NULL, FREQUENCY_TEXT,
317                  FREQUENCY_LONGTEXT, true );
318     add_integer( CFG_PREFIX "tuner-audio-mode", -1, NULL, TUNER_AUDIO_MODE_TEXT,
319                  TUNER_AUDIO_MODE_LONGTEXT, true );
320         change_integer_list( i_tuner_audio_modes_list,
321                              psz_tuner_audio_modes_list_text, 0 );
322
323     set_section( N_( "Controls" ),
324                  N_( "v4l2 driver controls, if supported by your v4l2 driver." ) );
325     add_bool( CFG_PREFIX "controls-reset", false, NULL, CTRL_RESET_TEXT,
326               CTRL_RESET_LONGTEXT, true );
327     add_integer( CFG_PREFIX "brightness", -1, NULL, BRIGHTNESS_TEXT,
328                  BRIGHTNESS_LONGTEXT, true );
329     add_integer( CFG_PREFIX "contrast", -1, NULL, CONTRAST_TEXT,
330                  CONTRAST_LONGTEXT, true );
331     add_integer( CFG_PREFIX "saturation", -1, NULL, SATURATION_TEXT,
332                  SATURATION_LONGTEXT, true );
333     add_integer( CFG_PREFIX "hue", -1, NULL, HUE_TEXT,
334                  HUE_LONGTEXT, true );
335     add_integer( CFG_PREFIX "black-level", -1, NULL, BLACKLEVEL_TEXT,
336                  BLACKLEVEL_LONGTEXT, true );
337     add_integer( CFG_PREFIX "auto-white-balance", -1, NULL,
338                  AUTOWHITEBALANCE_TEXT, AUTOWHITEBALANCE_LONGTEXT, true );
339     add_integer( CFG_PREFIX "do-white-balance", -1, NULL, DOWHITEBALANCE_TEXT,
340                  DOWHITEBALANCE_LONGTEXT, true );
341     add_integer( CFG_PREFIX "red-balance", -1, NULL, REDBALANCE_TEXT,
342                  REDBALANCE_LONGTEXT, true );
343     add_integer( CFG_PREFIX "blue-balance", -1, NULL, BLUEBALANCE_TEXT,
344                  BLUEBALANCE_LONGTEXT, true );
345     add_integer( CFG_PREFIX "gamma", -1, NULL, GAMMA_TEXT,
346                  GAMMA_LONGTEXT, true );
347     add_integer( CFG_PREFIX "exposure", -1, NULL, EXPOSURE_TEXT,
348                  EXPOSURE_LONGTEXT, true );
349     add_integer( CFG_PREFIX "autogain", -1, NULL, AUTOGAIN_TEXT,
350                  AUTOGAIN_LONGTEXT, true );
351     add_integer( CFG_PREFIX "gain", -1, NULL, GAIN_TEXT,
352                  GAIN_LONGTEXT, true );
353     add_integer( CFG_PREFIX "hflip", -1, NULL, HFLIP_TEXT,
354                  HFLIP_LONGTEXT, true );
355     add_integer( CFG_PREFIX "vflip", -1, NULL, VFLIP_TEXT,
356                  VFLIP_LONGTEXT, true );
357     add_integer( CFG_PREFIX "hcenter", -1, NULL, HCENTER_TEXT,
358                  HCENTER_LONGTEXT, true );
359     add_integer( CFG_PREFIX "vcenter", -1, NULL, VCENTER_TEXT,
360                  VCENTER_LONGTEXT, true );
361     add_integer( CFG_PREFIX "audio-volume", -1, NULL, AUDIO_VOLUME_TEXT,
362                 AUDIO_VOLUME_LONGTEXT, true );
363     add_integer( CFG_PREFIX "audio-balance", -1, NULL, AUDIO_BALANCE_TEXT,
364                 AUDIO_BALANCE_LONGTEXT, true );
365     add_bool( CFG_PREFIX "audio-mute", false, NULL, AUDIO_MUTE_TEXT,
366               AUDIO_MUTE_LONGTEXT, true );
367     add_integer( CFG_PREFIX "audio-bass", -1, NULL, AUDIO_BASS_TEXT,
368                 AUDIO_BASS_LONGTEXT, true );
369     add_integer( CFG_PREFIX "audio-treble", -1, NULL, AUDIO_TREBLE_TEXT,
370                 AUDIO_TREBLE_LONGTEXT, true );
371     add_integer( CFG_PREFIX "audio-loudness", -1, NULL, AUDIO_LOUDNESS_TEXT,
372                 AUDIO_LOUDNESS_LONGTEXT, true );
373     add_string( CFG_PREFIX "set-ctrls", NULL, NULL, S_CTRLS_TEXT,
374               S_CTRLS_LONGTEXT, true );
375
376     add_shortcut( "v4l2" );
377     set_capability( "access_demux", 10 );
378     set_callbacks( DemuxOpen, DemuxClose );
379
380     add_submodule();
381     add_shortcut( "v4l2c" );
382     set_description( N_("Video4Linux2 Compressed A/V") );
383     set_capability( "access", 0 );
384     /* use these when open as access_demux fails; VLC will use another demux */
385     set_callbacks( AccessOpen, AccessClose );
386
387 vlc_module_end();
388
389 /*****************************************************************************
390  * Access: local prototypes
391  *****************************************************************************/
392
393 static void CommonClose( vlc_object_t *, demux_sys_t * );
394 static void ParseMRL( demux_sys_t *, char *, vlc_object_t * );
395 static void GetV4L2Params( demux_sys_t *, vlc_object_t * );
396 static void SetAvailControlsByString( vlc_object_t *, demux_sys_t *, int );
397
398 static int DemuxControl( demux_t *, int, va_list );
399 static int AccessControl( access_t *, int, va_list );
400
401 static int Demux( demux_t * );
402 static ssize_t AccessRead( access_t *, uint8_t *, size_t );
403
404 static block_t* GrabVideo( demux_t *p_demux );
405 static block_t* ProcessVideoFrame( demux_t *p_demux, uint8_t *p_frame, size_t );
406 static block_t* GrabAudio( demux_t *p_demux );
407
408 static bool IsPixelFormatSupported( demux_t *p_demux,
409                                           unsigned int i_pixelformat );
410
411 #ifdef HAVE_ALSA
412 static char* ResolveALSADeviceName( const char *psz_device );
413 #endif
414 static int OpenVideoDev( vlc_object_t *, demux_sys_t *, bool );
415 static int OpenAudioDev( vlc_object_t *, demux_sys_t *, bool );
416 static bool ProbeVideoDev( vlc_object_t *, demux_sys_t *,
417                                  char *psz_device );
418 static bool ProbeAudioDev( vlc_object_t *, demux_sys_t *,
419                                  char *psz_device );
420
421 static int ControlList( vlc_object_t *, int , bool, bool );
422 static int Control( vlc_object_t *, int i_fd,
423                     const char *psz_name, int i_cid, int i_value );
424
425 static int DemuxControlCallback( vlc_object_t *p_this, const char *psz_var,
426                                  vlc_value_t oldval, vlc_value_t newval,
427                                  void *p_data );
428 static int DemuxControlResetCallback( vlc_object_t *p_this, const char *psz_var,
429                                       vlc_value_t oldval, vlc_value_t newval,
430                                       void *p_data );
431 static int AccessControlCallback( vlc_object_t *p_this, const char *psz_var,
432                                   vlc_value_t oldval, vlc_value_t newval,
433                                   void *p_data );
434 static int AccessControlResetCallback( vlc_object_t *p_this,
435                                        const char *psz_var, vlc_value_t oldval,
436                                        vlc_value_t newval, void *p_data );
437
438 static const struct
439 {
440     unsigned int i_v4l2;
441     int i_fourcc;
442 } v4l2chroma_to_fourcc[] =
443 {
444     /* Raw data types */
445     { V4L2_PIX_FMT_GREY,    VLC_FOURCC('G','R','E','Y') },
446     { V4L2_PIX_FMT_HI240,   VLC_FOURCC('I','2','4','0') },
447     { V4L2_PIX_FMT_RGB565,  VLC_FOURCC('R','V','1','6') },
448     { V4L2_PIX_FMT_RGB555,  VLC_FOURCC('R','V','1','5') },
449     { V4L2_PIX_FMT_BGR24,   VLC_FOURCC('R','V','2','4') },
450     { V4L2_PIX_FMT_BGR32,   VLC_FOURCC('R','V','3','2') },
451     { V4L2_PIX_FMT_YUYV,    VLC_FOURCC('Y','U','Y','2') },
452     { V4L2_PIX_FMT_YUYV,    VLC_FOURCC('Y','U','Y','V') },
453     { V4L2_PIX_FMT_UYVY,    VLC_FOURCC('U','Y','V','Y') },
454     { V4L2_PIX_FMT_Y41P,    VLC_FOURCC('I','4','1','N') },
455     { V4L2_PIX_FMT_YUV422P, VLC_FOURCC('I','4','2','2') },
456     { V4L2_PIX_FMT_YVU420,  VLC_FOURCC('Y','V','1','2') },
457     { V4L2_PIX_FMT_YUV411P, VLC_FOURCC('I','4','1','1') },
458     { V4L2_PIX_FMT_YUV410,  VLC_FOURCC('I','4','1','0') },
459
460     /* Raw data types, not in V4L2 spec but still in videodev2.h and supported
461      * by VLC */
462     { V4L2_PIX_FMT_YUV420,  VLC_FOURCC('I','4','2','0') },
463     /* FIXME { V4L2_PIX_FMT_RGB444,  VLC_FOURCC('R','V','3','2') }, */
464
465     /* Compressed data types */
466     { V4L2_PIX_FMT_MJPEG,   VLC_FOURCC('M','J','P','G') },
467 #if 0
468     { V4L2_PIX_FMT_JPEG,    VLC_FOURCC('J','P','E','G') },
469     { V4L2_PIX_FMT_DV,      VLC_FOURCC('?','?','?','?') },
470     { V4L2_PIX_FMT_MPEG,    VLC_FOURCC('?','?','?','?') },
471 #endif
472     { 0, 0 }
473 };
474
475 /**
476  * List of V4L2 chromas were confident enough to use as fallbacks if the
477  * user hasn't provided a --v4l2-chroma value.
478  */
479 static const __u32 p_chroma_fallbacks[] =
480 { V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_YVU420, V4L2_PIX_FMT_YUV422P,
481   V4L2_PIX_FMT_YUYV, V4L2_PIX_FMT_UYVY, V4L2_PIX_FMT_MJPEG };
482
483 static const struct
484 {
485     const char *psz_name;
486     unsigned int i_cid;
487 } controls[] =
488 {
489     { "brightness", V4L2_CID_BRIGHTNESS },
490     { "contrast", V4L2_CID_CONTRAST },
491     { "saturation", V4L2_CID_SATURATION },
492     { "hue", V4L2_CID_HUE },
493     { "audio-volume", V4L2_CID_AUDIO_VOLUME },
494     { "audio-balance", V4L2_CID_AUDIO_BALANCE },
495     { "audio-bass", V4L2_CID_AUDIO_BASS },
496     { "audio-treble", V4L2_CID_AUDIO_TREBLE },
497     { "audio-mute", V4L2_CID_AUDIO_MUTE },
498     { "audio-loudness", V4L2_CID_AUDIO_LOUDNESS },
499     { "black-level", V4L2_CID_BLACK_LEVEL },
500     { "auto-white-balance", V4L2_CID_AUTO_WHITE_BALANCE },
501     { "do-white-balance", V4L2_CID_DO_WHITE_BALANCE },
502     { "red-balance", V4L2_CID_RED_BALANCE },
503     { "blue-balance", V4L2_CID_BLUE_BALANCE },
504     { "gamma", V4L2_CID_GAMMA },
505     { "exposure", V4L2_CID_EXPOSURE },
506     { "autogain", V4L2_CID_AUTOGAIN },
507     { "gain", V4L2_CID_GAIN },
508     { "hflip", V4L2_CID_HFLIP },
509     { "vflip", V4L2_CID_VFLIP },
510     { "hcenter", V4L2_CID_HCENTER },
511     { "vcenter", V4L2_CID_VCENTER },
512     { NULL, 0 }
513 };
514
515 struct buffer_t
516 {
517     void *  start;
518     size_t  length;
519 };
520
521 struct demux_sys_t
522 {
523     char *psz_device;  /* Main device from MRL, can be video or audio */
524
525     char *psz_vdev;
526     int  i_fd_video;
527
528     char *psz_adev;
529     int  i_fd_audio;
530
531     char *psz_requested_chroma;
532
533     /* Video */
534     io_method io;
535
536     int i_pts;
537
538     struct v4l2_capability dev_cap;
539
540     int i_input;
541     struct v4l2_input *p_inputs;
542     int i_selected_input;
543
544     int i_standard;
545     struct v4l2_standard *p_standards;
546     v4l2_std_id i_selected_standard_id;
547
548     int i_audio;
549     /* V4L2 devices cannot have more than 32 audio inputs */
550     struct v4l2_audio p_audios[32];
551     int i_selected_audio_input;
552
553     int i_tuner;
554     struct v4l2_tuner *p_tuners;
555
556     int i_codec;
557     struct v4l2_fmtdesc *p_codecs;
558
559     struct buffer_t *p_buffers;
560     unsigned int i_nbuffers;
561
562     int i_width;
563     int i_height;
564     float f_fps;            /* <= 0.0 mean to grab at full rate */
565     mtime_t i_video_pts;    /* only used when f_fps > 0 */
566     int i_fourcc;
567
568     es_out_id_t *p_es_video;
569
570     /* Audio */
571     unsigned int i_sample_rate;
572     bool b_stereo;
573     size_t i_audio_max_frame_size;
574     block_t *p_block_audio;
575     es_out_id_t *p_es_audio;
576
577     int i_audio_method;
578
579 #ifdef HAVE_ALSA
580     /* ALSA Audio */
581     snd_pcm_t *p_alsa_pcm;
582     size_t i_alsa_frame_size;
583     int i_alsa_chunk_size;
584 #endif
585
586     /* Tuner */
587     int i_cur_tuner;
588     int i_frequency;
589     int i_audio_mode;
590
591     /* Controls */
592     char *psz_set_ctrls;
593 };
594
595 static int FindMainDevice( vlc_object_t *p_this, demux_sys_t *p_sys,
596                            int i_flags, bool b_demux,
597                            bool b_forced )
598 {
599     /* Find main device (video or audio) */
600     if( p_sys->psz_device && *p_sys->psz_device )
601     {
602         msg_Dbg( p_this, "main device='%s'", p_sys->psz_device );
603
604         bool b_maindevice_is_video = false;
605
606         /* Try to open as video device */
607         if( i_flags & FIND_VIDEO )
608         {
609             msg_Dbg( p_this, "trying device '%s' as video", p_sys->psz_device );
610             if( ProbeVideoDev( p_this, p_sys, p_sys->psz_device ) )
611             {
612                 msg_Dbg( p_this, "'%s' is a video device", p_sys->psz_device );
613                 /* Device was a video device */
614                 free( p_sys->psz_vdev );
615                 p_sys->psz_vdev = p_sys->psz_device;
616                 p_sys->psz_device = NULL;
617                 p_sys->i_fd_video = OpenVideoDev( p_this, p_sys, b_demux );
618                 if( p_sys->i_fd_video < 0 )
619                     return VLC_EGENERIC;
620                 b_maindevice_is_video = true;
621                 /* If successful we carry on to try the audio if access is forced */
622             }
623         }
624
625         /* Try to open as audio device only if main device was not detected as video above */
626         if( i_flags & FIND_AUDIO && !b_maindevice_is_video )
627         {
628             msg_Dbg( p_this, "trying device '%s' as audio", p_sys->psz_device );
629             if( ProbeAudioDev( p_this, p_sys, p_sys->psz_device ) )
630             {
631                 msg_Dbg( p_this, "'%s' is an audio device", p_sys->psz_device );
632                 /* Device was an audio device */
633                 free( p_sys->psz_adev );
634                 p_sys->psz_adev = p_sys->psz_device;
635                 p_sys->psz_device = NULL;
636                 p_sys->i_fd_audio = OpenAudioDev( p_this, p_sys, b_demux );
637                 if( p_sys->i_fd_audio < 0 )
638                     return VLC_EGENERIC;
639                 /* If successful we carry on to try the video if access is forced */
640             }
641         }
642     }
643
644     /* If no device opened, only continue if the access was forced */
645     if( b_forced == false
646         && !( ( i_flags & FIND_VIDEO && p_sys->i_fd_video >= 0 )
647            || ( i_flags & FIND_AUDIO && p_sys->i_fd_audio >= 0 ) ) )
648     {
649         return VLC_EGENERIC;
650     }
651
652     /* Find video device */
653     if( i_flags & FIND_VIDEO && p_sys->i_fd_video < 0 )
654     {
655         if( !p_sys->psz_vdev || !*p_sys->psz_vdev )
656         {
657             free( p_sys->psz_vdev );
658             p_sys->psz_vdev = var_CreateGetString( p_this, "v4l2-dev" );
659         }
660
661         msg_Dbg( p_this, "opening '%s' as video", p_sys->psz_vdev );
662         if( p_sys->psz_vdev && *p_sys->psz_vdev
663          && ProbeVideoDev( p_this, p_sys, p_sys->psz_vdev ) )
664         {
665             p_sys->i_fd_video = OpenVideoDev( p_this, p_sys, b_demux );
666         }
667     }
668
669     /* Find audio device */
670     if( i_flags & FIND_AUDIO && p_sys->i_fd_audio < 0 )
671     {
672         if( !p_sys->psz_adev )
673         {
674             p_sys->psz_adev = var_CreateGetNonEmptyString( p_this, "v4l2-adev" );
675         }
676
677         msg_Dbg( p_this, "opening '%s' as audio", p_sys->psz_adev );
678         if( ProbeAudioDev( p_this, p_sys, p_sys->psz_adev ) )
679         {
680             p_sys->i_fd_audio = OpenAudioDev( p_this, p_sys, b_demux );
681         }
682     }
683
684     if( !( ( i_flags & FIND_VIDEO && p_sys->i_fd_video >= 0 )
685         || ( i_flags & FIND_AUDIO && p_sys->i_fd_audio >= 0 ) ) )
686     {
687         return VLC_EGENERIC;
688     }
689     return VLC_SUCCESS;
690 }
691
692 /*****************************************************************************
693  * DemuxOpen: opens v4l2 device, access_demux callback
694  *****************************************************************************
695  *
696  * url: <video device>::::
697  *
698  *****************************************************************************/
699 static int DemuxOpen( vlc_object_t *p_this )
700 {
701     demux_t     *p_demux = (demux_t*)p_this;
702     demux_sys_t *p_sys;
703
704     /* Only when selected */
705     if( *p_demux->psz_access == '\0' ) return VLC_EGENERIC;
706
707     /* Set up p_demux */
708     p_demux->pf_control = DemuxControl;
709     p_demux->pf_demux = Demux;
710     p_demux->info.i_update = 0;
711     p_demux->info.i_title = 0;
712     p_demux->info.i_seekpoint = 0;
713
714     p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
715     if( p_sys == NULL ) return VLC_ENOMEM;
716
717     GetV4L2Params(p_sys, (vlc_object_t *) p_demux);
718
719     ParseMRL( p_sys, p_demux->psz_path, (vlc_object_t *) p_demux );
720
721 #ifdef HAVE_ALSA
722     /* Alsa support available? */
723     msg_Dbg( p_demux, "ALSA input support available" );
724 #endif
725
726     if( FindMainDevice( p_this, p_sys, FIND_VIDEO|FIND_AUDIO,
727         true, !strncmp( p_demux->psz_access, "v4l2", 4 ) ) != VLC_SUCCESS )
728     {
729         DemuxClose( p_this );
730         return VLC_EGENERIC;
731     }
732
733     return VLC_SUCCESS;
734 }
735
736 /*****************************************************************************
737  * GetV4L2Params: fill in p_sys parameters (shared by DemuxOpen and AccessOpen)
738  *****************************************************************************/
739 static void GetV4L2Params( demux_sys_t *p_sys, vlc_object_t *p_obj )
740 {
741     p_sys->i_video_pts = -1;
742
743     p_sys->i_selected_standard_id =
744         i_standards_list[var_CreateGetInteger( p_obj, "v4l2-standard" )];
745
746     p_sys->i_selected_input = var_CreateGetInteger( p_obj, "v4l2-input" );
747     p_sys->i_selected_audio_input =
748         var_CreateGetInteger( p_obj, "v4l2-audio-input" );
749
750     p_sys->io = var_CreateGetInteger( p_obj, "v4l2-io" );
751
752     p_sys->i_width = var_CreateGetInteger( p_obj, "v4l2-width" );
753     p_sys->i_height = var_CreateGetInteger( p_obj, "v4l2-height" );
754
755     var_CreateGetBool( p_obj, "v4l2-controls-reset" );
756
757     p_sys->f_fps = var_CreateGetFloat( p_obj, "v4l2-fps" );
758     p_sys->i_sample_rate = var_CreateGetInteger( p_obj, "v4l2-samplerate" );
759     p_sys->psz_requested_chroma = var_CreateGetString( p_obj, "v4l2-chroma" );
760
761     p_sys->i_audio_method = var_CreateGetInteger( p_obj, "v4l2-audio-method" );
762
763     p_sys->b_stereo = var_CreateGetBool( p_obj, "v4l2-stereo" );
764
765     p_sys->i_pts = var_CreateGetInteger( p_obj, "v4l2-caching" );
766
767     p_sys->i_cur_tuner = var_CreateGetInteger( p_obj, "v4l2-tuner" );
768     p_sys->i_frequency = var_CreateGetInteger( p_obj, "v4l2-tuner-frequency" );
769     p_sys->i_audio_mode = var_CreateGetInteger( p_obj, "v4l2-tuner-audio-mode" );
770
771     p_sys->psz_set_ctrls = var_CreateGetString( p_obj, "v4l2-set-ctrls" );
772
773     p_sys->psz_device = p_sys->psz_vdev = p_sys->psz_adev = NULL;
774     p_sys->i_fd_video = -1;
775     p_sys->i_fd_audio = -1;
776
777     p_sys->p_es_video = p_sys->p_es_audio = 0;
778     p_sys->p_block_audio = 0;
779 }
780
781 /*****************************************************************************
782  * ParseMRL: parse the options contained in the MRL
783  *****************************************************************************/
784 static void ParseMRL( demux_sys_t *p_sys, char *psz_path, vlc_object_t *p_obj )
785 {
786     char *psz_dup = strdup( psz_path );
787     char *psz_parser = psz_dup;
788
789     while( *psz_parser && *psz_parser != ':' )
790     {
791         psz_parser++;
792     }
793
794     if( *psz_parser == ':' )
795     {
796         /* read options */
797         for( ;; )
798         {
799             *psz_parser++ = '\0';
800
801             if( !strncmp( psz_parser, "adev=", strlen( "adev=" ) ) )
802             {
803                 int  i_len;
804
805                 psz_parser += strlen( "adev=" );
806                 if( strchr( psz_parser, ':' ) )
807                 {
808                     i_len = strchr( psz_parser, ':' ) - psz_parser;
809                 }
810                 else
811                 {
812                     i_len = strlen( psz_parser );
813                 }
814
815                 p_sys->psz_adev = strndup( psz_parser, i_len );
816                 if( !*p_sys->psz_adev )
817                 {
818                     free( p_sys->psz_adev );
819                     p_sys->psz_adev = NULL;
820                 }
821
822                 psz_parser += i_len;
823             }
824             else if( !strncmp( psz_parser, "standard=", strlen( "standard=" ) ) )
825             {
826                 psz_parser += strlen( "standard=" );
827                 if( !strncmp( psz_parser, "pal", strlen( "pal" ) ) )
828                 {
829                     p_sys->i_selected_standard_id = V4L2_STD_PAL;
830                     psz_parser += strlen( "pal" );
831                 }
832                 else if( !strncmp( psz_parser, "ntsc", strlen( "ntsc" ) ) )
833                 {
834                     p_sys->i_selected_standard_id = V4L2_STD_NTSC;
835                     psz_parser += strlen( "ntsc" );
836                 }
837                 else if( !strncmp( psz_parser, "secam", strlen( "secam" ) ) )
838                 {
839                     p_sys->i_selected_standard_id = V4L2_STD_SECAM;
840                     psz_parser += strlen( "secam" );
841                 }
842                 else if( !strncmp( psz_parser, "default", strlen( "default" ) ) )
843                 {
844                     p_sys->i_selected_standard_id = V4L2_STD_UNKNOWN;
845                     psz_parser += strlen( "default" );
846                 }
847                 else
848                 {
849                     p_sys->i_selected_standard_id = i_standards_list[strtol( psz_parser, &psz_parser, 0 )];
850                 }
851             }
852             else if( !strncmp( psz_parser, "chroma=", strlen( "chroma=" ) ) )
853             {
854                 int  i_len;
855
856                 psz_parser += strlen( "chroma=" );
857                 if( strchr( psz_parser, ':' ) )
858                 {
859                     i_len = strchr( psz_parser, ':' ) - psz_parser;
860                 }
861                 else
862                 {
863                     i_len = strlen( psz_parser );
864                 }
865
866                 free( p_sys->psz_requested_chroma );
867                 p_sys->psz_requested_chroma = strndup( psz_parser, i_len );
868
869                 psz_parser += i_len;
870             }
871             else if( !strncmp( psz_parser, "input=", strlen( "input=" ) ) )
872             {
873                 p_sys->i_selected_input = strtol( psz_parser + strlen( "input=" ),
874                                        &psz_parser, 0 );
875             }
876             else if( !strncmp( psz_parser, "audio-input=", strlen( "audio-input=" ) ) )
877             {
878                 p_sys->i_selected_audio_input = strtol( psz_parser + strlen( "audio-input=" ),
879                                        &psz_parser, 0 );
880             }
881             else if( !strncmp( psz_parser, "fps=", strlen( "fps=" ) ) )
882             {
883                 p_sys->f_fps = strtof( psz_parser + strlen( "fps=" ),
884                                        &psz_parser );
885             }
886             else if( !strncmp( psz_parser, "io=", strlen( "io=" ) ) )
887             {
888                 psz_parser += strlen( "io=" );
889                 if( !strncmp( psz_parser, "read", strlen( "read" ) ) )
890                 {
891                     p_sys->io = IO_METHOD_READ;
892                     psz_parser += strlen( "read" );
893                 }
894                 else if( !strncmp( psz_parser, "mmap", strlen( "mmap" ) ) )
895                 {
896                     p_sys->io = IO_METHOD_MMAP;
897                     psz_parser += strlen( "mmap" );
898                 }
899                 else if( !strncmp( psz_parser, "userptr", strlen( "userptr" ) ) )
900                 {
901                     p_sys->io = IO_METHOD_USERPTR;
902                     psz_parser += strlen( "userptr" );
903                 }
904                 else
905                 {
906                     p_sys->io = strtol( psz_parser, &psz_parser, 0 );
907                 }
908             }
909             else if( !strncmp( psz_parser, "width=",
910                                strlen( "width=" ) ) )
911             {
912                 p_sys->i_width =
913                     strtol( psz_parser + strlen( "width=" ),
914                             &psz_parser, 0 );
915             }
916             else if( !strncmp( psz_parser, "height=",
917                                strlen( "height=" ) ) )
918             {
919                 p_sys->i_height =
920                     strtol( psz_parser + strlen( "height=" ),
921                             &psz_parser, 0 );
922             }
923             else if( !strncmp( psz_parser, "controls-reset",
924                                strlen( "controls-reset" ) ) )
925             {
926                 var_SetBool( p_obj, "v4l2-controls-reset", true );
927                 psz_parser += strlen( "controls-reset" );
928             }
929 #if 0
930             else if( !strncmp( psz_parser, "brightness=",
931                                strlen( "brightness=" ) ) )
932             {
933                 var_SetInteger( p_obj, "brightness",
934                     strtol( psz_parser + strlen( "brightness=" ),
935                             &psz_parser, 0 ) );
936             }
937             else if( !strncmp( psz_parser, "contrast=",
938                                strlen( "contrast=" ) ) )
939             {
940                 var_SetInteger( p_obj, "contrast",
941                     strtol( psz_parser + strlen( "contrast=" ),
942                             &psz_parser, 0 ) );
943             }
944             else if( !strncmp( psz_parser, "saturation=",
945                                strlen( "saturation=" ) ) )
946             {
947                 var_SetInteger( p_obj, "saturation",
948                     strtol( psz_parser + strlen( "saturation=" ),
949                             &psz_parser, 0 ) );
950             }
951             else if( !strncmp( psz_parser, "hue=",
952                                strlen( "hue=" ) ) )
953             {
954                 var_SetInteger( p_obj, "hue",
955                     strtol( psz_parser + strlen( "hue=" ),
956                             &psz_parser, 0 ) );
957             }
958             else if( !strncmp( psz_parser, "gamma=",
959                                strlen( "gamma=" ) ) )
960             {
961                 var_SetInteger( p_obj, "gamma",
962                     strtol( psz_parser + strlen( "gamma=" ),
963                             &psz_parser, 0 ) );
964             }
965 #endif
966             else if( !strncmp( psz_parser, "samplerate=",
967                                strlen( "samplerate=" ) ) )
968             {
969                 p_sys->i_sample_rate =
970                     strtol( psz_parser + strlen( "samplerate=" ),
971                             &psz_parser, 0 );
972             }
973             else if( !strncmp( psz_parser, "audio-method", strlen( "audio-method" ) ) )
974             {
975                 p_sys->i_audio_method =
976                     strtol( psz_parser + strlen( "audio-method" ),
977                             &psz_parser, 0 );
978             }
979             else if( !strncmp( psz_parser, "stereo", strlen( "stereo" ) ) )
980             {
981                 psz_parser += strlen( "stereo" );
982                 p_sys->b_stereo = true;
983             }
984             else if( !strncmp( psz_parser, "mono", strlen( "mono" ) ) )
985             {
986                 psz_parser += strlen( "mono" );
987                 p_sys->b_stereo = false;
988             }
989             else if( !strncmp( psz_parser, "caching=", strlen( "caching=" ) ) )
990             {
991                 p_sys->i_pts = strtol( psz_parser + strlen( "caching=" ),
992                                        &psz_parser, 0 );
993             }
994             else if( !strncmp( psz_parser, "tuner=", strlen( "tuner=" ) ) )
995             {
996                 p_sys->i_cur_tuner = strtol( psz_parser + strlen( "tuner=" ),
997                                          &psz_parser, 0 );
998             }
999             else if( !strncmp( psz_parser, "tuner-frequency=", strlen( "tuner-frequency=" ) ) )
1000             {
1001                 p_sys->i_frequency = strtol( psz_parser
1002                                           + strlen( "tuner-frequency=" ),
1003                                           &psz_parser, 0 );
1004             }
1005             else if( !strncmp( psz_parser, "tuner-audio-mode=", strlen( "tuner-audio-mode=" ) ) )
1006             {
1007                 p_sys->i_audio_mode = strtol( psz_parser
1008                                           + strlen( "tuner-audio-mode=" ),
1009                                           &psz_parser, 0 );
1010             }
1011             else if( !strncmp( psz_parser, "set-ctrls=", strlen( "set-ctrls=" )) )
1012             {
1013                 int  i_len;
1014
1015                 psz_parser += strlen( "set-ctrls=" );
1016                 if( strchr( psz_parser, ':' ) )
1017                 {
1018                     i_len = strchr( psz_parser, ':' ) - psz_parser;
1019                 }
1020                 else
1021                 {
1022                     i_len = strlen( psz_parser );
1023                 }
1024
1025                 p_sys->psz_set_ctrls = strndup( psz_parser, i_len );
1026
1027                 psz_parser += i_len;
1028             }
1029             else
1030             {
1031                 char *psz_unk = strchr( psz_parser, ':' );
1032                 if (psz_unk)
1033                     psz_unk = strndup( psz_parser, psz_unk - psz_parser );
1034                 else
1035                     psz_unk = strdup( psz_parser);
1036                 msg_Warn( p_obj, "unknown option %s", psz_unk );
1037                 free (psz_unk);
1038             }
1039
1040             while( *psz_parser && *psz_parser != ':' )
1041             {
1042                 psz_parser++;
1043             }
1044
1045             if( *psz_parser == '\0' )
1046             {
1047                 break;
1048             }
1049         }
1050     }
1051
1052     /* Main device */
1053     if( *psz_dup )
1054     {
1055         p_sys->psz_device = strdup( psz_dup );
1056     }
1057     free( psz_dup );
1058 }
1059
1060 /*****************************************************************************
1061  * Close: close device, free resources
1062  *****************************************************************************/
1063 static void AccessClose( vlc_object_t *p_this )
1064 {
1065     access_t    *p_access = (access_t *)p_this;
1066     demux_sys_t *p_sys   = (demux_sys_t *) p_access->p_sys;
1067
1068     CommonClose( p_this, p_sys );
1069 }
1070
1071 static void DemuxClose( vlc_object_t *p_this )
1072 {
1073     struct v4l2_buffer buf;
1074     enum v4l2_buf_type buf_type;
1075     unsigned int i;
1076
1077     demux_t     *p_demux = (demux_t *)p_this;
1078     demux_sys_t *p_sys   = p_demux->p_sys;
1079
1080     /* Stop video capture */
1081     if( p_sys->i_fd_video >= 0 )
1082     {
1083         switch( p_sys->io )
1084         {
1085         case IO_METHOD_READ:
1086             /* Nothing to do */
1087             break;
1088
1089         case IO_METHOD_MMAP:
1090         case IO_METHOD_USERPTR:
1091             /* Some drivers 'hang' internally if this is not done before streamoff */
1092             for( unsigned int i = 0; i < p_sys->i_nbuffers; i++ )
1093             {
1094                 memset( &buf, 0, sizeof(buf) );
1095                 buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1096                 buf.memory = ( p_sys->io == IO_METHOD_USERPTR ) ?
1097                     V4L2_MEMORY_USERPTR : V4L2_MEMORY_MMAP;
1098                 ioctl( p_sys->i_fd_video, VIDIOC_DQBUF, &buf ); /* ignore result */
1099             }
1100
1101             buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1102             if( ioctl( p_sys->i_fd_video, VIDIOC_STREAMOFF, &buf_type ) < 0 ) {
1103                 msg_Err( p_this, "VIDIOC_STREAMOFF failed" );
1104             }
1105
1106             break;
1107         }
1108     }
1109
1110     /* Free Video Buffers */
1111     if( p_sys->p_buffers ) {
1112         switch( p_sys->io )
1113         {
1114         case IO_METHOD_READ:
1115             free( p_sys->p_buffers[0].start );
1116             break;
1117
1118         case IO_METHOD_MMAP:
1119             for( i = 0; i < p_sys->i_nbuffers; ++i )
1120             {
1121                 if( munmap( p_sys->p_buffers[i].start, p_sys->p_buffers[i].length ) )
1122                 {
1123                     msg_Err( p_this, "munmap failed" );
1124                 }
1125             }
1126             break;
1127
1128         case IO_METHOD_USERPTR:
1129             for( i = 0; i < p_sys->i_nbuffers; ++i )
1130             {
1131                free( p_sys->p_buffers[i].start );
1132             }
1133             break;
1134         }
1135         free( p_sys->p_buffers );
1136     }
1137
1138     CommonClose( p_this, p_sys );
1139 }
1140
1141 static void CommonClose( vlc_object_t *p_this, demux_sys_t *p_sys )
1142 {
1143     /* Close */
1144     if( p_sys->i_fd_video >= 0 ) close( p_sys->i_fd_video );
1145 #ifdef HAVE_ALSA
1146     if( p_sys->p_alsa_pcm )
1147     {
1148         snd_pcm_close( p_sys->p_alsa_pcm );
1149         p_sys->i_fd_audio = -1;
1150     }
1151 #endif
1152     if( p_sys->i_fd_audio >= 0 ) close( p_sys->i_fd_audio );
1153
1154     if( p_sys->p_block_audio ) block_Release( p_sys->p_block_audio );
1155     free( p_sys->psz_device );
1156     free( p_sys->psz_vdev );
1157     free( p_sys->psz_adev );
1158     free( p_sys->p_standards );
1159     free( p_sys->p_inputs );
1160     free( p_sys->p_tuners );
1161     free( p_sys->p_codecs );
1162     free( p_sys->psz_requested_chroma );
1163     free( p_sys->psz_set_ctrls );
1164
1165     free( p_sys );
1166 }
1167
1168 /*****************************************************************************
1169  * AccessOpen: opens v4l2 device, access callback
1170  *****************************************************************************
1171  *
1172  * url: <video device>::::
1173  *
1174  *****************************************************************************/
1175 static int AccessOpen( vlc_object_t * p_this )
1176 {
1177     access_t *p_access = (access_t*) p_this;
1178     demux_sys_t * p_sys;
1179
1180     /* Only when selected */
1181     if( *p_access->psz_access == '\0' ) return VLC_EGENERIC;
1182
1183     p_access->pf_read = AccessRead;
1184     p_access->pf_block = NULL;
1185     p_access->pf_seek = NULL;
1186     p_access->pf_control = AccessControl;
1187     p_access->info.i_update = 0;
1188     p_access->info.i_size = 0;
1189     p_access->info.i_pos = 0;
1190     p_access->info.b_eof = false;
1191     p_access->info.i_title = 0;
1192     p_access->info.i_seekpoint = 0;
1193
1194     p_sys = calloc( 1, sizeof( demux_sys_t ) );
1195     p_access->p_sys = (access_sys_t *) p_sys;
1196     if( p_sys == NULL ) return VLC_ENOMEM;
1197
1198     GetV4L2Params( p_sys, (vlc_object_t *) p_access );
1199
1200     ParseMRL( p_sys, p_access->psz_path, (vlc_object_t *) p_access );
1201
1202     if( FindMainDevice( p_this, p_sys, FIND_VIDEO,
1203         false, !strncmp( p_access->psz_access, "v4l2", 4 ) ) != VLC_SUCCESS )
1204     {
1205         AccessClose( p_this );
1206         return VLC_EGENERIC;
1207     }
1208
1209     return VLC_SUCCESS;
1210 }
1211
1212 /*****************************************************************************
1213  * DemuxControl:
1214  *****************************************************************************/
1215 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
1216 {
1217     demux_sys_t *p_sys = p_demux->p_sys;
1218     bool *pb;
1219     int64_t    *pi64;
1220
1221     switch( i_query )
1222     {
1223         /* Special for access_demux */
1224         case DEMUX_CAN_PAUSE:
1225         case DEMUX_CAN_SEEK:
1226         case DEMUX_SET_PAUSE_STATE:
1227         case DEMUX_CAN_CONTROL_PACE:
1228             pb = (bool*)va_arg( args, bool * );
1229             *pb = false;
1230             return VLC_SUCCESS;
1231
1232         case DEMUX_GET_PTS_DELAY:
1233             pi64 = (int64_t*)va_arg( args, int64_t * );
1234             *pi64 = (int64_t)p_sys->i_pts * 1000;
1235             return VLC_SUCCESS;
1236
1237         case DEMUX_GET_TIME:
1238             pi64 = (int64_t*)va_arg( args, int64_t * );
1239             *pi64 = mdate();
1240             return VLC_SUCCESS;
1241
1242         /* TODO implement others */
1243         default:
1244             return VLC_EGENERIC;
1245     }
1246
1247     return VLC_EGENERIC;
1248 }
1249
1250 /*****************************************************************************
1251  * AccessControl: access callback
1252  *****************************************************************************/
1253 static int AccessControl( access_t *p_access, int i_query, va_list args )
1254 {
1255     bool   *pb_bool;
1256     int          *pi_int;
1257     int64_t      *pi_64;
1258     demux_sys_t  *p_sys = (demux_sys_t *) p_access->p_sys;
1259
1260     switch( i_query )
1261     {
1262         /* */
1263         case ACCESS_CAN_SEEK:
1264         case ACCESS_CAN_FASTSEEK:
1265             pb_bool = (bool*)va_arg( args, bool* );
1266             *pb_bool = false;
1267             break;
1268         case ACCESS_CAN_PAUSE:
1269             pb_bool = (bool*)va_arg( args, bool* );
1270             *pb_bool = false;
1271             break;
1272         case ACCESS_CAN_CONTROL_PACE:
1273             pb_bool = (bool*)va_arg( args, bool* );
1274             *pb_bool = false;
1275             break;
1276
1277         /* */
1278         case ACCESS_GET_MTU:
1279             pi_int = (int*)va_arg( args, int * );
1280             *pi_int = 0;
1281             break;
1282
1283         case ACCESS_GET_PTS_DELAY:
1284             pi_64 = (int64_t*)va_arg( args, int64_t * );
1285             *pi_64 = (int64_t) p_sys->i_pts * 1000;
1286             break;
1287
1288         /* */
1289         case ACCESS_SET_PAUSE_STATE:
1290             /* Nothing to do */
1291             break;
1292
1293         case ACCESS_GET_TITLE_INFO:
1294         case ACCESS_SET_TITLE:
1295         case ACCESS_SET_SEEKPOINT:
1296         case ACCESS_SET_PRIVATE_ID_STATE:
1297         case ACCESS_GET_CONTENT_TYPE:
1298         case ACCESS_GET_META:
1299             return VLC_EGENERIC;
1300
1301         default:
1302             msg_Warn( p_access, "Unimplemented query in control(%d).", i_query);
1303             return VLC_EGENERIC;
1304
1305     }
1306     return VLC_SUCCESS;
1307 }
1308
1309 /*****************************************************************************
1310  * AccessRead: access callback
1311  ******************************************************************************/
1312 static ssize_t AccessRead( access_t * p_access, uint8_t * p_buffer, size_t i_len )
1313 {
1314     demux_sys_t *p_sys = (demux_sys_t *) p_access->p_sys;
1315     struct pollfd ufd;
1316     int i_ret;
1317
1318     ufd.fd = p_sys->i_fd_video;
1319     ufd.events = POLLIN;
1320
1321     if( p_access->info.b_eof )
1322         return 0;
1323
1324     do
1325     {
1326         if( !vlc_object_alive (p_access) )
1327             return 0;
1328
1329         ufd.revents = 0;
1330     }
1331     while( ( i_ret = poll( &ufd, 1, 500 ) ) == 0 );
1332
1333     if( i_ret < 0 )
1334     {
1335         msg_Err( p_access, "Polling error (%m)." );
1336         return -1;
1337     }
1338
1339     i_ret = read( p_sys->i_fd_video, p_buffer, i_len );
1340     if( i_ret == 0 )
1341     {
1342         p_access->info.b_eof = true;
1343     }
1344     else if( i_ret > 0 )
1345     {
1346         p_access->info.i_pos += i_ret;
1347     }
1348
1349     return i_ret;
1350 }
1351
1352 /*****************************************************************************
1353  * Demux: Processes the audio or video frame
1354  *****************************************************************************/
1355 static int Demux( demux_t *p_demux )
1356 {
1357     demux_sys_t *p_sys = p_demux->p_sys;
1358     es_out_id_t *p_es = p_sys->p_es_audio;
1359     block_t *p_block = NULL;
1360
1361     /* Try grabbing audio frames first */
1362     if( p_sys->i_fd_audio < 0 || !( p_block = GrabAudio( p_demux ) ) )
1363     {
1364         /* Try grabbing video frame */
1365         p_es = p_sys->p_es_video;
1366         if( p_sys->i_fd_video > 0 ) p_block = GrabVideo( p_demux );
1367     }
1368
1369     if( !p_block )
1370     {
1371         /* Sleep so we do not consume all the cpu, 10ms seems
1372          * like a good value (100fps) */
1373         msleep( 10 );
1374         return 1;
1375     }
1376
1377     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
1378     es_out_Send( p_demux->out, p_es, p_block );
1379
1380     return 1;
1381 }
1382
1383 /*****************************************************************************
1384  * GrabVideo: Grab a video frame
1385  *****************************************************************************/
1386 static block_t* GrabVideo( demux_t *p_demux )
1387 {
1388     demux_sys_t *p_sys = p_demux->p_sys;
1389
1390     block_t *p_block = NULL;
1391     struct v4l2_buffer buf;
1392     ssize_t i_ret;
1393
1394     if( p_sys->f_fps >= 0.1 && p_sys->i_video_pts > 0 )
1395     {
1396         mtime_t i_dur = (mtime_t)((double)1000000 / (double)p_sys->f_fps);
1397
1398         /* Did we wait long enough ? (frame rate reduction) */
1399         if( p_sys->i_video_pts + i_dur > mdate() ) return 0;
1400     }
1401
1402     /* Grab Video Frame */
1403     switch( p_sys->io )
1404     {
1405     case IO_METHOD_READ:
1406         i_ret = read( p_sys->i_fd_video, p_sys->p_buffers[0].start, p_sys->p_buffers[0].length );
1407         if( i_ret == -1 )
1408         {
1409             switch( errno )
1410             {
1411             case EAGAIN:
1412                 return 0;
1413             case EIO:
1414                 /* Could ignore EIO, see spec. */
1415                 /* fall through */
1416             default:
1417                 msg_Err( p_demux, "Failed to read frame" );
1418                 return 0;
1419                }
1420         }
1421
1422         p_block = ProcessVideoFrame( p_demux, (uint8_t*)p_sys->p_buffers[0].start, i_ret );
1423         if( !p_block ) return 0;
1424
1425         break;
1426
1427     case IO_METHOD_MMAP:
1428         memset( &buf, 0, sizeof(buf) );
1429         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1430         buf.memory = V4L2_MEMORY_MMAP;
1431
1432         /* Wait for next frame */
1433         if (ioctl( p_sys->i_fd_video, VIDIOC_DQBUF, &buf ) < 0 )
1434         {
1435             switch( errno )
1436             {
1437             case EAGAIN:
1438                 return 0;
1439             case EIO:
1440                 /* Could ignore EIO, see spec. */
1441                 /* fall through */
1442             default:
1443                 msg_Err( p_demux, "Failed to wait (VIDIOC_DQBUF)" );
1444                 return 0;
1445                }
1446         }
1447
1448         if( buf.index >= p_sys->i_nbuffers ) {
1449             msg_Err( p_demux, "Failed capturing new frame as i>=nbuffers" );
1450             return 0;
1451         }
1452
1453         p_block = ProcessVideoFrame( p_demux, p_sys->p_buffers[buf.index].start, buf.bytesused );
1454         if( !p_block ) return 0;
1455
1456         /* Unlock */
1457         if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 )
1458         {
1459             msg_Err (p_demux, "Failed to unlock (VIDIOC_QBUF)");
1460             return 0;
1461         }
1462
1463         break;
1464
1465     case IO_METHOD_USERPTR:
1466         memset( &buf, 0, sizeof(buf) );
1467         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1468         buf.memory = V4L2_MEMORY_USERPTR;
1469
1470         /* Wait for next frame */
1471         if (ioctl( p_sys->i_fd_video, VIDIOC_DQBUF, &buf ) < 0 )
1472         {
1473             switch( errno )
1474             {
1475             case EAGAIN:
1476                 return 0;
1477             case EIO:
1478                 /* Could ignore EIO, see spec. */
1479                 /* fall through */
1480             default:
1481                 msg_Err( p_demux, "Failed to wait (VIDIOC_DQBUF)" );
1482                 return 0;
1483             }
1484         }
1485
1486         /* Find frame? */
1487         unsigned int i;
1488         for( i = 0; i < p_sys->i_nbuffers; i++ )
1489         {
1490             if( buf.m.userptr == (unsigned long)p_sys->p_buffers[i].start &&
1491                 buf.length == p_sys->p_buffers[i].length ) break;
1492         }
1493
1494         if( i >= p_sys->i_nbuffers )
1495         {
1496             msg_Err( p_demux, "Failed capturing new frame as i>=nbuffers" );
1497             return 0;
1498         }
1499
1500         p_block = ProcessVideoFrame( p_demux, (uint8_t*)buf.m.userptr, buf.bytesused );
1501         if( !p_block ) return 0;
1502
1503         /* Unlock */
1504         if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 )
1505         {
1506             msg_Err (p_demux, "Failed to unlock (VIDIOC_QBUF)");
1507             return 0;
1508         }
1509
1510         break;
1511
1512     }
1513
1514     /* Timestamp */
1515     p_sys->i_video_pts = p_block->i_pts = p_block->i_dts = mdate();
1516
1517     return p_block;
1518 }
1519
1520 /*****************************************************************************
1521  * ProcessVideoFrame: Helper function to take a buffer and copy it into
1522  * a new block
1523  *****************************************************************************/
1524 static block_t* ProcessVideoFrame( demux_t *p_demux, uint8_t *p_frame, size_t i_size )
1525 {
1526     block_t *p_block;
1527
1528     if( !p_frame ) return 0;
1529
1530     /* New block */
1531     if( !( p_block = block_New( p_demux, i_size ) ) )
1532     {
1533         msg_Warn( p_demux, "Cannot get new block" );
1534         return 0;
1535     }
1536
1537     /* Copy frame */
1538     memcpy( p_block->p_buffer, p_frame, i_size );
1539
1540     return p_block;
1541 }
1542
1543 /*****************************************************************************
1544  * GrabAudio: Grab an audio frame
1545  *****************************************************************************/
1546 static block_t* GrabAudio( demux_t *p_demux )
1547 {
1548     demux_sys_t *p_sys = p_demux->p_sys;
1549     struct audio_buf_info buf_info;
1550     int i_read = 0, i_correct;
1551     block_t *p_block;
1552
1553     if( p_sys->p_block_audio ) p_block = p_sys->p_block_audio;
1554     else p_block = block_New( p_demux, p_sys->i_audio_max_frame_size );
1555
1556     if( !p_block )
1557     {
1558         msg_Warn( p_demux, "cannot get block" );
1559         return 0;
1560     }
1561
1562     p_sys->p_block_audio = p_block;
1563
1564 #ifdef HAVE_ALSA
1565     if( p_sys->i_audio_method & AUDIO_METHOD_ALSA )
1566     {
1567         /* ALSA */
1568         i_read = snd_pcm_readi( p_sys->p_alsa_pcm, p_block->p_buffer, p_sys->i_alsa_chunk_size );
1569         if( i_read <= 0 )
1570         {
1571             int i_resume;
1572             switch( i_read )
1573             {
1574                 case -EAGAIN:
1575                     break;
1576                 case -EPIPE:
1577                     /* xrun */
1578                     snd_pcm_prepare( p_sys->p_alsa_pcm );
1579                     break;
1580                 case -ESTRPIPE:
1581                     /* suspend */
1582                     i_resume = snd_pcm_resume( p_sys->p_alsa_pcm );
1583                     if( i_resume < 0 && i_resume != -EAGAIN ) snd_pcm_prepare( p_sys->p_alsa_pcm );
1584                     break;
1585                 default:
1586                     msg_Err( p_demux, "Failed to read alsa frame (%s)", snd_strerror( i_read ) );
1587                     return 0;
1588             }
1589         }
1590         else
1591         {
1592             /* convert from frames to bytes */
1593             i_read *= p_sys->i_alsa_frame_size;
1594         }
1595     }
1596     else
1597 #endif
1598     if( p_sys->i_audio_method & AUDIO_METHOD_OSS )
1599     {
1600         /* OSS */
1601         i_read = read( p_sys->i_fd_audio, p_block->p_buffer,
1602                     p_sys->i_audio_max_frame_size );
1603     }
1604
1605     if( i_read <= 0 ) return 0;
1606
1607     p_block->i_buffer = i_read;
1608     p_sys->p_block_audio = 0;
1609
1610     /* Correct the date because of kernel buffering */
1611     i_correct = i_read;
1612     if( p_sys->i_audio_method & AUDIO_METHOD_OSS )
1613     {
1614         /* OSS */
1615         if( ioctl( p_sys->i_fd_audio, SNDCTL_DSP_GETISPACE, &buf_info ) == 0 )
1616         {
1617             i_correct += buf_info.bytes;
1618         }
1619     }
1620 #ifdef HAVE_ALSA
1621     else if( p_sys->i_audio_method & AUDIO_METHOD_ALSA )
1622     {
1623         /* ALSA */
1624         int i_err;
1625         snd_pcm_sframes_t delay = 0;
1626         if( ( i_err = snd_pcm_delay( p_sys->p_alsa_pcm, &delay ) ) >= 0 )
1627         {
1628             size_t i_correction_delta = delay * p_sys->i_alsa_frame_size;
1629             /* Test for overrun */
1630             if( i_correction_delta > p_sys->i_audio_max_frame_size )
1631             {
1632                 msg_Warn( p_demux, "ALSA read overrun (%zu > %zu)",
1633                           i_correction_delta, p_sys->i_audio_max_frame_size );
1634                 i_correction_delta = p_sys->i_audio_max_frame_size;
1635                 snd_pcm_prepare( p_sys->p_alsa_pcm );
1636             }
1637             i_correct += i_correction_delta;
1638         }
1639         else
1640         {
1641             /* delay failed so reset */
1642             msg_Warn( p_demux, "ALSA snd_pcm_delay failed (%s)", snd_strerror( i_err ) );
1643             snd_pcm_prepare( p_sys->p_alsa_pcm );
1644         }
1645     }
1646 #endif
1647
1648     /* Timestamp */
1649     p_block->i_pts = p_block->i_dts =
1650         mdate() - INT64_C(1000000) * (mtime_t)i_correct /
1651         2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
1652
1653     return p_block;
1654 }
1655
1656 /*****************************************************************************
1657  * Helper function to initalise video IO using the Read method
1658  *****************************************************************************/
1659 static int InitRead( demux_t *p_demux, int i_fd, unsigned int i_buffer_size )
1660 {
1661     demux_sys_t *p_sys = p_demux->p_sys;
1662
1663     p_sys->p_buffers = calloc( 1, sizeof( *p_sys->p_buffers ) );
1664     if( !p_sys->p_buffers )
1665         goto open_failed;
1666
1667     p_sys->p_buffers[0].length = i_buffer_size;
1668     p_sys->p_buffers[0].start = malloc( i_buffer_size );
1669     if( !p_sys->p_buffers[0].start )
1670         goto open_failed;
1671
1672     return VLC_SUCCESS;
1673
1674 open_failed:
1675     return VLC_EGENERIC;
1676
1677 }
1678
1679 /*****************************************************************************
1680  * Helper function to initalise video IO using the mmap method
1681  *****************************************************************************/
1682 static int InitMmap( demux_t *p_demux, int i_fd )
1683 {
1684     demux_sys_t *p_sys = p_demux->p_sys;
1685     struct v4l2_requestbuffers req;
1686
1687     memset( &req, 0, sizeof(req) );
1688     req.count = 4;
1689     req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1690     req.memory = V4L2_MEMORY_MMAP;
1691
1692     if( ioctl( i_fd, VIDIOC_REQBUFS, &req ) < 0 )
1693     {
1694         msg_Err( p_demux, "device does not support mmap i/o" );
1695         goto open_failed;
1696     }
1697
1698     if( req.count < 2 )
1699     {
1700         msg_Err( p_demux, "Insufficient buffer memory" );
1701         goto open_failed;
1702     }
1703
1704     p_sys->p_buffers = calloc( req.count, sizeof( *p_sys->p_buffers ) );
1705     if( !p_sys->p_buffers )
1706     {
1707         msg_Err( p_demux, "Out of memory" );
1708         goto open_failed;
1709     }
1710
1711     for( p_sys->i_nbuffers = 0; p_sys->i_nbuffers < req.count; ++p_sys->i_nbuffers )
1712     {
1713         struct v4l2_buffer buf;
1714
1715         memset( &buf, 0, sizeof(buf) );
1716         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1717         buf.memory = V4L2_MEMORY_MMAP;
1718         buf.index = p_sys->i_nbuffers;
1719
1720         if( ioctl( i_fd, VIDIOC_QUERYBUF, &buf ) < 0 )
1721         {
1722             msg_Err( p_demux, "VIDIOC_QUERYBUF" );
1723             goto open_failed;
1724         }
1725
1726         p_sys->p_buffers[p_sys->i_nbuffers].length = buf.length;
1727         p_sys->p_buffers[p_sys->i_nbuffers].start =
1728             mmap( NULL, buf.length, PROT_READ | PROT_WRITE, MAP_SHARED, i_fd, buf.m.offset );
1729
1730         if( p_sys->p_buffers[p_sys->i_nbuffers].start == MAP_FAILED )
1731         {
1732             msg_Err( p_demux, "mmap failed (%m)" );
1733             goto open_failed;
1734         }
1735     }
1736
1737     return VLC_SUCCESS;
1738
1739 open_failed:
1740     return VLC_EGENERIC;
1741
1742 }
1743
1744 /*****************************************************************************
1745  * Helper function to initalise video IO using the userbuf method
1746  *****************************************************************************/
1747 static int InitUserP( demux_t *p_demux, int i_fd, unsigned int i_buffer_size )
1748 {
1749     demux_sys_t *p_sys = p_demux->p_sys;
1750     struct v4l2_requestbuffers req;
1751     unsigned int i_page_size;
1752
1753     i_page_size = sysconf(_SC_PAGESIZE);
1754     i_buffer_size = ( i_buffer_size + i_page_size - 1 ) & ~( i_page_size - 1);
1755
1756     memset( &req, 0, sizeof(req) );
1757     req.count = 4;
1758     req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1759     req.memory = V4L2_MEMORY_USERPTR;
1760
1761     if( ioctl( i_fd, VIDIOC_REQBUFS, &req ) < 0 )
1762     {
1763         msg_Err( p_demux, "device does not support user pointer i/o" );
1764         return VLC_EGENERIC;
1765     }
1766
1767     p_sys->p_buffers = calloc( 4, sizeof( *p_sys->p_buffers ) );
1768     if( !p_sys->p_buffers )
1769         goto open_failed;
1770
1771     for( p_sys->i_nbuffers = 0; p_sys->i_nbuffers < 4; ++p_sys->i_nbuffers )
1772     {
1773         p_sys->p_buffers[p_sys->i_nbuffers].length = i_buffer_size;
1774         if( posix_memalign( &p_sys->p_buffers[p_sys->i_nbuffers].start,
1775                 /* boundary */ i_page_size, i_buffer_size ) )
1776             goto open_failed;
1777     }
1778
1779     return VLC_SUCCESS;
1780
1781 open_failed:
1782     free( p_sys->p_buffers );
1783     return VLC_EGENERIC;
1784
1785 }
1786
1787 /*****************************************************************************
1788  * IsPixelFormatSupported: returns true if the specified V4L2 pixel format is
1789  * in the array of supported formats returned by the driver
1790  *****************************************************************************/
1791 static bool IsPixelFormatSupported( demux_t *p_demux, unsigned int i_pixelformat )
1792 {
1793     demux_sys_t *p_sys = p_demux->p_sys;
1794
1795     for( int i_index = 0; i_index < p_sys->i_codec; i_index++ )
1796     {
1797         if( p_sys->p_codecs[i_index].pixelformat == i_pixelformat )
1798             return true;
1799     }
1800
1801     return false;
1802 }
1803
1804 /*****************************************************************************
1805  * OpenVideoDev: open and set up the video device and probe for capabilities
1806  *****************************************************************************/
1807 static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
1808 {
1809     int i_fd;
1810     struct v4l2_cropcap cropcap;
1811     struct v4l2_crop crop;
1812     struct v4l2_format fmt;
1813     unsigned int i_min;
1814     enum v4l2_buf_type buf_type;
1815     char *psz_device = p_sys->psz_vdev;
1816
1817     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
1818     {
1819         msg_Err( p_obj, "cannot open device (%m)" );
1820         goto open_failed;
1821     }
1822
1823     /* Tune the tuner */
1824     if( p_sys->i_frequency >= 0 )
1825     {
1826         if( p_sys->i_cur_tuner < 0 || p_sys->i_cur_tuner >= p_sys->i_tuner )
1827         {
1828             msg_Err( p_obj, "invalid tuner %d.", p_sys->i_cur_tuner );
1829             goto open_failed;
1830         }
1831         struct v4l2_frequency frequency;
1832         memset( &frequency, 0, sizeof( frequency ) );
1833         frequency.tuner = p_sys->i_cur_tuner;
1834         frequency.type = p_sys->p_tuners[p_sys->i_cur_tuner].type;
1835         frequency.frequency = p_sys->i_frequency / 62.5;
1836         if( ioctl( i_fd, VIDIOC_S_FREQUENCY, &frequency ) < 0 )
1837         {
1838             msg_Err( p_obj, "cannot set tuner frequency (%m)" );
1839             goto open_failed;
1840         }
1841         msg_Dbg( p_obj, "Tuner frequency set" );
1842     }
1843
1844     /* Set the tuner's audio mode */
1845     if( p_sys->i_audio_mode >= 0 )
1846     {
1847         if( p_sys->i_cur_tuner < 0 || p_sys->i_cur_tuner >= p_sys->i_tuner )
1848         {
1849             msg_Err( p_obj, "invalid tuner %d.", p_sys->i_cur_tuner );
1850             goto open_failed;
1851         }
1852         struct v4l2_tuner tuner;
1853         memset( &tuner, 0, sizeof( tuner ) );
1854         tuner.index = p_sys->i_cur_tuner;
1855         tuner.audmode = p_sys->i_audio_mode;
1856         if( ioctl( i_fd, VIDIOC_S_TUNER, &tuner ) < 0 )
1857         {
1858             msg_Err( p_obj, "cannot set tuner audio mode (%m)" );
1859             goto open_failed;
1860         }
1861         msg_Dbg( p_obj, "Tuner audio mode set" );
1862     }
1863
1864     /* Select standard */
1865
1866     if( p_sys->i_selected_standard_id != V4L2_STD_UNKNOWN )
1867     {
1868         if( ioctl( i_fd, VIDIOC_S_STD, &p_sys->i_selected_standard_id ) < 0 )
1869         {
1870             msg_Err( p_obj, "cannot set standard (%m)" );
1871             goto open_failed;
1872         }
1873         msg_Dbg( p_obj, "Set standard" );
1874     }
1875
1876     /* Select input */
1877
1878     if( p_sys->i_selected_input >= p_sys->i_input )
1879     {
1880         msg_Warn( p_obj, "invalid input. Using the default one" );
1881         p_sys->i_selected_input = 0;
1882     }
1883
1884     if( ioctl( i_fd, VIDIOC_S_INPUT, &p_sys->i_selected_input ) < 0 )
1885     {
1886         msg_Err( p_obj, "cannot set input (%m)" );
1887         goto open_failed;
1888     }
1889
1890     /* Set audio input */
1891
1892     if( p_sys->i_audio > 0 )
1893     {
1894         if( p_sys->i_selected_audio_input < 0
1895          || p_sys->i_selected_audio_input >= p_sys->i_audio )
1896         {
1897             msg_Warn( p_obj, "invalid audio input. Using the default one" );
1898             p_sys->i_selected_audio_input = 0;
1899         }
1900
1901         if( ioctl( i_fd, VIDIOC_S_AUDIO, &p_sys->p_audios[p_sys->i_selected_audio_input] ) < 0 )
1902         {
1903             msg_Err( p_obj, "cannot set audio input (%m)" );
1904             goto open_failed;
1905         }
1906         msg_Dbg( p_obj, "Audio input set to %d", p_sys->i_selected_audio_input );
1907     }
1908
1909
1910     /* TODO: Move the resolution stuff up here */
1911     /* if MPEG encoder card, no need to do anything else after this */
1912     ControlList( p_obj, i_fd,
1913                   var_GetBool( p_obj, "v4l2-controls-reset" ), b_demux );
1914     SetAvailControlsByString( p_obj, p_sys, i_fd );
1915     if( false == b_demux)
1916     {
1917         return i_fd;
1918     }
1919
1920     demux_t *p_demux = (demux_t *) p_obj;
1921
1922     /* Verify device support for the various IO methods */
1923     switch( p_sys->io )
1924     {
1925         case IO_METHOD_READ:
1926             if( !(p_sys->dev_cap.capabilities & V4L2_CAP_READWRITE) )
1927             {
1928                 msg_Err( p_demux, "device does not support read i/o" );
1929                 goto open_failed;
1930             }
1931             break;
1932
1933         case IO_METHOD_MMAP:
1934         case IO_METHOD_USERPTR:
1935             if( !(p_sys->dev_cap.capabilities & V4L2_CAP_STREAMING) )
1936             {
1937                 msg_Err( p_demux, "device does not support streaming i/o" );
1938                 goto open_failed;
1939             }
1940             break;
1941
1942         default:
1943             msg_Err( p_demux, "io method not supported" );
1944             goto open_failed;
1945     }
1946
1947     /* Reset Cropping */
1948     memset( &cropcap, 0, sizeof(cropcap) );
1949     cropcap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1950     if( ioctl( i_fd, VIDIOC_CROPCAP, &cropcap ) >= 0 )
1951     {
1952         crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1953         crop.c = cropcap.defrect; /* reset to default */
1954         if( ioctl( i_fd, VIDIOC_S_CROP, &crop ) < 0 )
1955         {
1956             switch( errno )
1957             {
1958                 case EINVAL:
1959                     /* Cropping not supported. */
1960                     break;
1961                 default:
1962                     /* Errors ignored. */
1963                     break;
1964             }
1965         }
1966     }
1967
1968     /* Try and find default resolution if not specified */
1969     memset( &fmt, 0, sizeof(fmt) );
1970     fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1971
1972     if( p_sys->i_width <= 0 || p_sys->i_height <= 0 )
1973     {
1974         if( ioctl( i_fd, VIDIOC_G_FMT, &fmt ) < 0 )
1975         {
1976             msg_Err( p_demux, "Cannot get default width and height." );
1977             goto open_failed;
1978         }
1979
1980         p_sys->i_width = fmt.fmt.pix.width;
1981         p_sys->i_height = fmt.fmt.pix.height;
1982
1983         if( fmt.fmt.pix.field == V4L2_FIELD_ALTERNATE )
1984         {
1985             p_sys->i_height = p_sys->i_height * 2;
1986         }
1987     }
1988     else
1989     {
1990         msg_Dbg( p_demux, "trying specified size %dx%d", p_sys->i_width, p_sys->i_height );
1991     }
1992
1993     fmt.fmt.pix.width = p_sys->i_width;
1994     fmt.fmt.pix.height = p_sys->i_height;
1995     fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
1996
1997     /* Test and set Chroma */
1998     fmt.fmt.pix.pixelformat = 0;
1999     if( p_sys->psz_requested_chroma && strlen( p_sys->psz_requested_chroma ) > 0 )
2000     {
2001         /* User specified chroma */
2002         if( strlen( p_sys->psz_requested_chroma ) >= 4 )
2003         {
2004             int i_requested_fourcc = VLC_FOURCC(
2005                 p_sys->psz_requested_chroma[0], p_sys->psz_requested_chroma[1],
2006                 p_sys->psz_requested_chroma[2], p_sys->psz_requested_chroma[3] );
2007             for( int i = 0; v4l2chroma_to_fourcc[i].i_v4l2 != 0; i++ )
2008             {
2009                 if( v4l2chroma_to_fourcc[i].i_fourcc == i_requested_fourcc )
2010                 {
2011                     fmt.fmt.pix.pixelformat = v4l2chroma_to_fourcc[i].i_v4l2;
2012                     break;
2013                 }
2014             }
2015         }
2016         /* Try and set user chroma */
2017         if( !IsPixelFormatSupported( p_demux, fmt.fmt.pix.pixelformat ) || ( fmt.fmt.pix.pixelformat && ioctl( i_fd, VIDIOC_S_FMT, &fmt ) < 0 ) )
2018         {
2019             msg_Warn( p_demux, "Driver is unable to use specified chroma %s. Trying defaults.", p_sys->psz_requested_chroma );
2020             fmt.fmt.pix.pixelformat = 0;
2021         }
2022     }
2023
2024     /* If no user specified chroma, find best */
2025     /* This also decides if MPEG encoder card or not */
2026     if( !fmt.fmt.pix.pixelformat )
2027     {
2028         unsigned int i;
2029         for( i = 0; i < ARRAY_SIZE( p_chroma_fallbacks ); i++ )
2030         {
2031             fmt.fmt.pix.pixelformat = p_chroma_fallbacks[i];
2032             if( IsPixelFormatSupported( p_demux, fmt.fmt.pix.pixelformat )
2033              && ioctl( i_fd, VIDIOC_S_FMT, &fmt ) >= 0 )
2034                 break;
2035         }
2036         if( i == ARRAY_SIZE( p_chroma_fallbacks ) )
2037         {
2038             msg_Warn( p_demux, "Could not select any of the default chromas; attempting to open as MPEG encoder card (access)" );
2039             goto open_failed;
2040         }
2041     }
2042
2043     /* Reassign width, height and chroma incase driver override */
2044     p_sys->i_width = fmt.fmt.pix.width;
2045     p_sys->i_height = fmt.fmt.pix.height;
2046
2047     /* Look up final fourcc */
2048     p_sys->i_fourcc = 0;
2049     for( int i = 0; v4l2chroma_to_fourcc[i].i_fourcc != 0; i++ )
2050     {
2051         if( v4l2chroma_to_fourcc[i].i_v4l2 == fmt.fmt.pix.pixelformat )
2052         {
2053             p_sys->i_fourcc = v4l2chroma_to_fourcc[i].i_fourcc;
2054             break;
2055         }
2056     }
2057
2058     /* Buggy driver paranoia */
2059     i_min = fmt.fmt.pix.width * 2;
2060     if( fmt.fmt.pix.bytesperline < i_min )
2061         fmt.fmt.pix.bytesperline = i_min;
2062     i_min = fmt.fmt.pix.bytesperline * fmt.fmt.pix.height;
2063     if( fmt.fmt.pix.sizeimage < i_min )
2064         fmt.fmt.pix.sizeimage = i_min;
2065
2066 #ifdef VIDIOC_ENUM_FRAMEINTERVALS
2067     /* This is new in Linux 2.6.19 */
2068     /* List supported frame rates */
2069     struct v4l2_frmivalenum frmival;
2070     frmival.index = 0;
2071     frmival.pixel_format = fmt.fmt.pix.pixelformat;
2072     frmival.width = p_sys->i_width;
2073     frmival.height = p_sys->i_height;
2074     if( ioctl( i_fd, VIDIOC_ENUM_FRAMEINTERVALS, &frmival ) >= 0 )
2075     {
2076         char psz_fourcc[5];
2077         memset( &psz_fourcc, 0, sizeof( psz_fourcc ) );
2078         vlc_fourcc_to_char( p_sys->i_fourcc, &psz_fourcc );
2079         msg_Dbg( p_demux, "supported frame intervals for %4s, %dx%d:",
2080                  psz_fourcc, frmival.width, frmival.height );
2081         switch( frmival.type )
2082         {
2083             case V4L2_FRMIVAL_TYPE_DISCRETE:
2084                 do
2085                 {
2086                     msg_Dbg( p_demux, "    supported frame interval: %d/%d",
2087                              frmival.discrete.numerator,
2088                              frmival.discrete.denominator );
2089                     frmival.index++;
2090                 } while( ioctl( i_fd, VIDIOC_ENUM_FRAMEINTERVALS, &frmival ) >= 0 );
2091                 break;
2092             case V4L2_FRMIVAL_TYPE_STEPWISE:
2093                 msg_Dbg( p_demux, "    supported frame intervals: %d/%d to "
2094                          "%d/%d using %d/%d increments",
2095                          frmival.stepwise.min.numerator,
2096                          frmival.stepwise.min.denominator,
2097                          frmival.stepwise.max.numerator,
2098                          frmival.stepwise.max.denominator,
2099                          frmival.stepwise.step.numerator,
2100                          frmival.stepwise.step.denominator );
2101                 break;
2102             case V4L2_FRMIVAL_TYPE_CONTINUOUS:
2103                 msg_Dbg( p_demux, "    supported frame intervals: %d/%d to %d/%d",
2104                          frmival.stepwise.min.numerator,
2105                          frmival.stepwise.min.denominator,
2106                          frmival.stepwise.max.numerator,
2107                          frmival.stepwise.max.denominator );
2108                 break;
2109         }
2110     }
2111 #endif
2112
2113     /* Init IO method */
2114     switch( p_sys->io )
2115     {
2116     case IO_METHOD_READ:
2117         if( InitRead( p_demux, i_fd, fmt.fmt.pix.sizeimage ) != VLC_SUCCESS ) goto open_failed;
2118         break;
2119
2120     case IO_METHOD_MMAP:
2121         if( InitMmap( p_demux, i_fd ) != VLC_SUCCESS ) goto open_failed;
2122         break;
2123
2124     case IO_METHOD_USERPTR:
2125         if( InitUserP( p_demux, i_fd, fmt.fmt.pix.sizeimage ) != VLC_SUCCESS ) goto open_failed;
2126         break;
2127
2128     }
2129
2130     /* Add */
2131     es_format_t es_fmt;
2132     es_format_Init( &es_fmt, VIDEO_ES, p_sys->i_fourcc );
2133     es_fmt.video.i_width  = p_sys->i_width;
2134     es_fmt.video.i_height = p_sys->i_height;
2135     es_fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
2136
2137     /* Setup rgb mask for RGB formats */
2138     if( p_sys->i_fourcc == VLC_FOURCC( 'R','V','2','4' ) )
2139     {
2140         /* This is in BGR format */
2141         es_fmt.video.i_bmask = 0x00ff0000;
2142         es_fmt.video.i_gmask = 0x0000ff00;
2143         es_fmt.video.i_rmask = 0x000000ff;
2144     }
2145
2146     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
2147         (char*)&es_fmt.i_codec, es_fmt.video.i_width, es_fmt.video.i_height );
2148     p_sys->p_es_video = es_out_Add( p_demux->out, &es_fmt );
2149
2150     /* Start Capture */
2151
2152     switch( p_sys->io )
2153     {
2154     case IO_METHOD_READ:
2155         /* Nothing to do */
2156         break;
2157
2158     case IO_METHOD_MMAP:
2159         for (unsigned int i = 0; i < p_sys->i_nbuffers; ++i)
2160         {
2161             struct v4l2_buffer buf;
2162
2163             memset( &buf, 0, sizeof(buf) );
2164             buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2165             buf.memory = V4L2_MEMORY_MMAP;
2166             buf.index = i;
2167
2168             if( ioctl( i_fd, VIDIOC_QBUF, &buf ) < 0 )
2169             {
2170                 msg_Err( p_demux, "VIDIOC_QBUF failed" );
2171                 goto open_failed;
2172             }
2173         }
2174
2175         buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2176         if( ioctl( i_fd, VIDIOC_STREAMON, &buf_type ) < 0 )
2177         {
2178             msg_Err( p_demux, "VIDIOC_STREAMON failed" );
2179             goto open_failed;
2180         }
2181
2182         break;
2183
2184     case IO_METHOD_USERPTR:
2185         for( unsigned int i = 0; i < p_sys->i_nbuffers; ++i )
2186         {
2187             struct v4l2_buffer buf;
2188
2189             memset( &buf, 0, sizeof(buf) );
2190             buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2191             buf.memory = V4L2_MEMORY_USERPTR;
2192             buf.index = i;
2193             buf.m.userptr = (unsigned long)p_sys->p_buffers[i].start;
2194             buf.length = p_sys->p_buffers[i].length;
2195
2196             if( ioctl( i_fd, VIDIOC_QBUF, &buf ) < 0 )
2197             {
2198                 msg_Err( p_demux, "VIDIOC_QBUF failed" );
2199                 goto open_failed;
2200             }
2201         }
2202
2203         buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2204         if( ioctl( i_fd, VIDIOC_STREAMON, &buf_type ) < 0 )
2205         {
2206             msg_Err( p_demux, "VIDIOC_STREAMON failed" );
2207             goto open_failed;
2208         }
2209
2210         break;
2211     }
2212
2213     /* report fps */
2214     if( p_sys->f_fps >= 0.1 )
2215     {
2216         msg_Dbg( p_demux, "User set fps=%f", p_sys->f_fps );
2217     }
2218
2219     return i_fd;
2220
2221 open_failed:
2222     if( i_fd >= 0 ) close( i_fd );
2223     return -1;
2224
2225 }
2226
2227 #ifdef HAVE_ALSA
2228 /*****************************************************************************
2229  * ResolveALSADeviceName: Change any . to : in the ALSA device name
2230  *****************************************************************************/
2231 static char *ResolveALSADeviceName( const char *psz_device )
2232 {
2233     char* psz_alsa_name = strdup( psz_device );
2234     for( unsigned int i = 0; i < strlen( psz_device ); i++ )
2235     {
2236         if( psz_alsa_name[i] == '.' ) psz_alsa_name[i] = ':';
2237     }
2238     return psz_alsa_name;
2239 }
2240 #endif
2241
2242 /*****************************************************************************
2243  * OpenAudioDev: open and set up the audio device and probe for capabilities
2244  *****************************************************************************/
2245 #ifdef HAVE_ALSA
2246 static int OpenAudioDevAlsa( vlc_object_t *p_this, demux_sys_t *p_sys,
2247                              bool b_demux )
2248 {
2249     char *psz_device = p_sys->psz_adev;
2250     p_sys->p_alsa_pcm = NULL;
2251     char* psz_alsa_device_name = NULL;
2252     snd_pcm_hw_params_t *p_hw_params = NULL;
2253     snd_pcm_uframes_t buffer_size;
2254     snd_pcm_uframes_t chunk_size;
2255
2256     /* ALSA */
2257     int i_err;
2258     psz_alsa_device_name =
2259         ResolveALSADeviceName( psz_device?: ALSA_DEFAULT );
2260
2261     if( ( i_err = snd_pcm_open( &p_sys->p_alsa_pcm, psz_alsa_device_name,
2262         SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK ) ) < 0)
2263     {
2264         msg_Err( p_this, "Cannot open ALSA audio device %s (%s)",
2265                  psz_alsa_device_name, snd_strerror( i_err ) );
2266         goto adev_fail;
2267     }
2268
2269     if( ( i_err = snd_pcm_nonblock( p_sys->p_alsa_pcm, 1 ) ) < 0)
2270     {
2271         msg_Err( p_this, "Cannot set ALSA nonblock (%s)",
2272                  snd_strerror( i_err ) );
2273         goto adev_fail;
2274     }
2275
2276     /* Begin setting hardware parameters */
2277
2278     if( ( i_err = snd_pcm_hw_params_malloc( &p_hw_params ) ) < 0 )
2279     {
2280         msg_Err( p_this,
2281                  "ALSA: cannot allocate hardware parameter structure (%s)",
2282                  snd_strerror( i_err ) );
2283         goto adev_fail;
2284     }
2285
2286     if( ( i_err = snd_pcm_hw_params_any( p_sys->p_alsa_pcm, p_hw_params ) ) < 0 )
2287     {
2288         msg_Err( p_this,
2289                 "ALSA: cannot initialize hardware parameter structure (%s)",
2290                  snd_strerror( i_err ) );
2291         goto adev_fail;
2292     }
2293
2294     /* Set Interleaved access */
2295     if( ( i_err = snd_pcm_hw_params_set_access( p_sys->p_alsa_pcm, p_hw_params, SND_PCM_ACCESS_RW_INTERLEAVED ) ) < 0 )
2296     {
2297         msg_Err( p_this, "ALSA: cannot set access type (%s)",
2298                  snd_strerror( i_err ) );
2299         goto adev_fail;
2300     }
2301
2302     /* Set 16 bit little endian */
2303     if( ( i_err = snd_pcm_hw_params_set_format( p_sys->p_alsa_pcm, p_hw_params, SND_PCM_FORMAT_S16_LE ) ) < 0 )
2304     {
2305         msg_Err( p_this, "ALSA: cannot set sample format (%s)",
2306                  snd_strerror( i_err ) );
2307         goto adev_fail;
2308     }
2309
2310     /* Set sample rate */
2311 #ifdef HAVE_ALSA_NEW_API
2312     i_err = snd_pcm_hw_params_set_rate_near( p_sys->p_alsa_pcm, p_hw_params, &p_sys->i_sample_rate, NULL );
2313 #else
2314     i_err = snd_pcm_hw_params_set_rate_near( p_sys->p_alsa_pcm, p_hw_params, p_sys->i_sample_rate, NULL );
2315 #endif
2316     if( i_err < 0 )
2317     {
2318         msg_Err( p_this, "ALSA: cannot set sample rate (%s)",
2319                  snd_strerror( i_err ) );
2320         goto adev_fail;
2321     }
2322
2323     /* Set channels */
2324     unsigned int channels = p_sys->b_stereo ? 2 : 1;
2325     if( ( i_err = snd_pcm_hw_params_set_channels( p_sys->p_alsa_pcm, p_hw_params, channels ) ) < 0 )
2326     {
2327         channels = ( channels==1 ) ? 2 : 1;
2328         msg_Warn( p_this, "ALSA: cannot set channel count (%s). "
2329                   "Trying with channels=%d",
2330                   snd_strerror( i_err ),
2331                   channels );
2332         if( ( i_err = snd_pcm_hw_params_set_channels( p_sys->p_alsa_pcm, p_hw_params, channels ) ) < 0 )
2333         {
2334             msg_Err( p_this, "ALSA: cannot set channel count (%s)",
2335                      snd_strerror( i_err ) );
2336             goto adev_fail;
2337         }
2338         p_sys->b_stereo = ( channels == 2 );
2339     }
2340
2341     /* Set metrics for buffer calculations later */
2342     unsigned int buffer_time;
2343     if( ( i_err = snd_pcm_hw_params_get_buffer_time_max(p_hw_params, &buffer_time, 0) ) < 0 )
2344     {
2345         msg_Err( p_this, "ALSA: cannot get buffer time max (%s)",
2346                  snd_strerror( i_err ) );
2347         goto adev_fail;
2348     }
2349     if (buffer_time > 500000) buffer_time = 500000;
2350
2351     /* Set period time */
2352     unsigned int period_time = buffer_time / 4;
2353 #ifdef HAVE_ALSA_NEW_API
2354     i_err = snd_pcm_hw_params_set_period_time_near( p_sys->p_alsa_pcm, p_hw_params, &period_time, 0 );
2355 #else
2356     i_err = snd_pcm_hw_params_set_period_time_near( p_sys->p_alsa_pcm, p_hw_params, period_time, 0 );
2357 #endif
2358     if( i_err < 0 )
2359     {
2360         msg_Err( p_this, "ALSA: cannot set period time (%s)",
2361                  snd_strerror( i_err ) );
2362         goto adev_fail;
2363     }
2364
2365     /* Set buffer time */
2366 #ifdef HAVE_ALSA_NEW_API
2367     i_err = snd_pcm_hw_params_set_buffer_time_near( p_sys->p_alsa_pcm, p_hw_params, &buffer_time, 0 );
2368 #else
2369     i_err = snd_pcm_hw_params_set_buffer_time_near( p_sys->p_alsa_pcm, p_hw_params, buffer_time, 0 );
2370 #endif
2371     if( i_err < 0 )
2372     {
2373         msg_Err( p_this, "ALSA: cannot set buffer time (%s)",
2374                  snd_strerror( i_err ) );
2375         goto adev_fail;
2376     }
2377
2378     /* Apply new hardware parameters */
2379     if( ( i_err = snd_pcm_hw_params( p_sys->p_alsa_pcm, p_hw_params ) ) < 0 )
2380     {
2381         msg_Err( p_this, "ALSA: cannot set hw parameters (%s)",
2382                  snd_strerror( i_err ) );
2383         goto adev_fail;
2384     }
2385
2386     /* Get various buffer metrics */
2387     snd_pcm_hw_params_get_period_size( p_hw_params, &chunk_size, 0 );
2388     snd_pcm_hw_params_get_buffer_size( p_hw_params, &buffer_size );
2389     if( chunk_size == buffer_size )
2390     {
2391         msg_Err( p_this,
2392                  "ALSA: period cannot equal buffer size (%lu == %lu)",
2393                  chunk_size, buffer_size);
2394         goto adev_fail;
2395     }
2396
2397     int bits_per_sample = snd_pcm_format_physical_width(SND_PCM_FORMAT_S16_LE);
2398     int bits_per_frame = bits_per_sample * channels;
2399
2400     p_sys->i_alsa_chunk_size = chunk_size;
2401     p_sys->i_alsa_frame_size = bits_per_frame / 8;
2402     p_sys->i_audio_max_frame_size = chunk_size * bits_per_frame / 8;
2403
2404     snd_pcm_hw_params_free( p_hw_params );
2405     p_hw_params = NULL;
2406
2407     /* Prep device */
2408     if( ( i_err = snd_pcm_prepare( p_sys->p_alsa_pcm ) ) < 0 )
2409     {
2410         msg_Err( p_this,
2411                  "ALSA: cannot prepare audio interface for use (%s)",
2412                  snd_strerror( i_err ) );
2413         goto adev_fail;
2414     }
2415
2416     free( psz_alsa_device_name );
2417
2418     if( !p_sys->psz_adev )
2419         p_sys->psz_adev = strdup( ALSA_DEFAULT );
2420
2421     /* Return a fake handle so other tests work */
2422     return 1;
2423
2424  adev_fail:
2425
2426     if( p_hw_params ) snd_pcm_hw_params_free( p_hw_params );
2427     if( p_sys->p_alsa_pcm ) snd_pcm_close( p_sys->p_alsa_pcm );
2428     free( psz_alsa_device_name );
2429
2430     return -1;
2431
2432 }
2433 #endif
2434
2435 static int OpenAudioDevOss( vlc_object_t *p_this, demux_sys_t *p_sys,
2436                             bool b_demux )
2437 {
2438     int i_fd = 0;
2439     int i_format;
2440     /* OSS */
2441     char* psz_oss_device_name = strdup( p_sys->psz_adev ? p_sys->psz_adev : OSS_DEFAULT );
2442
2443     if( (i_fd = open( psz_oss_device_name, O_RDONLY | O_NONBLOCK )) < 0 )
2444     {
2445         msg_Err( p_this, "cannot open OSS audio device (%m)" );
2446         goto adev_fail;
2447     }
2448
2449     i_format = AFMT_S16_LE;
2450     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
2451         || i_format != AFMT_S16_LE )
2452     {
2453         msg_Err( p_this,
2454                  "cannot set audio format (16b little endian) (%m)" );
2455         goto adev_fail;
2456     }
2457
2458     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
2459                &p_sys->b_stereo ) < 0 )
2460     {
2461         msg_Err( p_this, "cannot set audio channels count (%m)" );
2462         goto adev_fail;
2463     }
2464
2465     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
2466                &p_sys->i_sample_rate ) < 0 )
2467     {
2468         msg_Err( p_this, "cannot set audio sample rate (%m)" );
2469         goto adev_fail;
2470     }
2471
2472     p_sys->i_audio_max_frame_size = 6 * 1024;
2473
2474     if( !p_sys->psz_adev )
2475         p_sys->psz_adev = strdup( OSS_DEFAULT );
2476     free( psz_oss_device_name );
2477     return i_fd;
2478
2479  adev_fail:
2480
2481     free( psz_oss_device_name );
2482     if( i_fd >= 0 ) close( i_fd );
2483     return -1;
2484
2485 }
2486
2487 static int OpenAudioDev( vlc_object_t *p_this, demux_sys_t *p_sys,
2488                          bool b_demux )
2489 {
2490     char *psz_device;
2491     int i_fd = -1;
2492
2493 #ifdef HAVE_ALSA
2494     if( ( p_sys->i_audio_method & AUDIO_METHOD_ALSA ) && i_fd < 0 )
2495         i_fd  = OpenAudioDevAlsa( p_this, p_sys, b_demux );
2496 #endif
2497
2498     if( ( p_sys->i_audio_method & AUDIO_METHOD_OSS ) && i_fd < 0 )
2499         i_fd = OpenAudioDevOss( p_this, p_sys, b_demux );
2500
2501     if( i_fd < 0 )
2502         return i_fd;
2503
2504     psz_device = p_sys->psz_adev;
2505
2506     msg_Dbg( p_this, "opened adev=`%s' %s %dHz",
2507              psz_device, p_sys->b_stereo ? "stereo" : "mono",
2508              p_sys->i_sample_rate );
2509
2510     es_format_t fmt;
2511     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('a','r','a','w') );
2512
2513     fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
2514     fmt.audio.i_rate = p_sys->i_sample_rate;
2515     fmt.audio.i_bitspersample = 16;
2516     fmt.audio.i_blockalign = fmt.audio.i_channels * fmt.audio.i_bitspersample / 8;
2517     fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate * fmt.audio.i_bitspersample;
2518
2519     msg_Dbg( p_this, "new audio es %d channels %dHz",
2520              fmt.audio.i_channels, fmt.audio.i_rate );
2521
2522     if( b_demux )
2523     {
2524         demux_t *p_demux = (demux_t *)p_this;
2525         p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
2526     }
2527
2528     return i_fd;
2529 }
2530
2531 /*****************************************************************************
2532  * ProbeVideoDev: probe video for capabilities
2533  *****************************************************************************/
2534 static bool ProbeVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys,
2535                                  char *psz_device )
2536 {
2537     int i_index;
2538     int i_standard;
2539
2540     int i_fd;
2541
2542     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
2543     {
2544         msg_Err( p_obj, "cannot open video device (%m)" );
2545         goto open_failed;
2546     }
2547
2548     /* Get device capabilites */
2549
2550     if( ioctl( i_fd, VIDIOC_QUERYCAP, &p_sys->dev_cap ) < 0 )
2551     {
2552         msg_Err( p_obj, "cannot get video capabilities (%m)" );
2553         goto open_failed;
2554     }
2555
2556     msg_Dbg( p_obj, "V4L2 device: %s using driver: %s (version: %u.%u.%u) on %s",
2557                             p_sys->dev_cap.card,
2558                             p_sys->dev_cap.driver,
2559                             (p_sys->dev_cap.version >> 16) & 0xFF,
2560                             (p_sys->dev_cap.version >> 8) & 0xFF,
2561                             p_sys->dev_cap.version & 0xFF,
2562                             p_sys->dev_cap.bus_info );
2563
2564     msg_Dbg( p_obj, "the device has the capabilities: (%c) Video Capure, "
2565                                                        "(%c) Audio, "
2566                                                        "(%c) Tuner",
2567              ( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE  ? 'X':' '),
2568              ( p_sys->dev_cap.capabilities & V4L2_CAP_AUDIO  ? 'X':' '),
2569              ( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER  ? 'X':' ') );
2570
2571     msg_Dbg( p_obj, "supported I/O methods are: (%c) Read/Write, "
2572                                                  "(%c) Streaming, "
2573                                                  "(%c) Asynchronous",
2574             ( p_sys->dev_cap.capabilities & V4L2_CAP_READWRITE ? 'X':' ' ),
2575             ( p_sys->dev_cap.capabilities & V4L2_CAP_STREAMING ? 'X':' ' ),
2576             ( p_sys->dev_cap.capabilities & V4L2_CAP_ASYNCIO ? 'X':' ' ) );
2577
2578     /* Now, enumerate all the video inputs. This is useless at the moment
2579        since we have no way to present that info to the user except with
2580        debug messages */
2581
2582     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2583     {
2584         struct v4l2_input t_input;
2585         t_input.index = 0;
2586         while( ioctl( i_fd, VIDIOC_ENUMINPUT, &t_input ) >= 0 )
2587         {
2588             p_sys->i_input++;
2589             t_input.index = p_sys->i_input;
2590         }
2591
2592         p_sys->p_inputs = calloc( 1, p_sys->i_input * sizeof( struct v4l2_input ) );
2593         if( !p_sys->p_inputs ) goto open_failed;
2594
2595         for( i_index = 0; i_index < p_sys->i_input; i_index++ )
2596         {
2597             p_sys->p_inputs[i_index].index = i_index;
2598
2599             if( ioctl( i_fd, VIDIOC_ENUMINPUT, &p_sys->p_inputs[i_index] ) )
2600             {
2601                 msg_Err( p_obj, "cannot get video input characteristics (%m)" );
2602                 goto open_failed;
2603             }
2604             msg_Dbg( p_obj, "video input %i (%s) has type: %s %c",
2605                                 i_index,
2606                                 p_sys->p_inputs[i_index].name,
2607                                 p_sys->p_inputs[i_index].type
2608                                         == V4L2_INPUT_TYPE_TUNER ?
2609                                         "Tuner adapter" :
2610                                         "External analog input",
2611                                 i_index == p_sys->i_selected_input ? '*' : ' ' );
2612         }
2613     }
2614
2615     /* Probe video standards */
2616     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2617     {
2618         struct v4l2_standard t_standards;
2619         t_standards.index = 0;
2620         while( ioctl( i_fd, VIDIOC_ENUMSTD, &t_standards ) >=0 )
2621         {
2622             p_sys->i_standard++;
2623             t_standards.index = p_sys->i_standard;
2624         }
2625
2626         p_sys->p_standards = calloc( 1, p_sys->i_standard * sizeof( struct v4l2_standard ) );
2627         if( !p_sys->p_standards ) goto open_failed;
2628
2629         for( i_standard = 0; i_standard < p_sys->i_standard; i_standard++ )
2630         {
2631             p_sys->p_standards[i_standard].index = i_standard;
2632
2633             if( ioctl( i_fd, VIDIOC_ENUMSTD, &p_sys->p_standards[i_standard] ) )
2634             {
2635                 msg_Err( p_obj, "cannot get video input standards (%m)" );
2636                 goto open_failed;
2637             }
2638             msg_Dbg( p_obj, "video standard %i is: %s %c",
2639                                 i_standard,
2640                                 p_sys->p_standards[i_standard].name,
2641                                 (unsigned)i_standard == p_sys->i_selected_standard_id ? '*' : ' ' );
2642         }
2643     }
2644
2645     /* initialize the structures for the ioctls */
2646     for( i_index = 0; i_index < 32; i_index++ )
2647     {
2648         p_sys->p_audios[i_index].index = i_index;
2649     }
2650
2651     /* Probe audio inputs */
2652     if( p_sys->dev_cap.capabilities & V4L2_CAP_AUDIO )
2653     {
2654         while( p_sys->i_audio < 32 &&
2655                ioctl( i_fd, VIDIOC_S_AUDIO, &p_sys->p_audios[p_sys->i_audio] ) >= 0 )
2656         {
2657             if( ioctl( i_fd, VIDIOC_G_AUDIO, &p_sys->p_audios[ p_sys->i_audio] ) < 0 )
2658             {
2659                 msg_Err( p_obj, "cannot get audio input characteristics (%m)" );
2660                 goto open_failed;
2661             }
2662
2663             msg_Dbg( p_obj, "audio input %i (%s) is %s %s %c",
2664                                 p_sys->i_audio,
2665                                 p_sys->p_audios[p_sys->i_audio].name,
2666                                 p_sys->p_audios[p_sys->i_audio].capability &
2667                                                     V4L2_AUDCAP_STEREO ?
2668                                         "Stereo" : "Mono",
2669                                 p_sys->p_audios[p_sys->i_audio].capability &
2670                                                     V4L2_AUDCAP_AVL ?
2671                                     "(Automatic Volume Level supported)" : "",
2672                                 p_sys->i_audio == p_sys->i_selected_audio_input ? '*' : ' ' );
2673
2674             p_sys->i_audio++;
2675         }
2676     }
2677
2678     /* List tuner caps */
2679     if( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER )
2680     {
2681         struct v4l2_tuner tuner;
2682         memset( &tuner, 0, sizeof(tuner) );
2683         while( ioctl( i_fd, VIDIOC_G_TUNER, &tuner ) >= 0 )
2684         {
2685             p_sys->i_tuner++;
2686             memset( &tuner, 0, sizeof(tuner) );
2687             tuner.index = p_sys->i_tuner;
2688         }
2689
2690         p_sys->p_tuners = calloc( 1, p_sys->i_tuner * sizeof( struct v4l2_tuner ) );
2691         if( !p_sys->p_tuners ) goto open_failed;
2692
2693         for( i_index = 0; i_index < p_sys->i_tuner; i_index++ )
2694         {
2695             p_sys->p_tuners[i_index].index = i_index;
2696
2697             if( ioctl( i_fd, VIDIOC_G_TUNER, &p_sys->p_tuners[i_index] ) )
2698             {
2699                 msg_Err( p_obj, "cannot get tuner characteristics (%m)" );
2700                 goto open_failed;
2701             }
2702             msg_Dbg( p_obj, "tuner %i (%s) has type: %s, "
2703                               "frequency range: %.1f %s -> %.1f %s",
2704                                 i_index,
2705                                 p_sys->p_tuners[i_index].name,
2706                                 p_sys->p_tuners[i_index].type
2707                                         == V4L2_TUNER_RADIO ?
2708                                         "Radio" : "Analog TV",
2709                                 p_sys->p_tuners[i_index].rangelow * 62.5,
2710                                 p_sys->p_tuners[i_index].capability &
2711                                         V4L2_TUNER_CAP_LOW ?
2712                                         "Hz" : "kHz",
2713                                 p_sys->p_tuners[i_index].rangehigh * 62.5,
2714                                 p_sys->p_tuners[i_index].capability &
2715                                         V4L2_TUNER_CAP_LOW ?
2716                                         "Hz" : "kHz" );
2717
2718             struct v4l2_frequency frequency;
2719             memset( &frequency, 0, sizeof( frequency ) );
2720             if( ioctl( i_fd, VIDIOC_G_FREQUENCY, &frequency ) < 0 )
2721             {
2722                 msg_Err( p_obj, "cannot get tuner frequency (%m)" );
2723                 goto open_failed;
2724             }
2725             msg_Dbg( p_obj, "tuner %i (%s) frequency: %.1f %s",
2726                      i_index,
2727                      p_sys->p_tuners[i_index].name,
2728                      frequency.frequency * 62.5,
2729                      p_sys->p_tuners[i_index].capability &
2730                              V4L2_TUNER_CAP_LOW ?
2731                              "Hz" : "kHz" );
2732         }
2733     }
2734
2735     /* Probe for available chromas */
2736     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2737     {
2738         struct v4l2_fmtdesc codec;
2739
2740         i_index = 0;
2741         memset( &codec, 0, sizeof(codec) );
2742         codec.index = i_index;
2743         codec.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2744
2745         while( ioctl( i_fd, VIDIOC_ENUM_FMT, &codec ) >= 0 )
2746         {
2747             i_index++;
2748             codec.index = i_index;
2749         }
2750
2751         p_sys->i_codec = i_index;
2752
2753         p_sys->p_codecs = calloc( 1, p_sys->i_codec * sizeof( struct v4l2_fmtdesc ) );
2754
2755         for( i_index = 0; i_index < p_sys->i_codec; i_index++ )
2756         {
2757             p_sys->p_codecs[i_index].index = i_index;
2758             p_sys->p_codecs[i_index].type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2759
2760             if( ioctl( i_fd, VIDIOC_ENUM_FMT, &p_sys->p_codecs[i_index] ) < 0 )
2761             {
2762                 msg_Err( p_obj, "cannot get codec description (%m)" );
2763                 goto open_failed;
2764             }
2765
2766             /* only print if vlc supports the format */
2767             char psz_fourcc_v4l2[5];
2768             memset( &psz_fourcc_v4l2, 0, sizeof( psz_fourcc_v4l2 ) );
2769             vlc_fourcc_to_char( p_sys->p_codecs[i_index].pixelformat,
2770                                 &psz_fourcc_v4l2 );
2771             bool b_codec_supported = false;
2772             for( int i = 0; v4l2chroma_to_fourcc[i].i_v4l2 != 0; i++ )
2773             {
2774                 if( v4l2chroma_to_fourcc[i].i_v4l2 == p_sys->p_codecs[i_index].pixelformat )
2775                 {
2776                     b_codec_supported = true;
2777
2778                     char psz_fourcc[5];
2779                     memset( &psz_fourcc, 0, sizeof( psz_fourcc ) );
2780                     vlc_fourcc_to_char( v4l2chroma_to_fourcc[i].i_fourcc,
2781                                         &psz_fourcc );
2782                     msg_Dbg( p_obj, "device supports chroma %4s [%s, %s]",
2783                                 psz_fourcc,
2784                                 p_sys->p_codecs[i_index].description,
2785                                 psz_fourcc_v4l2 );
2786
2787 #ifdef VIDIOC_ENUM_FRAMESIZES
2788                     /* This is new in Linux 2.6.19 */
2789                     /* List valid frame sizes for this format */
2790                     struct v4l2_frmsizeenum frmsize;
2791                     frmsize.index = 0;
2792                     frmsize.pixel_format = p_sys->p_codecs[i_index].pixelformat;
2793                     if( ioctl( i_fd, VIDIOC_ENUM_FRAMESIZES, &frmsize ) < 0 )
2794                     {
2795                         /* Not all devices support this ioctl */
2796                         msg_Warn( p_obj, "Unable to query for frame sizes" );
2797                     }
2798                     else
2799                     {
2800                         switch( frmsize.type )
2801                         {
2802                             case V4L2_FRMSIZE_TYPE_DISCRETE:
2803                                 do
2804                                 {
2805                                     msg_Dbg( p_obj,
2806                 "    device supports size %dx%d",
2807                 frmsize.discrete.width, frmsize.discrete.height );
2808                                     frmsize.index++;
2809                                 } while( ioctl( i_fd, VIDIOC_ENUM_FRAMESIZES, &frmsize ) >= 0 );
2810                                 break;
2811                             case V4L2_FRMSIZE_TYPE_STEPWISE:
2812                                 msg_Dbg( p_obj,
2813                 "    device supports sizes %dx%d to %dx%d using %dx%d increments",
2814                 frmsize.stepwise.min_width, frmsize.stepwise.min_height,
2815                 frmsize.stepwise.max_width, frmsize.stepwise.max_height,
2816                 frmsize.stepwise.step_width, frmsize.stepwise.step_height );
2817                                 break;
2818                             case V4L2_FRMSIZE_TYPE_CONTINUOUS:
2819                                 msg_Dbg( p_obj,
2820                 "    device supports all sizes %dx%d to %dx%d",
2821                 frmsize.stepwise.min_width, frmsize.stepwise.min_height,
2822                 frmsize.stepwise.max_width, frmsize.stepwise.max_height );
2823                                 break;
2824                         }
2825                     }
2826 #endif
2827                 }
2828             }
2829             if( !b_codec_supported )
2830             {
2831                     msg_Dbg( p_obj,
2832                          "device codec %4s (%s) not supported as access_demux",
2833                          psz_fourcc_v4l2,
2834                          p_sys->p_codecs[i_index].description );
2835             }
2836
2837         }
2838     }
2839
2840
2841     if( i_fd >= 0 ) close( i_fd );
2842     return true;
2843
2844 open_failed:
2845
2846     if( i_fd >= 0 ) close( i_fd );
2847     return false;
2848
2849 }
2850
2851 /*****************************************************************************
2852  * ProbeAudioDev: probe audio for capabilities
2853  *****************************************************************************/
2854 #ifdef HAVE_ALSA
2855 static bool ProbeAudioDevAlsa( vlc_object_t *p_this, demux_sys_t *p_sys,
2856                                      char *psz_device )
2857 {
2858     int i_err;
2859     snd_pcm_t *p_alsa_pcm;
2860     char* psz_alsa_device_name = ResolveALSADeviceName( psz_device ?: ALSA_DEFAULT );
2861
2862     if( ( i_err = snd_pcm_open( &p_alsa_pcm, psz_alsa_device_name, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK ) ) < 0 )
2863     {
2864         msg_Err( p_this, "cannot open device %s for ALSA audio (%s)", psz_alsa_device_name, snd_strerror( i_err ) );
2865         free( psz_alsa_device_name );
2866         return false;
2867     }
2868
2869     snd_pcm_close( p_alsa_pcm );
2870     free( psz_alsa_device_name );
2871
2872     return true;
2873 }
2874 #endif
2875
2876 static bool ProbeAudioDevOss( vlc_object_t *p_this, demux_sys_t *p_sys,
2877                                     char *psz_device )
2878 {
2879     int i_fd = 0;
2880     int i_caps;
2881     char* psz_oss_device_name = strdup( psz_device ? psz_device : OSS_DEFAULT );
2882
2883     if( ( i_fd = open( psz_oss_device_name, O_RDONLY | O_NONBLOCK ) ) < 0 )
2884     {
2885         msg_Err( p_this, "cannot open device %s for OSS audio (%m)", psz_oss_device_name );
2886         goto open_failed;
2887     }
2888
2889     /* this will fail if the device is video */
2890     if( ioctl( i_fd, SNDCTL_DSP_GETCAPS, &i_caps ) < 0 )
2891     {
2892         msg_Err( p_this, "cannot get audio caps (%m)" );
2893         goto open_failed;
2894     }
2895
2896     free( psz_oss_device_name );
2897     if( i_fd >= 0 ) close( i_fd );
2898
2899     return true;
2900
2901 open_failed:
2902     free( psz_oss_device_name );
2903     if( i_fd >= 0 ) close( i_fd );
2904     return false;
2905 }
2906
2907 static bool ProbeAudioDev( vlc_object_t *p_this, demux_sys_t *p_sys,
2908                                  char *psz_device )
2909 {
2910 #ifdef HAVE_ALSA
2911     if( ( p_sys->i_audio_method & AUDIO_METHOD_ALSA )
2912      && ProbeAudioDevAlsa( p_this, p_sys, psz_device ) )
2913     {
2914         p_sys->i_audio_method = AUDIO_METHOD_ALSA;
2915         return true;
2916     }
2917 #endif
2918
2919     if( ( p_sys->i_audio_method & AUDIO_METHOD_OSS )
2920      && ProbeAudioDevOss( p_this, p_sys, psz_device ) )
2921     {
2922         p_sys->i_audio_method = AUDIO_METHOD_OSS;
2923         return true;
2924     }
2925
2926     p_sys->i_audio_method = 0;
2927     return false;
2928 }
2929
2930 static void name2var( unsigned char *name )
2931 {
2932     for( ; *name; name++ )
2933         *name = (*name == ' ') ? '_' : tolower( *name );
2934 }
2935
2936 /*****************************************************************************
2937  * Print a user-class v4l2 control's details, create the relevant variable,
2938  * change the value if needed.
2939  *****************************************************************************/
2940 static void ControlListPrint( vlc_object_t *p_obj, int i_fd,
2941                               struct v4l2_queryctrl queryctrl,
2942                               bool b_reset, bool b_demux )
2943 {
2944     struct v4l2_querymenu querymenu;
2945     unsigned int i_mid;
2946
2947     int i;
2948     int i_val;
2949
2950     char *psz_name;
2951     vlc_value_t val, val2;
2952
2953     if( queryctrl.flags & V4L2_CTRL_FLAG_GRABBED )
2954         msg_Dbg( p_obj, "    control is busy" );
2955     if( queryctrl.flags & V4L2_CTRL_FLAG_READ_ONLY )
2956         msg_Dbg( p_obj, "    control is read-only" );
2957
2958     for( i = 0; controls[i].psz_name != NULL; i++ )
2959         if( controls[i].i_cid == queryctrl.id ) break;
2960
2961     if( controls[i].psz_name )
2962     {
2963         psz_name = strdup( controls[i].psz_name );
2964         char psz_cfg_name[40];
2965         sprintf( psz_cfg_name, CFG_PREFIX "%s", psz_name );
2966         i_val = var_CreateGetInteger( p_obj, psz_cfg_name );
2967         var_Destroy( p_obj, psz_cfg_name );
2968     }
2969     else
2970     {
2971         psz_name = strdup( (const char *)queryctrl.name );
2972         name2var( (unsigned char *)psz_name );
2973         i_val = -1;
2974     }
2975
2976     switch( queryctrl.type )
2977     {
2978         case V4L2_CTRL_TYPE_INTEGER:
2979             msg_Dbg( p_obj, "    integer control" );
2980             msg_Dbg( p_obj,
2981                      "    valid values: %d to %d by steps of %d",
2982                      queryctrl.minimum, queryctrl.maximum,
2983                      queryctrl.step );
2984
2985             var_Create( p_obj, psz_name,
2986                         VLC_VAR_INTEGER | VLC_VAR_HASMIN | VLC_VAR_HASMAX
2987                       | VLC_VAR_HASSTEP | VLC_VAR_ISCOMMAND );
2988             val.i_int = queryctrl.minimum;
2989             var_Change( p_obj, psz_name, VLC_VAR_SETMIN, &val, NULL );
2990             val.i_int = queryctrl.maximum;
2991             var_Change( p_obj, psz_name, VLC_VAR_SETMAX, &val, NULL );
2992             val.i_int = queryctrl.step;
2993             var_Change( p_obj, psz_name, VLC_VAR_SETSTEP, &val, NULL );
2994             break;
2995         case V4L2_CTRL_TYPE_BOOLEAN:
2996             msg_Dbg( p_obj, "    boolean control" );
2997             var_Create( p_obj, psz_name,
2998                         VLC_VAR_BOOL | VLC_VAR_ISCOMMAND );
2999             break;
3000         case V4L2_CTRL_TYPE_MENU:
3001             msg_Dbg( p_obj, "    menu control" );
3002             var_Create( p_obj, psz_name,
3003                         VLC_VAR_INTEGER | VLC_VAR_HASCHOICE
3004                       | VLC_VAR_ISCOMMAND );
3005             memset( &querymenu, 0, sizeof( querymenu ) );
3006             for( i_mid = queryctrl.minimum;
3007                  i_mid <= (unsigned)queryctrl.maximum;
3008                  i_mid++ )
3009             {
3010                 querymenu.index = i_mid;
3011                 querymenu.id = queryctrl.id;
3012                 if( ioctl( i_fd, VIDIOC_QUERYMENU, &querymenu ) >= 0 )
3013                 {
3014                     msg_Dbg( p_obj, "        %d: %s",
3015                              querymenu.index, querymenu.name );
3016                     val.i_int = querymenu.index;
3017                     val2.psz_string = (char *)querymenu.name;
3018                     var_Change( p_obj, psz_name,
3019                                 VLC_VAR_ADDCHOICE, &val, &val2 );
3020                 }
3021             }
3022             break;
3023         case V4L2_CTRL_TYPE_BUTTON:
3024             msg_Dbg( p_obj, "    button control" );
3025             var_Create( p_obj, psz_name,
3026                         VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3027             break;
3028         case V4L2_CTRL_TYPE_CTRL_CLASS:
3029             msg_Dbg( p_obj, "    control class" );
3030             var_Create( p_obj, psz_name, VLC_VAR_VOID );
3031             break;
3032         default:
3033             msg_Dbg( p_obj, "    unknown control type (FIXME)" );
3034             /* FIXME */
3035             break;
3036     }
3037
3038     switch( queryctrl.type )
3039     {
3040         case V4L2_CTRL_TYPE_INTEGER:
3041         case V4L2_CTRL_TYPE_BOOLEAN:
3042         case V4L2_CTRL_TYPE_MENU:
3043             {
3044                 struct v4l2_control control;
3045                 msg_Dbg( p_obj, "    default value: %d",
3046                          queryctrl.default_value );
3047                 memset( &control, 0, sizeof( control ) );
3048                 control.id = queryctrl.id;
3049                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0 )
3050                 {
3051                     msg_Dbg( p_obj, "    current value: %d", control.value );
3052                 }
3053                 if( i_val == -1 )
3054                 {
3055                     i_val = control.value;
3056                     if( b_reset && queryctrl.default_value != control.value )
3057                     {
3058                         msg_Dbg( p_obj, "    reset value to default" );
3059                         Control( p_obj, i_fd, psz_name,
3060                                       queryctrl.id, queryctrl.default_value );
3061                     }
3062                 }
3063                 else
3064                 {
3065                     Control( p_obj, i_fd, psz_name,
3066                                   queryctrl.id, i_val );
3067                 }
3068             }
3069             break;
3070         default:
3071             break;
3072     }
3073
3074     val.psz_string = (char *)queryctrl.name;
3075     var_Change( p_obj, psz_name, VLC_VAR_SETTEXT, &val, NULL );
3076     val.i_int = queryctrl.id;
3077     val2.psz_string = (char *)psz_name;
3078     var_Change( p_obj, "allcontrols", VLC_VAR_ADDCHOICE, &val, &val2 );
3079     /* bad things happen changing MPEG mid-stream
3080      * so don't add to Ext Settings GUI */
3081     if( V4L2_CTRL_ID2CLASS( queryctrl.id ) != V4L2_CTRL_CLASS_MPEG )
3082         var_Change( p_obj, "controls", VLC_VAR_ADDCHOICE, &val, &val2 );
3083
3084     switch( var_Type( p_obj, psz_name ) & VLC_VAR_TYPE )
3085     {
3086         case VLC_VAR_BOOL:
3087             var_SetBool( p_obj, psz_name, i_val );
3088             break;
3089         case VLC_VAR_INTEGER:
3090             var_SetInteger( p_obj, psz_name, i_val );
3091             break;
3092         case VLC_VAR_VOID:
3093             break;
3094         default:
3095             msg_Warn( p_obj, "FIXME: %s %s %d", __FILE__, __func__,
3096                       __LINE__ );
3097             break;
3098     }
3099
3100     if( b_demux )
3101         var_AddCallback( p_obj, psz_name,
3102                         DemuxControlCallback, (void*)(intptr_t)queryctrl.id );
3103     else
3104         var_AddCallback( p_obj, psz_name,
3105                         AccessControlCallback, (void*)(intptr_t)queryctrl.id );
3106
3107     free( psz_name );
3108 }
3109
3110 /*****************************************************************************
3111  * List all user-class v4l2 controls, set them to the user specified
3112  * value and create the relevant variables to enable runtime changes
3113  *****************************************************************************/
3114 static int ControlList( vlc_object_t *p_obj, int i_fd,
3115                         bool b_reset, bool b_demux )
3116 {
3117     struct v4l2_queryctrl queryctrl;
3118     int i_cid;
3119
3120     memset( &queryctrl, 0, sizeof( queryctrl ) );
3121
3122     /* A list of available controls (aka the variable name) will be
3123      * stored as choices in the "allcontrols" variable. We'll thus be able
3124      * to use those to create an appropriate interface
3125      * A list of available controls that can be changed mid-stream will
3126      * be stored in the "controls" variable */
3127     var_Create( p_obj, "controls", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
3128     var_Create( p_obj, "allcontrols", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
3129
3130     var_Create( p_obj, "controls-update", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3131
3132     /* Add a control to reset all controls to their default values */
3133     vlc_value_t val, val2;
3134     var_Create( p_obj, "controls-reset", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3135     val.psz_string = _( "Reset controls to default" );
3136     var_Change( p_obj, "controls-reset", VLC_VAR_SETTEXT, &val, NULL );
3137     val.i_int = -1;
3138     val2.psz_string = (char *)"controls-reset";
3139     var_Change( p_obj, "controls", VLC_VAR_ADDCHOICE, &val, &val2 );
3140     if (b_demux)
3141         var_AddCallback( p_obj, "controls-reset", DemuxControlResetCallback, NULL );
3142     else
3143         var_AddCallback( p_obj, "controls-reset", AccessControlResetCallback, NULL );
3144
3145     queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3146     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3147     {
3148         msg_Dbg( p_obj, "Extended control API supported by v4l2 driver" );
3149
3150         /* List extended controls */
3151         queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3152         while( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3153         {
3154             if( queryctrl.type == V4L2_CTRL_TYPE_CTRL_CLASS )
3155             {
3156                 msg_Dbg( p_obj, "%s", queryctrl.name );
3157                 queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3158                 continue;
3159             }
3160             switch( V4L2_CTRL_ID2CLASS( queryctrl.id ) )
3161             {
3162                 case V4L2_CTRL_CLASS_USER:
3163                     msg_Dbg( p_obj, "Available control: %s (%x)",
3164                              queryctrl.name, queryctrl.id );
3165                     break;
3166                 case V4L2_CTRL_CLASS_MPEG:
3167                     name2var( queryctrl.name );
3168                     msg_Dbg( p_obj, "Available MPEG control: %s (%x)",
3169                              queryctrl.name, queryctrl.id );
3170                     break;
3171                 default:
3172                     msg_Dbg( p_obj, "Available private control: %s (%x)",
3173                              queryctrl.name, queryctrl.id );
3174                     break;
3175             }
3176             ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3177             queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3178         }
3179     }
3180     else
3181     {
3182         msg_Dbg( p_obj, "Extended control API not supported by v4l2 driver" );
3183
3184         /* List public controls */
3185         for( i_cid = V4L2_CID_BASE;
3186              i_cid < V4L2_CID_LASTP1;
3187              i_cid ++ )
3188         {
3189             queryctrl.id = i_cid;
3190             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3191             {
3192                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3193                     continue;
3194                 msg_Dbg( p_obj, "Available control: %s (%x)",
3195                          queryctrl.name, queryctrl.id );
3196                 ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3197             }
3198         }
3199
3200         /* List private controls */
3201         for( i_cid = V4L2_CID_PRIVATE_BASE;
3202              ;
3203              i_cid ++ )
3204         {
3205             queryctrl.id = i_cid;
3206             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3207             {
3208                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3209                     continue;
3210                 msg_Dbg( p_obj, "Available private control: %s (%x)",
3211                          queryctrl.name, queryctrl.id );
3212                 ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3213             }
3214             else
3215                 break;
3216         }
3217     }
3218
3219     return VLC_SUCCESS;
3220 }
3221
3222 static void SetAvailControlsByString( vlc_object_t *p_obj, demux_sys_t *p_sys,
3223                                       int i_fd )
3224 {
3225     char *psz_parser = p_sys->psz_set_ctrls;
3226     vlc_value_t val, text, name;
3227
3228     if( psz_parser == NULL )
3229         return;
3230
3231     if( *psz_parser == '{' )
3232         psz_parser++;
3233
3234     int i_ret = var_Change( p_obj, "allcontrols", VLC_VAR_GETCHOICES,
3235                             &val, &text );
3236     if( i_ret < 0 )
3237     {
3238         msg_Err( p_obj, "Oops, can't find 'allcontrols' variable." );
3239         return;
3240     }
3241
3242     while( *psz_parser && *psz_parser != '}' )
3243     {
3244         char *psz_delim, *psz_assign;
3245
3246         while( *psz_parser == ',' || *psz_parser == ' ' )
3247             psz_parser++;
3248
3249         psz_delim = strchr( psz_parser, ',' );
3250         if( psz_delim == NULL )
3251             psz_delim = strchr( psz_parser, '}' );
3252         if( psz_delim == NULL )
3253             psz_delim = psz_parser + strlen( psz_parser );
3254
3255         psz_assign = memchr( psz_parser, '=', psz_delim - psz_parser );
3256         if( psz_assign == NULL )
3257         {
3258             char *psz_name = strndup( psz_parser, psz_delim - psz_parser );
3259             msg_Err( p_obj, "%s missing '='", psz_name );
3260             free( psz_name );
3261             psz_parser = psz_delim + 1;
3262             continue;
3263         }
3264
3265         for( int i = 0;
3266              i < val.p_list->i_count ;//&& psz_parser < psz_assign;
3267              i++ )
3268         {
3269             const char *psz_var = text.p_list->p_values[i].psz_string;
3270             int i_cid = val.p_list->p_values[i].i_int;
3271             var_Change( p_obj, psz_var, VLC_VAR_GETTEXT, &name, NULL );
3272             const char *psz_name = name.psz_string;
3273
3274             int i_availstrlen = strlen( psz_name );
3275             int i_parsestrlen = psz_assign - psz_parser;
3276             int i_maxstrlen = __MAX( i_availstrlen, i_parsestrlen);
3277
3278             if( !strncasecmp( psz_name, psz_parser, i_maxstrlen ) )
3279             {
3280                 Control( p_obj, i_fd, psz_name, i_cid,
3281                          strtol( ++psz_assign, &psz_parser, 0) );
3282             }
3283         }
3284
3285         if( psz_parser < psz_assign )
3286         {
3287             char *psz_name = strndup( psz_parser, psz_assign - psz_parser );
3288             msg_Err( p_obj, "Control %s not available", psz_name );
3289             free( psz_name );
3290             psz_parser = ( *psz_delim ) ? ( psz_delim + 1 ) : psz_delim;
3291         }
3292     }
3293 }
3294
3295 /*****************************************************************************
3296  * Reset all user-class v4l2 controls to their default value
3297  *****************************************************************************/
3298 static int ControlReset( vlc_object_t *p_obj, int i_fd )
3299 {
3300     struct v4l2_queryctrl queryctrl;
3301     int i_cid;
3302     memset( &queryctrl, 0, sizeof( queryctrl ) );
3303
3304     queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3305     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3306     {
3307         /* Extended control API supported */
3308         queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3309         while( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3310         {
3311             if( queryctrl.type == V4L2_CTRL_TYPE_CTRL_CLASS
3312              || V4L2_CTRL_ID2CLASS( queryctrl.id ) == V4L2_CTRL_CLASS_MPEG )
3313             {
3314                 queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3315                 continue;
3316             }
3317             struct v4l2_control control;
3318             memset( &control, 0, sizeof( control ) );
3319             control.id = queryctrl.id;
3320             if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3321              && queryctrl.default_value != control.value )
3322             {
3323                 int i;
3324                 for( i = 0; controls[i].psz_name != NULL; i++ )
3325                     if( controls[i].i_cid == queryctrl.id ) break;
3326                 name2var( queryctrl.name );
3327                 Control( p_obj, i_fd,
3328                          controls[i].psz_name ? : (const char *)queryctrl.name,
3329                          queryctrl.id, queryctrl.default_value );
3330             }
3331             queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3332         }
3333     }
3334     else
3335     {
3336
3337         /* public controls */
3338         for( i_cid = V4L2_CID_BASE;
3339              i_cid < V4L2_CID_LASTP1;
3340              i_cid ++ )
3341         {
3342             queryctrl.id = i_cid;
3343             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3344             {
3345                 struct v4l2_control control;
3346                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3347                     continue;
3348                 memset( &control, 0, sizeof( control ) );
3349                 control.id = queryctrl.id;
3350                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3351                  && queryctrl.default_value != control.value )
3352                 {
3353                     int i;
3354                     for( i = 0; controls[i].psz_name != NULL; i++ )
3355                         if( controls[i].i_cid == queryctrl.id ) break;
3356                     name2var( queryctrl.name );
3357                     Control( p_obj, i_fd,
3358                              controls[i].psz_name ? : (const char *)queryctrl.name,
3359                              queryctrl.id, queryctrl.default_value );
3360                 }
3361             }
3362         }
3363
3364         /* private controls */
3365         for( i_cid = V4L2_CID_PRIVATE_BASE;
3366              ;
3367              i_cid ++ )
3368         {
3369             queryctrl.id = i_cid;
3370             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3371             {
3372                 struct v4l2_control control;
3373                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3374                     continue;
3375                 memset( &control, 0, sizeof( control ) );
3376                 control.id = queryctrl.id;
3377                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3378                  && queryctrl.default_value != control.value )
3379                 {
3380                     name2var( queryctrl.name );
3381                     Control( p_obj, i_fd, (const char *)queryctrl.name,
3382                              queryctrl.id, queryctrl.default_value );
3383                 }
3384             }
3385             else
3386                 break;
3387         }
3388     }
3389     return VLC_SUCCESS;
3390 }
3391
3392 /*****************************************************************************
3393  * Issue user-class v4l2 controls
3394  *****************************************************************************/
3395 static int Control( vlc_object_t *p_obj, int i_fd,
3396                     const char *psz_name, int i_cid, int i_value )
3397 {
3398     struct v4l2_queryctrl queryctrl;
3399     struct v4l2_control control;
3400     struct v4l2_ext_control ext_control;
3401     struct v4l2_ext_controls ext_controls;
3402
3403     if( i_value == -1 )
3404         return VLC_SUCCESS;
3405
3406     memset( &queryctrl, 0, sizeof( queryctrl ) );
3407
3408     queryctrl.id = i_cid;
3409
3410     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) < 0
3411         || queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3412     {
3413         msg_Dbg( p_obj, "%s (%x) control is not supported.", psz_name, i_cid );
3414         return VLC_EGENERIC;
3415     }
3416
3417     memset( &control, 0, sizeof( control ) );
3418     memset( &ext_control, 0, sizeof( ext_control ) );
3419     memset( &ext_controls, 0, sizeof( ext_controls ) );
3420     control.id = i_cid;
3421     ext_control.id = i_cid;
3422     ext_controls.ctrl_class = V4L2_CTRL_ID2CLASS( i_cid );
3423     ext_controls.count = 1;
3424     ext_controls.controls = &ext_control;
3425
3426     int i_ret = -1;
3427
3428     if( i_value >= 0 )
3429     {
3430         ext_control.value = i_value;
3431         if( ioctl( i_fd, VIDIOC_S_EXT_CTRLS, &ext_controls ) < 0 )
3432         {
3433             control.value = i_value;
3434             if( ioctl( i_fd, VIDIOC_S_CTRL, &control ) < 0 )
3435             {
3436                 msg_Err( p_obj, "unable to set %s (%x) to %d (%m)",
3437                          psz_name, i_cid, i_value );
3438                 return VLC_EGENERIC;
3439             }
3440             i_ret = ioctl( i_fd, VIDIOC_G_CTRL, &control );
3441         }
3442         else
3443         {
3444             i_ret = ioctl( i_fd, VIDIOC_G_EXT_CTRLS, &ext_controls );
3445             control.value = ext_control.value;
3446         }
3447     }
3448
3449     if( i_ret >= 0 )
3450     {
3451         vlc_value_t val;
3452         msg_Dbg( p_obj, "video %s: %d", psz_name, control.value );
3453         switch( var_Type( p_obj, psz_name ) & VLC_VAR_TYPE )
3454         {
3455             case VLC_VAR_BOOL:
3456                 val.b_bool = control.value;
3457                 var_Change( p_obj, psz_name, VLC_VAR_SETVALUE, &val, NULL );
3458                 var_SetVoid( p_obj, "controls-update" );
3459                 break;
3460             case VLC_VAR_INTEGER:
3461                 val.i_int = control.value;
3462                 var_Change( p_obj, psz_name, VLC_VAR_SETVALUE, &val, NULL );
3463                 var_SetVoid( p_obj, "controls-update" );
3464                 break;
3465         }
3466     }
3467     return VLC_SUCCESS;
3468 }
3469
3470 /*****************************************************************************
3471  * On the fly change settings callback
3472  *****************************************************************************/
3473 static int DemuxControlCallback( vlc_object_t *p_this,
3474     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3475     void *p_data )
3476 {
3477     demux_t *p_demux = (demux_t*)p_this;
3478     demux_sys_t *p_sys = p_demux->p_sys;
3479     int i_cid = (int)p_data;
3480
3481     int i_fd = p_sys->i_fd_video;
3482
3483     if( i_fd < 0 )
3484         return VLC_EGENERIC;
3485
3486     Control( p_this, i_fd, psz_var, i_cid, newval.i_int );
3487
3488     return VLC_EGENERIC;
3489 }
3490
3491 static int DemuxControlResetCallback( vlc_object_t *p_this,
3492     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3493     void *p_data )
3494 {
3495     demux_t *p_demux = (demux_t*)p_this;
3496     demux_sys_t *p_sys = p_demux->p_sys;
3497
3498     int i_fd = p_sys->i_fd_video;
3499
3500     if( i_fd < 0 )
3501         return VLC_EGENERIC;
3502
3503     ControlReset( p_this, i_fd );
3504
3505     return VLC_EGENERIC;
3506 }
3507
3508 static int AccessControlCallback( vlc_object_t *p_this,
3509     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3510     void *p_data )
3511 {
3512     access_t *p_access = (access_t *)p_this;
3513     demux_sys_t *p_sys = (demux_sys_t *) p_access->p_sys;
3514     int i_cid = (int)p_data;
3515
3516     int i_fd = p_sys->i_fd_video;
3517
3518     if( i_fd < 0 )
3519         return VLC_EGENERIC;
3520
3521     Control( p_this, i_fd, psz_var, i_cid, newval.i_int );
3522
3523     return VLC_EGENERIC;
3524 }
3525
3526 static int AccessControlResetCallback( vlc_object_t *p_this,
3527     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3528     void *p_data )
3529 {
3530     access_t *p_access = (access_t *)p_this;
3531     demux_sys_t *p_sys = (demux_sys_t *) p_access->p_sys;
3532
3533     int i_fd = p_sys->i_fd_video;
3534
3535     if( i_fd < 0 )
3536         return VLC_EGENERIC;
3537
3538     ControlReset( p_this, i_fd );
3539
3540     return VLC_EGENERIC;
3541 }