]> git.sesse.net Git - vlc/blob - modules/access/v4l2/v4l2.c
Include vlc_plugin.h as needed
[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/vlc.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, MJPEG 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 int i_standards_list[] =
244     { V4L2_STD_UNKNOWN, V4L2_STD_SECAM, V4L2_STD_PAL, V4L2_STD_NTSC };
245 static const char *psz_standards_list_text[] =
246     { N_("Default"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
247
248 static int i_iomethod_list[] =
249     { IO_METHOD_READ, IO_METHOD_MMAP, IO_METHOD_USERPTR };
250 static const char *psz_iomethod_list_text[] =
251     { N_("READ"), N_("MMAP"),  N_("USERPTR") };
252
253 static 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 *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( _("Video4Linux2") );
276     set_description( _("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( _("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 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_MJPEG };
482
483 static 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( p_access->b_die )
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 (%d > %d)",
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     {
1666         msg_Err( p_demux, "Out of memory" );
1667         goto open_failed;
1668     }
1669
1670     p_sys->p_buffers[0].length = i_buffer_size;
1671     p_sys->p_buffers[0].start = malloc( i_buffer_size );
1672     if( !p_sys->p_buffers[0].start )
1673     {
1674         msg_Err( p_demux, "Out of memory" );
1675         goto open_failed;
1676     }
1677
1678     return VLC_SUCCESS;
1679
1680 open_failed:
1681     return VLC_EGENERIC;
1682
1683 }
1684
1685 /*****************************************************************************
1686  * Helper function to initalise video IO using the mmap method
1687  *****************************************************************************/
1688 static int InitMmap( demux_t *p_demux, int i_fd )
1689 {
1690     demux_sys_t *p_sys = p_demux->p_sys;
1691     struct v4l2_requestbuffers req;
1692
1693     memset( &req, 0, sizeof(req) );
1694     req.count = 4;
1695     req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1696     req.memory = V4L2_MEMORY_MMAP;
1697
1698     if( ioctl( i_fd, VIDIOC_REQBUFS, &req ) < 0 )
1699     {
1700         msg_Err( p_demux, "device does not support mmap i/o" );
1701         goto open_failed;
1702     }
1703
1704     if( req.count < 2 )
1705     {
1706         msg_Err( p_demux, "Insufficient buffer memory" );
1707         goto open_failed;
1708     }
1709
1710     p_sys->p_buffers = calloc( req.count, sizeof( *p_sys->p_buffers ) );
1711     if( !p_sys->p_buffers )
1712     {
1713         msg_Err( p_demux, "Out of memory" );
1714         goto open_failed;
1715     }
1716
1717     for( p_sys->i_nbuffers = 0; p_sys->i_nbuffers < req.count; ++p_sys->i_nbuffers )
1718     {
1719         struct v4l2_buffer buf;
1720
1721         memset( &buf, 0, sizeof(buf) );
1722         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1723         buf.memory = V4L2_MEMORY_MMAP;
1724         buf.index = p_sys->i_nbuffers;
1725
1726         if( ioctl( i_fd, VIDIOC_QUERYBUF, &buf ) < 0 )
1727         {
1728             msg_Err( p_demux, "VIDIOC_QUERYBUF" );
1729             goto open_failed;
1730         }
1731
1732         p_sys->p_buffers[p_sys->i_nbuffers].length = buf.length;
1733         p_sys->p_buffers[p_sys->i_nbuffers].start =
1734             mmap( NULL, buf.length, PROT_READ | PROT_WRITE, MAP_SHARED, i_fd, buf.m.offset );
1735
1736         if( p_sys->p_buffers[p_sys->i_nbuffers].start == MAP_FAILED )
1737         {
1738             msg_Err( p_demux, "mmap failed (%m)" );
1739             goto open_failed;
1740         }
1741     }
1742
1743     return VLC_SUCCESS;
1744
1745 open_failed:
1746     return VLC_EGENERIC;
1747
1748 }
1749
1750 /*****************************************************************************
1751  * Helper function to initalise video IO using the userbuf method
1752  *****************************************************************************/
1753 static int InitUserP( demux_t *p_demux, int i_fd, unsigned int i_buffer_size )
1754 {
1755     demux_sys_t *p_sys = p_demux->p_sys;
1756     struct v4l2_requestbuffers req;
1757     unsigned int i_page_size;
1758
1759     i_page_size = sysconf(_SC_PAGESIZE);
1760     i_buffer_size = ( i_buffer_size + i_page_size - 1 ) & ~( i_page_size - 1);
1761
1762     memset( &req, 0, sizeof(req) );
1763     req.count = 4;
1764     req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1765     req.memory = V4L2_MEMORY_USERPTR;
1766
1767     if( ioctl( i_fd, VIDIOC_REQBUFS, &req ) < 0 )
1768     {
1769         msg_Err( p_demux, "device does not support user pointer i/o" );
1770         goto open_failed;
1771     }
1772
1773     p_sys->p_buffers = calloc( 4, sizeof( *p_sys->p_buffers ) );
1774     if( !p_sys->p_buffers )
1775     {
1776         msg_Err( p_demux, "Out of memory" );
1777         goto open_failed;
1778     }
1779
1780     for( p_sys->i_nbuffers = 0; p_sys->i_nbuffers < 4; ++p_sys->i_nbuffers )
1781     {
1782         p_sys->p_buffers[p_sys->i_nbuffers].length = i_buffer_size;
1783         posix_memalign( &p_sys->p_buffers[p_sys->i_nbuffers].start,
1784                 /* boundary */ i_page_size, i_buffer_size );
1785
1786         if( !p_sys->p_buffers[p_sys->i_nbuffers].start )
1787         {
1788             msg_Err( p_demux, "out of memory" );
1789             goto open_failed;
1790         }
1791     }
1792
1793     return VLC_SUCCESS;
1794
1795 open_failed:
1796     return VLC_EGENERIC;
1797
1798 }
1799
1800 /*****************************************************************************
1801  * IsPixelFormatSupported: returns true if the specified V4L2 pixel format is
1802  * in the array of supported formats returned by the driver
1803  *****************************************************************************/
1804 static bool IsPixelFormatSupported( demux_t *p_demux, unsigned int i_pixelformat )
1805 {
1806     demux_sys_t *p_sys = p_demux->p_sys;
1807
1808     for( int i_index = 0; i_index < p_sys->i_codec; i_index++ )
1809     {
1810         if( p_sys->p_codecs[i_index].pixelformat == i_pixelformat )
1811             return true;
1812     }
1813
1814     return false;
1815 }
1816
1817 /*****************************************************************************
1818  * OpenVideoDev: open and set up the video device and probe for capabilities
1819  *****************************************************************************/
1820 static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
1821 {
1822     int i_fd;
1823     struct v4l2_cropcap cropcap;
1824     struct v4l2_crop crop;
1825     struct v4l2_format fmt;
1826     unsigned int i_min;
1827     enum v4l2_buf_type buf_type;
1828     char *psz_device = p_sys->psz_vdev;
1829
1830     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
1831     {
1832         msg_Err( p_obj, "cannot open device (%m)" );
1833         goto open_failed;
1834     }
1835
1836     /* Tune the tuner */
1837     if( p_sys->i_frequency >= 0 )
1838     {
1839         if( p_sys->i_cur_tuner < 0 || p_sys->i_cur_tuner >= p_sys->i_tuner )
1840         {
1841             msg_Err( p_obj, "invalid tuner %d.", p_sys->i_cur_tuner );
1842             goto open_failed;
1843         }
1844         struct v4l2_frequency frequency;
1845         memset( &frequency, 0, sizeof( frequency ) );
1846         frequency.tuner = p_sys->i_cur_tuner;
1847         frequency.type = p_sys->p_tuners[p_sys->i_cur_tuner].type;
1848         frequency.frequency = p_sys->i_frequency / 62.5;
1849         if( ioctl( i_fd, VIDIOC_S_FREQUENCY, &frequency ) < 0 )
1850         {
1851             msg_Err( p_obj, "cannot set tuner frequency (%m)" );
1852             goto open_failed;
1853         }
1854         msg_Dbg( p_obj, "Tuner frequency set" );
1855     }
1856
1857     /* Set the tuner's audio mode */
1858     if( p_sys->i_audio_mode >= 0 )
1859     {
1860         if( p_sys->i_cur_tuner < 0 || p_sys->i_cur_tuner >= p_sys->i_tuner )
1861         {
1862             msg_Err( p_obj, "invalid tuner %d.", p_sys->i_cur_tuner );
1863             goto open_failed;
1864         }
1865         struct v4l2_tuner tuner;
1866         memset( &tuner, 0, sizeof( tuner ) );
1867         tuner.index = p_sys->i_cur_tuner;
1868         tuner.audmode = p_sys->i_audio_mode;
1869         if( ioctl( i_fd, VIDIOC_S_TUNER, &tuner ) < 0 )
1870         {
1871             msg_Err( p_obj, "cannot set tuner audio mode (%m)" );
1872             goto open_failed;
1873         }
1874         msg_Dbg( p_obj, "Tuner audio mode set" );
1875     }
1876
1877     /* Select standard */
1878
1879     if( p_sys->i_selected_standard_id != V4L2_STD_UNKNOWN )
1880     {
1881         if( ioctl( i_fd, VIDIOC_S_STD, &p_sys->i_selected_standard_id ) < 0 )
1882         {
1883             msg_Err( p_obj, "cannot set standard (%m)" );
1884             goto open_failed;
1885         }
1886         msg_Dbg( p_obj, "Set standard" );
1887     }
1888
1889     /* Select input */
1890
1891     if( p_sys->i_selected_input >= p_sys->i_input )
1892     {
1893         msg_Warn( p_obj, "invalid input. Using the default one" );
1894         p_sys->i_selected_input = 0;
1895     }
1896
1897     if( ioctl( i_fd, VIDIOC_S_INPUT, &p_sys->i_selected_input ) < 0 )
1898     {
1899         msg_Err( p_obj, "cannot set input (%m)" );
1900         goto open_failed;
1901     }
1902
1903     /* Set audio input */
1904
1905     if( p_sys->i_audio > 0 )
1906     {
1907         if( p_sys->i_selected_audio_input < 0
1908          || p_sys->i_selected_audio_input >= p_sys->i_audio )
1909         {
1910             msg_Warn( p_obj, "invalid audio input. Using the default one" );
1911             p_sys->i_selected_audio_input = 0;
1912         }
1913
1914         if( ioctl( i_fd, VIDIOC_S_AUDIO, &p_sys->p_audios[p_sys->i_selected_audio_input] ) < 0 )
1915         {
1916             msg_Err( p_obj, "cannot set audio input (%m)" );
1917             goto open_failed;
1918         }
1919         msg_Dbg( p_obj, "Audio input set to %d", p_sys->i_selected_audio_input );
1920     }
1921
1922
1923     /* TODO: Move the resolution stuff up here */
1924     /* if MPEG encoder card, no need to do anything else after this */
1925     ControlList( p_obj, i_fd,
1926                   var_GetBool( p_obj, "v4l2-controls-reset" ), b_demux );
1927     SetAvailControlsByString( p_obj, p_sys, i_fd );
1928     if( false == b_demux)
1929     {
1930         return i_fd;
1931     }
1932
1933     demux_t *p_demux = (demux_t *) p_obj;
1934
1935     /* Verify device support for the various IO methods */
1936     switch( p_sys->io )
1937     {
1938         case IO_METHOD_READ:
1939             if( !(p_sys->dev_cap.capabilities & V4L2_CAP_READWRITE) )
1940             {
1941                 msg_Err( p_demux, "device does not support read i/o" );
1942                 goto open_failed;
1943             }
1944             break;
1945
1946         case IO_METHOD_MMAP:
1947         case IO_METHOD_USERPTR:
1948             if( !(p_sys->dev_cap.capabilities & V4L2_CAP_STREAMING) )
1949             {
1950                 msg_Err( p_demux, "device does not support streaming i/o" );
1951                 goto open_failed;
1952             }
1953             break;
1954
1955         default:
1956             msg_Err( p_demux, "io method not supported" );
1957             goto open_failed;
1958     }
1959
1960     /* Reset Cropping */
1961     memset( &cropcap, 0, sizeof(cropcap) );
1962     cropcap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1963     if( ioctl( i_fd, VIDIOC_CROPCAP, &cropcap ) >= 0 )
1964     {
1965         crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1966         crop.c = cropcap.defrect; /* reset to default */
1967         if( ioctl( i_fd, VIDIOC_S_CROP, &crop ) < 0 )
1968         {
1969             switch( errno )
1970             {
1971                 case EINVAL:
1972                     /* Cropping not supported. */
1973                     break;
1974                 default:
1975                     /* Errors ignored. */
1976                     break;
1977             }
1978         }
1979     }
1980
1981     /* Try and find default resolution if not specified */
1982     memset( &fmt, 0, sizeof(fmt) );
1983     fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1984
1985     if( p_sys->i_width <= 0 || p_sys->i_height <= 0 )
1986     {
1987         if( ioctl( i_fd, VIDIOC_G_FMT, &fmt ) < 0 )
1988         {
1989             msg_Err( p_demux, "Cannot get default width and height." );
1990             goto open_failed;
1991         }
1992
1993         p_sys->i_width = fmt.fmt.pix.width;
1994         p_sys->i_height = fmt.fmt.pix.height;
1995
1996         if( fmt.fmt.pix.field == V4L2_FIELD_ALTERNATE )
1997         {
1998             p_sys->i_height = p_sys->i_height * 2;
1999         }
2000     }
2001     else
2002     {
2003         msg_Dbg( p_demux, "trying specified size %dx%d", p_sys->i_width, p_sys->i_height );
2004     }
2005
2006     fmt.fmt.pix.width = p_sys->i_width;
2007     fmt.fmt.pix.height = p_sys->i_height;
2008     fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
2009
2010     /* Test and set Chroma */
2011     fmt.fmt.pix.pixelformat = 0;
2012     if( p_sys->psz_requested_chroma && strlen( p_sys->psz_requested_chroma ) > 0 )
2013     {
2014         /* User specified chroma */
2015         if( strlen( p_sys->psz_requested_chroma ) >= 4 )
2016         {
2017             int i_requested_fourcc = VLC_FOURCC(
2018                 p_sys->psz_requested_chroma[0], p_sys->psz_requested_chroma[1],
2019                 p_sys->psz_requested_chroma[2], p_sys->psz_requested_chroma[3] );
2020             for( int i = 0; v4l2chroma_to_fourcc[i].i_v4l2 != 0; i++ )
2021             {
2022                 if( v4l2chroma_to_fourcc[i].i_fourcc == i_requested_fourcc )
2023                 {
2024                     fmt.fmt.pix.pixelformat = v4l2chroma_to_fourcc[i].i_v4l2;
2025                     break;
2026                 }
2027             }
2028         }
2029         /* Try and set user chroma */
2030         if( !IsPixelFormatSupported( p_demux, fmt.fmt.pix.pixelformat ) || ( fmt.fmt.pix.pixelformat && ioctl( i_fd, VIDIOC_S_FMT, &fmt ) < 0 ) )
2031         {
2032             msg_Warn( p_demux, "Driver is unable to use specified chroma %s. Trying defaults.", p_sys->psz_requested_chroma );
2033             fmt.fmt.pix.pixelformat = 0;
2034         }
2035     }
2036
2037     /* If no user specified chroma, find best */
2038     /* This also decides if MPEG encoder card or not */
2039     if( !fmt.fmt.pix.pixelformat )
2040     {
2041         unsigned int i;
2042         for( i = 0; i < ARRAY_SIZE( p_chroma_fallbacks ); i++ )
2043         {
2044             fmt.fmt.pix.pixelformat = p_chroma_fallbacks[i];
2045             if( IsPixelFormatSupported( p_demux, fmt.fmt.pix.pixelformat )
2046              && ioctl( i_fd, VIDIOC_S_FMT, &fmt ) >= 0 )
2047                 break;
2048         }
2049         if( i == ARRAY_SIZE( p_chroma_fallbacks ) )
2050         {
2051             msg_Warn( p_demux, "Could not select any of the default chromas; attempting to open as MPEG encoder card (access)" );
2052             goto open_failed;
2053         }
2054     }
2055
2056     /* Reassign width, height and chroma incase driver override */
2057     p_sys->i_width = fmt.fmt.pix.width;
2058     p_sys->i_height = fmt.fmt.pix.height;
2059
2060     /* Look up final fourcc */
2061     p_sys->i_fourcc = 0;
2062     for( int i = 0; v4l2chroma_to_fourcc[i].i_fourcc != 0; i++ )
2063     {
2064         if( v4l2chroma_to_fourcc[i].i_v4l2 == fmt.fmt.pix.pixelformat )
2065         {
2066             p_sys->i_fourcc = v4l2chroma_to_fourcc[i].i_fourcc;
2067             break;
2068         }
2069     }
2070
2071     /* Buggy driver paranoia */
2072     i_min = fmt.fmt.pix.width * 2;
2073     if( fmt.fmt.pix.bytesperline < i_min )
2074         fmt.fmt.pix.bytesperline = i_min;
2075     i_min = fmt.fmt.pix.bytesperline * fmt.fmt.pix.height;
2076     if( fmt.fmt.pix.sizeimage < i_min )
2077         fmt.fmt.pix.sizeimage = i_min;
2078
2079 #ifdef VIDIOC_ENUM_FRAMEINTERVALS
2080     /* This is new in Linux 2.6.19 */
2081     /* List supported frame rates */
2082     struct v4l2_frmivalenum frmival;
2083     frmival.index = 0;
2084     frmival.pixel_format = fmt.fmt.pix.pixelformat;
2085     frmival.width = p_sys->i_width;
2086     frmival.height = p_sys->i_height;
2087     if( ioctl( i_fd, VIDIOC_ENUM_FRAMEINTERVALS, &frmival ) >= 0 )
2088     {
2089         char psz_fourcc[5];
2090         memset( &psz_fourcc, 0, sizeof( psz_fourcc ) );
2091         vlc_fourcc_to_char( p_sys->i_fourcc, &psz_fourcc );
2092         msg_Dbg( p_demux, "supported frame intervals for %4s, %dx%d:",
2093                  psz_fourcc, frmival.width, frmival.height );
2094         switch( frmival.type )
2095         {
2096             case V4L2_FRMIVAL_TYPE_DISCRETE:
2097                 do
2098                 {
2099                     msg_Dbg( p_demux, "    supported frame interval: %d/%d",
2100                              frmival.discrete.numerator,
2101                              frmival.discrete.denominator );
2102                     frmival.index++;
2103                 } while( ioctl( i_fd, VIDIOC_ENUM_FRAMEINTERVALS, &frmival ) >= 0 );
2104                 break;
2105             case V4L2_FRMIVAL_TYPE_STEPWISE:
2106                 msg_Dbg( p_demux, "    supported frame intervals: %d/%d to "
2107                          "%d/%d using %d/%d increments",
2108                          frmival.stepwise.min.numerator,
2109                          frmival.stepwise.min.denominator,
2110                          frmival.stepwise.max.numerator,
2111                          frmival.stepwise.max.denominator,
2112                          frmival.stepwise.step.numerator,
2113                          frmival.stepwise.step.denominator );
2114                 break;
2115             case V4L2_FRMIVAL_TYPE_CONTINUOUS:
2116                 msg_Dbg( p_demux, "    supported frame intervals: %d/%d to %d/%d",
2117                          frmival.stepwise.min.numerator,
2118                          frmival.stepwise.min.denominator,
2119                          frmival.stepwise.max.numerator,
2120                          frmival.stepwise.max.denominator );
2121                 break;
2122         }
2123     }
2124 #endif
2125
2126     /* Init IO method */
2127     switch( p_sys->io )
2128     {
2129     case IO_METHOD_READ:
2130         if( InitRead( p_demux, i_fd, fmt.fmt.pix.sizeimage ) != VLC_SUCCESS ) goto open_failed;
2131         break;
2132
2133     case IO_METHOD_MMAP:
2134         if( InitMmap( p_demux, i_fd ) != VLC_SUCCESS ) goto open_failed;
2135         break;
2136
2137     case IO_METHOD_USERPTR:
2138         if( InitUserP( p_demux, i_fd, fmt.fmt.pix.sizeimage ) != VLC_SUCCESS ) goto open_failed;
2139         break;
2140
2141     }
2142
2143     /* Add */
2144     es_format_t es_fmt;
2145     es_format_Init( &es_fmt, VIDEO_ES, p_sys->i_fourcc );
2146     es_fmt.video.i_width  = p_sys->i_width;
2147     es_fmt.video.i_height = p_sys->i_height;
2148     es_fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
2149
2150     /* Setup rgb mask for RGB formats */
2151     if( p_sys->i_fourcc == VLC_FOURCC( 'R','V','2','4' ) )
2152     {
2153         /* This is in BGR format */
2154         es_fmt.video.i_bmask = 0x00ff0000;
2155         es_fmt.video.i_gmask = 0x0000ff00;
2156         es_fmt.video.i_rmask = 0x000000ff;
2157     }
2158
2159     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
2160         (char*)&es_fmt.i_codec, es_fmt.video.i_width, es_fmt.video.i_height );
2161     p_sys->p_es_video = es_out_Add( p_demux->out, &es_fmt );
2162
2163     /* Start Capture */
2164
2165     switch( p_sys->io )
2166     {
2167     case IO_METHOD_READ:
2168         /* Nothing to do */
2169         break;
2170
2171     case IO_METHOD_MMAP:
2172         for (unsigned int i = 0; i < p_sys->i_nbuffers; ++i)
2173         {
2174             struct v4l2_buffer buf;
2175
2176             memset( &buf, 0, sizeof(buf) );
2177             buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2178             buf.memory = V4L2_MEMORY_MMAP;
2179             buf.index = i;
2180
2181             if( ioctl( i_fd, VIDIOC_QBUF, &buf ) < 0 )
2182             {
2183                 msg_Err( p_demux, "VIDIOC_QBUF failed" );
2184                 goto open_failed;
2185             }
2186         }
2187
2188         buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2189         if( ioctl( i_fd, VIDIOC_STREAMON, &buf_type ) < 0 )
2190         {
2191             msg_Err( p_demux, "VIDIOC_STREAMON failed" );
2192             goto open_failed;
2193         }
2194
2195         break;
2196
2197     case IO_METHOD_USERPTR:
2198         for( unsigned int i = 0; i < p_sys->i_nbuffers; ++i )
2199         {
2200             struct v4l2_buffer buf;
2201
2202             memset( &buf, 0, sizeof(buf) );
2203             buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2204             buf.memory = V4L2_MEMORY_USERPTR;
2205             buf.index = i;
2206             buf.m.userptr = (unsigned long)p_sys->p_buffers[i].start;
2207             buf.length = p_sys->p_buffers[i].length;
2208
2209             if( ioctl( i_fd, VIDIOC_QBUF, &buf ) < 0 )
2210             {
2211                 msg_Err( p_demux, "VIDIOC_QBUF failed" );
2212                 goto open_failed;
2213             }
2214         }
2215
2216         buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2217         if( ioctl( i_fd, VIDIOC_STREAMON, &buf_type ) < 0 )
2218         {
2219             msg_Err( p_demux, "VIDIOC_STREAMON failed" );
2220             goto open_failed;
2221         }
2222
2223         break;
2224     }
2225
2226     /* report fps */
2227     if( p_sys->f_fps >= 0.1 )
2228     {
2229         msg_Dbg( p_demux, "User set fps=%f", p_sys->f_fps );
2230     }
2231
2232     return i_fd;
2233
2234 open_failed:
2235     if( i_fd >= 0 ) close( i_fd );
2236     return -1;
2237
2238 }
2239
2240 #ifdef HAVE_ALSA
2241 /*****************************************************************************
2242  * ResolveALSADeviceName: Change any . to : in the ALSA device name
2243  *****************************************************************************/
2244 static char *ResolveALSADeviceName( const char *psz_device )
2245 {
2246     char* psz_alsa_name = strdup( psz_device );
2247     for( unsigned int i = 0; i < strlen( psz_device ); i++ )
2248     {
2249         if( psz_alsa_name[i] == '.' ) psz_alsa_name[i] = ':';
2250     }
2251     return psz_alsa_name;
2252 }
2253 #endif
2254
2255 /*****************************************************************************
2256  * OpenAudioDev: open and set up the audio device and probe for capabilities
2257  *****************************************************************************/
2258 #ifdef HAVE_ALSA
2259 static int OpenAudioDevAlsa( vlc_object_t *p_this, demux_sys_t *p_sys,
2260                              bool b_demux )
2261 {
2262     char *psz_device = p_sys->psz_adev;
2263     p_sys->p_alsa_pcm = NULL;
2264     char* psz_alsa_device_name = NULL;
2265     snd_pcm_hw_params_t *p_hw_params = NULL;
2266     snd_pcm_uframes_t buffer_size;
2267     snd_pcm_uframes_t chunk_size;
2268
2269     /* ALSA */
2270     int i_err;
2271     psz_alsa_device_name =
2272         ResolveALSADeviceName( psz_device?: ALSA_DEFAULT );
2273
2274     if( ( i_err = snd_pcm_open( &p_sys->p_alsa_pcm, psz_alsa_device_name,
2275         SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK ) ) < 0)
2276     {
2277         msg_Err( p_this, "Cannot open ALSA audio device %s (%s)",
2278                  psz_alsa_device_name, snd_strerror( i_err ) );
2279         goto adev_fail;
2280     }
2281
2282     if( ( i_err = snd_pcm_nonblock( p_sys->p_alsa_pcm, 1 ) ) < 0)
2283     {
2284         msg_Err( p_this, "Cannot set ALSA nonblock (%s)",
2285                  snd_strerror( i_err ) );
2286         goto adev_fail;
2287     }
2288
2289     /* Begin setting hardware parameters */
2290
2291     if( ( i_err = snd_pcm_hw_params_malloc( &p_hw_params ) ) < 0 )
2292     {
2293         msg_Err( p_this,
2294                  "ALSA: cannot allocate hardware parameter structure (%s)",
2295                  snd_strerror( i_err ) );
2296         goto adev_fail;
2297     }
2298
2299     if( ( i_err = snd_pcm_hw_params_any( p_sys->p_alsa_pcm, p_hw_params ) ) < 0 )
2300     {
2301         msg_Err( p_this,
2302                 "ALSA: cannot initialize hardware parameter structure (%s)",
2303                  snd_strerror( i_err ) );
2304         goto adev_fail;
2305     }
2306
2307     /* Set Interleaved access */
2308     if( ( i_err = snd_pcm_hw_params_set_access( p_sys->p_alsa_pcm, p_hw_params, SND_PCM_ACCESS_RW_INTERLEAVED ) ) < 0 )
2309     {
2310         msg_Err( p_this, "ALSA: cannot set access type (%s)",
2311                  snd_strerror( i_err ) );
2312         goto adev_fail;
2313     }
2314
2315     /* Set 16 bit little endian */
2316     if( ( i_err = snd_pcm_hw_params_set_format( p_sys->p_alsa_pcm, p_hw_params, SND_PCM_FORMAT_S16_LE ) ) < 0 )
2317     {
2318         msg_Err( p_this, "ALSA: cannot set sample format (%s)",
2319                  snd_strerror( i_err ) );
2320         goto adev_fail;
2321     }
2322
2323     /* Set sample rate */
2324 #ifdef HAVE_ALSA_NEW_API
2325     i_err = snd_pcm_hw_params_set_rate_near( p_sys->p_alsa_pcm, p_hw_params, &p_sys->i_sample_rate, NULL );
2326 #else
2327     i_err = snd_pcm_hw_params_set_rate_near( p_sys->p_alsa_pcm, p_hw_params, p_sys->i_sample_rate, NULL );
2328 #endif
2329     if( i_err < 0 )
2330     {
2331         msg_Err( p_this, "ALSA: cannot set sample rate (%s)",
2332                  snd_strerror( i_err ) );
2333         goto adev_fail;
2334     }
2335
2336     /* Set channels */
2337     unsigned int channels = p_sys->b_stereo ? 2 : 1;
2338     if( ( i_err = snd_pcm_hw_params_set_channels( p_sys->p_alsa_pcm, p_hw_params, channels ) ) < 0 )
2339     {
2340         channels = ( channels==1 ) ? 2 : 1;
2341         msg_Warn( p_this, "ALSA: cannot set channel count (%s). "
2342                   "Trying with channels=%d",
2343                   snd_strerror( i_err ),
2344                   channels );
2345         if( ( i_err = snd_pcm_hw_params_set_channels( p_sys->p_alsa_pcm, p_hw_params, channels ) ) < 0 )
2346         {
2347             msg_Err( p_this, "ALSA: cannot set channel count (%s)",
2348                      snd_strerror( i_err ) );
2349             goto adev_fail;
2350         }
2351         p_sys->b_stereo = ( channels == 2 );
2352     }
2353
2354     /* Set metrics for buffer calculations later */
2355     unsigned int buffer_time;
2356     if( ( i_err = snd_pcm_hw_params_get_buffer_time_max(p_hw_params, &buffer_time, 0) ) < 0 )
2357     {
2358         msg_Err( p_this, "ALSA: cannot get buffer time max (%s)",
2359                  snd_strerror( i_err ) );
2360         goto adev_fail;
2361     }
2362     if (buffer_time > 500000) buffer_time = 500000;
2363
2364     /* Set period time */
2365     unsigned int period_time = buffer_time / 4;
2366 #ifdef HAVE_ALSA_NEW_API
2367     i_err = snd_pcm_hw_params_set_period_time_near( p_sys->p_alsa_pcm, p_hw_params, &period_time, 0 );
2368 #else
2369     i_err = snd_pcm_hw_params_set_period_time_near( p_sys->p_alsa_pcm, p_hw_params, period_time, 0 );
2370 #endif
2371     if( i_err < 0 )
2372     {
2373         msg_Err( p_this, "ALSA: cannot set period time (%s)",
2374                  snd_strerror( i_err ) );
2375         goto adev_fail;
2376     }
2377
2378     /* Set buffer time */
2379 #ifdef HAVE_ALSA_NEW_API
2380     i_err = snd_pcm_hw_params_set_buffer_time_near( p_sys->p_alsa_pcm, p_hw_params, &buffer_time, 0 );
2381 #else
2382     i_err = snd_pcm_hw_params_set_buffer_time_near( p_sys->p_alsa_pcm, p_hw_params, buffer_time, 0 );
2383 #endif
2384     if( i_err < 0 )
2385     {
2386         msg_Err( p_this, "ALSA: cannot set buffer time (%s)",
2387                  snd_strerror( i_err ) );
2388         goto adev_fail;
2389     }
2390
2391     /* Apply new hardware parameters */
2392     if( ( i_err = snd_pcm_hw_params( p_sys->p_alsa_pcm, p_hw_params ) ) < 0 )
2393     {
2394         msg_Err( p_this, "ALSA: cannot set hw parameters (%s)",
2395                  snd_strerror( i_err ) );
2396         goto adev_fail;
2397     }
2398
2399     /* Get various buffer metrics */
2400     snd_pcm_hw_params_get_period_size( p_hw_params, &chunk_size, 0 );
2401     snd_pcm_hw_params_get_buffer_size( p_hw_params, &buffer_size );
2402     if( chunk_size == buffer_size )
2403     {
2404         msg_Err( p_this,
2405                  "ALSA: period cannot equal buffer size (%lu == %lu)",
2406                  chunk_size, buffer_size);
2407         goto adev_fail;
2408     }
2409
2410     int bits_per_sample = snd_pcm_format_physical_width(SND_PCM_FORMAT_S16_LE);
2411     int bits_per_frame = bits_per_sample * channels;
2412
2413     p_sys->i_alsa_chunk_size = chunk_size;
2414     p_sys->i_alsa_frame_size = bits_per_frame / 8;
2415     p_sys->i_audio_max_frame_size = chunk_size * bits_per_frame / 8;
2416
2417     snd_pcm_hw_params_free( p_hw_params );
2418     p_hw_params = NULL;
2419
2420     /* Prep device */
2421     if( ( i_err = snd_pcm_prepare( p_sys->p_alsa_pcm ) ) < 0 )
2422     {
2423         msg_Err( p_this,
2424                  "ALSA: cannot prepare audio interface for use (%s)",
2425                  snd_strerror( i_err ) );
2426         goto adev_fail;
2427     }
2428
2429     free( psz_alsa_device_name );
2430
2431     if( !p_sys->psz_adev )
2432         p_sys->psz_adev = strdup( ALSA_DEFAULT );
2433
2434     /* Return a fake handle so other tests work */
2435     return 1;
2436
2437  adev_fail:
2438
2439     if( p_hw_params ) snd_pcm_hw_params_free( p_hw_params );
2440     if( p_sys->p_alsa_pcm ) snd_pcm_close( p_sys->p_alsa_pcm );
2441     free( psz_alsa_device_name );
2442
2443     return -1;
2444
2445 }
2446 #endif
2447
2448 static int OpenAudioDevOss( vlc_object_t *p_this, demux_sys_t *p_sys,
2449                             bool b_demux )
2450 {
2451     int i_fd = 0;
2452     int i_format;
2453     /* OSS */
2454     char* psz_oss_device_name = strdup( p_sys->psz_adev ? p_sys->psz_adev : OSS_DEFAULT );
2455
2456     if( (i_fd = open( psz_oss_device_name, O_RDONLY | O_NONBLOCK )) < 0 )
2457     {
2458         msg_Err( p_this, "cannot open OSS audio device (%m)" );
2459         goto adev_fail;
2460     }
2461
2462     i_format = AFMT_S16_LE;
2463     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
2464         || i_format != AFMT_S16_LE )
2465     {
2466         msg_Err( p_this,
2467                  "cannot set audio format (16b little endian) (%m)" );
2468         goto adev_fail;
2469     }
2470
2471     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
2472                &p_sys->b_stereo ) < 0 )
2473     {
2474         msg_Err( p_this, "cannot set audio channels count (%m)" );
2475         goto adev_fail;
2476     }
2477
2478     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
2479                &p_sys->i_sample_rate ) < 0 )
2480     {
2481         msg_Err( p_this, "cannot set audio sample rate (%m)" );
2482         goto adev_fail;
2483     }
2484
2485     p_sys->i_audio_max_frame_size = 6 * 1024;
2486
2487     if( !p_sys->psz_adev )
2488         p_sys->psz_adev = strdup( OSS_DEFAULT );
2489     free( psz_oss_device_name );
2490     return i_fd;
2491
2492  adev_fail:
2493
2494     free( psz_oss_device_name );
2495     if( i_fd >= 0 ) close( i_fd );
2496     return -1;
2497
2498 }
2499
2500 static int OpenAudioDev( vlc_object_t *p_this, demux_sys_t *p_sys,
2501                          bool b_demux )
2502 {
2503     char *psz_device;
2504     int i_fd = -1;
2505
2506 #ifdef HAVE_ALSA
2507     if( ( p_sys->i_audio_method & AUDIO_METHOD_ALSA ) && i_fd < 0 )
2508         i_fd  = OpenAudioDevAlsa( p_this, p_sys, b_demux );
2509 #endif
2510
2511     if( ( p_sys->i_audio_method & AUDIO_METHOD_OSS ) && i_fd < 0 )
2512         i_fd = OpenAudioDevOss( p_this, p_sys, b_demux );
2513
2514     if( i_fd < 0 )
2515         return i_fd;
2516
2517     psz_device = p_sys->psz_adev;
2518
2519     msg_Dbg( p_this, "opened adev=`%s' %s %dHz",
2520              psz_device, p_sys->b_stereo ? "stereo" : "mono",
2521              p_sys->i_sample_rate );
2522
2523     es_format_t fmt;
2524     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('a','r','a','w') );
2525
2526     fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
2527     fmt.audio.i_rate = p_sys->i_sample_rate;
2528     fmt.audio.i_bitspersample = 16;
2529     fmt.audio.i_blockalign = fmt.audio.i_channels * fmt.audio.i_bitspersample / 8;
2530     fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate * fmt.audio.i_bitspersample;
2531
2532     msg_Dbg( p_this, "new audio es %d channels %dHz",
2533              fmt.audio.i_channels, fmt.audio.i_rate );
2534
2535     if( b_demux )
2536     {
2537         demux_t *p_demux = (demux_t *)p_this;
2538         p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
2539     }
2540
2541     return i_fd;
2542 }
2543
2544 /*****************************************************************************
2545  * ProbeVideoDev: probe video for capabilities
2546  *****************************************************************************/
2547 static bool ProbeVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys,
2548                                  char *psz_device )
2549 {
2550     int i_index;
2551     int i_standard;
2552
2553     int i_fd;
2554
2555     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
2556     {
2557         msg_Err( p_obj, "cannot open video device (%m)" );
2558         goto open_failed;
2559     }
2560
2561     /* Get device capabilites */
2562
2563     if( ioctl( i_fd, VIDIOC_QUERYCAP, &p_sys->dev_cap ) < 0 )
2564     {
2565         msg_Err( p_obj, "cannot get video capabilities (%m)" );
2566         goto open_failed;
2567     }
2568
2569     msg_Dbg( p_obj, "V4L2 device: %s using driver: %s (version: %u.%u.%u) on %s",
2570                             p_sys->dev_cap.card,
2571                             p_sys->dev_cap.driver,
2572                             (p_sys->dev_cap.version >> 16) & 0xFF,
2573                             (p_sys->dev_cap.version >> 8) & 0xFF,
2574                             p_sys->dev_cap.version & 0xFF,
2575                             p_sys->dev_cap.bus_info );
2576
2577     msg_Dbg( p_obj, "the device has the capabilities: (%c) Video Capure, "
2578                                                        "(%c) Audio, "
2579                                                        "(%c) Tuner",
2580              ( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE  ? 'X':' '),
2581              ( p_sys->dev_cap.capabilities & V4L2_CAP_AUDIO  ? 'X':' '),
2582              ( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER  ? 'X':' ') );
2583
2584     msg_Dbg( p_obj, "supported I/O methods are: (%c) Read/Write, "
2585                                                  "(%c) Streaming, "
2586                                                  "(%c) Asynchronous",
2587             ( p_sys->dev_cap.capabilities & V4L2_CAP_READWRITE ? 'X':' ' ),
2588             ( p_sys->dev_cap.capabilities & V4L2_CAP_STREAMING ? 'X':' ' ),
2589             ( p_sys->dev_cap.capabilities & V4L2_CAP_ASYNCIO ? 'X':' ' ) );
2590
2591     /* Now, enumerate all the video inputs. This is useless at the moment
2592        since we have no way to present that info to the user except with
2593        debug messages */
2594
2595     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2596     {
2597         struct v4l2_input t_input;
2598         t_input.index = 0;
2599         while( ioctl( i_fd, VIDIOC_ENUMINPUT, &t_input ) >= 0 )
2600         {
2601             p_sys->i_input++;
2602             t_input.index = p_sys->i_input;
2603         }
2604
2605         p_sys->p_inputs = calloc( 1, p_sys->i_input * sizeof( struct v4l2_input ) );
2606         if( !p_sys->p_inputs ) goto open_failed;
2607
2608         for( i_index = 0; i_index < p_sys->i_input; i_index++ )
2609         {
2610             p_sys->p_inputs[i_index].index = i_index;
2611
2612             if( ioctl( i_fd, VIDIOC_ENUMINPUT, &p_sys->p_inputs[i_index] ) )
2613             {
2614                 msg_Err( p_obj, "cannot get video input characteristics (%m)" );
2615                 goto open_failed;
2616             }
2617             msg_Dbg( p_obj, "video input %i (%s) has type: %s %c",
2618                                 i_index,
2619                                 p_sys->p_inputs[i_index].name,
2620                                 p_sys->p_inputs[i_index].type
2621                                         == V4L2_INPUT_TYPE_TUNER ?
2622                                         "Tuner adapter" :
2623                                         "External analog input",
2624                                 i_index == p_sys->i_selected_input ? '*' : ' ' );
2625         }
2626     }
2627
2628     /* Probe video standards */
2629     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2630     {
2631         struct v4l2_standard t_standards;
2632         t_standards.index = 0;
2633         while( ioctl( i_fd, VIDIOC_ENUMSTD, &t_standards ) >=0 )
2634         {
2635             p_sys->i_standard++;
2636             t_standards.index = p_sys->i_standard;
2637         }
2638
2639         p_sys->p_standards = calloc( 1, p_sys->i_standard * sizeof( struct v4l2_standard ) );
2640         if( !p_sys->p_standards ) goto open_failed;
2641
2642         for( i_standard = 0; i_standard < p_sys->i_standard; i_standard++ )
2643         {
2644             p_sys->p_standards[i_standard].index = i_standard;
2645
2646             if( ioctl( i_fd, VIDIOC_ENUMSTD, &p_sys->p_standards[i_standard] ) )
2647             {
2648                 msg_Err( p_obj, "cannot get video input standards (%m)" );
2649                 goto open_failed;
2650             }
2651             msg_Dbg( p_obj, "video standard %i is: %s %c",
2652                                 i_standard,
2653                                 p_sys->p_standards[i_standard].name,
2654                                 (unsigned)i_standard == p_sys->i_selected_standard_id ? '*' : ' ' );
2655         }
2656     }
2657
2658     /* initialize the structures for the ioctls */
2659     for( i_index = 0; i_index < 32; i_index++ )
2660     {
2661         p_sys->p_audios[i_index].index = i_index;
2662     }
2663
2664     /* Probe audio inputs */
2665     if( p_sys->dev_cap.capabilities & V4L2_CAP_AUDIO )
2666     {
2667         while( p_sys->i_audio < 32 &&
2668                ioctl( i_fd, VIDIOC_S_AUDIO, &p_sys->p_audios[p_sys->i_audio] ) >= 0 )
2669         {
2670             if( ioctl( i_fd, VIDIOC_G_AUDIO, &p_sys->p_audios[ p_sys->i_audio] ) < 0 )
2671             {
2672                 msg_Err( p_obj, "cannot get audio input characteristics (%m)" );
2673                 goto open_failed;
2674             }
2675
2676             msg_Dbg( p_obj, "audio input %i (%s) is %s %s %c",
2677                                 p_sys->i_audio,
2678                                 p_sys->p_audios[p_sys->i_audio].name,
2679                                 p_sys->p_audios[p_sys->i_audio].capability &
2680                                                     V4L2_AUDCAP_STEREO ?
2681                                         "Stereo" : "Mono",
2682                                 p_sys->p_audios[p_sys->i_audio].capability &
2683                                                     V4L2_AUDCAP_AVL ?
2684                                     "(Automatic Volume Level supported)" : "",
2685                                 p_sys->i_audio == p_sys->i_selected_audio_input ? '*' : ' ' );
2686
2687             p_sys->i_audio++;
2688         }
2689     }
2690
2691     /* List tuner caps */
2692     if( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER )
2693     {
2694         struct v4l2_tuner tuner;
2695         memset( &tuner, 0, sizeof(tuner) );
2696         while( ioctl( i_fd, VIDIOC_G_TUNER, &tuner ) >= 0 )
2697         {
2698             p_sys->i_tuner++;
2699             memset( &tuner, 0, sizeof(tuner) );
2700             tuner.index = p_sys->i_tuner;
2701         }
2702
2703         p_sys->p_tuners = calloc( 1, p_sys->i_tuner * sizeof( struct v4l2_tuner ) );
2704         if( !p_sys->p_tuners ) goto open_failed;
2705
2706         for( i_index = 0; i_index < p_sys->i_tuner; i_index++ )
2707         {
2708             p_sys->p_tuners[i_index].index = i_index;
2709
2710             if( ioctl( i_fd, VIDIOC_G_TUNER, &p_sys->p_tuners[i_index] ) )
2711             {
2712                 msg_Err( p_obj, "cannot get tuner characteristics (%m)" );
2713                 goto open_failed;
2714             }
2715             msg_Dbg( p_obj, "tuner %i (%s) has type: %s, "
2716                               "frequency range: %.1f %s -> %.1f %s",
2717                                 i_index,
2718                                 p_sys->p_tuners[i_index].name,
2719                                 p_sys->p_tuners[i_index].type
2720                                         == V4L2_TUNER_RADIO ?
2721                                         "Radio" : "Analog TV",
2722                                 p_sys->p_tuners[i_index].rangelow * 62.5,
2723                                 p_sys->p_tuners[i_index].capability &
2724                                         V4L2_TUNER_CAP_LOW ?
2725                                         "Hz" : "kHz",
2726                                 p_sys->p_tuners[i_index].rangehigh * 62.5,
2727                                 p_sys->p_tuners[i_index].capability &
2728                                         V4L2_TUNER_CAP_LOW ?
2729                                         "Hz" : "kHz" );
2730
2731             struct v4l2_frequency frequency;
2732             memset( &frequency, 0, sizeof( frequency ) );
2733             if( ioctl( i_fd, VIDIOC_G_FREQUENCY, &frequency ) < 0 )
2734             {
2735                 msg_Err( p_obj, "cannot get tuner frequency (%m)" );
2736                 goto open_failed;
2737             }
2738             msg_Dbg( p_obj, "tuner %i (%s) frequency: %.1f %s",
2739                      i_index,
2740                      p_sys->p_tuners[i_index].name,
2741                      frequency.frequency * 62.5,
2742                      p_sys->p_tuners[i_index].capability &
2743                              V4L2_TUNER_CAP_LOW ?
2744                              "Hz" : "kHz" );
2745         }
2746     }
2747
2748     /* Probe for available chromas */
2749     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
2750     {
2751         struct v4l2_fmtdesc codec;
2752
2753         i_index = 0;
2754         memset( &codec, 0, sizeof(codec) );
2755         codec.index = i_index;
2756         codec.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2757
2758         while( ioctl( i_fd, VIDIOC_ENUM_FMT, &codec ) >= 0 )
2759         {
2760             i_index++;
2761             codec.index = i_index;
2762         }
2763
2764         p_sys->i_codec = i_index;
2765
2766         p_sys->p_codecs = calloc( 1, p_sys->i_codec * sizeof( struct v4l2_fmtdesc ) );
2767
2768         for( i_index = 0; i_index < p_sys->i_codec; i_index++ )
2769         {
2770             p_sys->p_codecs[i_index].index = i_index;
2771             p_sys->p_codecs[i_index].type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2772
2773             if( ioctl( i_fd, VIDIOC_ENUM_FMT, &p_sys->p_codecs[i_index] ) < 0 )
2774             {
2775                 msg_Err( p_obj, "cannot get codec description (%m)" );
2776                 goto open_failed;
2777             }
2778
2779             /* only print if vlc supports the format */
2780             char psz_fourcc_v4l2[5];
2781             memset( &psz_fourcc_v4l2, 0, sizeof( psz_fourcc_v4l2 ) );
2782             vlc_fourcc_to_char( p_sys->p_codecs[i_index].pixelformat,
2783                                 &psz_fourcc_v4l2 );
2784             bool b_codec_supported = false;
2785             for( int i = 0; v4l2chroma_to_fourcc[i].i_v4l2 != 0; i++ )
2786             {
2787                 if( v4l2chroma_to_fourcc[i].i_v4l2 == p_sys->p_codecs[i_index].pixelformat )
2788                 {
2789                     b_codec_supported = true;
2790
2791                     char psz_fourcc[5];
2792                     memset( &psz_fourcc, 0, sizeof( psz_fourcc ) );
2793                     vlc_fourcc_to_char( v4l2chroma_to_fourcc[i].i_fourcc,
2794                                         &psz_fourcc );
2795                     msg_Dbg( p_obj, "device supports chroma %4s [%s, %s]",
2796                                 psz_fourcc,
2797                                 p_sys->p_codecs[i_index].description,
2798                                 psz_fourcc_v4l2 );
2799
2800 #ifdef VIDIOC_ENUM_FRAMESIZES
2801                     /* This is new in Linux 2.6.19 */
2802                     /* List valid frame sizes for this format */
2803                     struct v4l2_frmsizeenum frmsize;
2804                     frmsize.index = 0;
2805                     frmsize.pixel_format = p_sys->p_codecs[i_index].pixelformat;
2806                     if( ioctl( i_fd, VIDIOC_ENUM_FRAMESIZES, &frmsize ) < 0 )
2807                     {
2808                         /* Not all devices support this ioctl */
2809                         msg_Warn( p_obj, "Unable to query for frame sizes" );
2810                     }
2811                     else
2812                     {
2813                         switch( frmsize.type )
2814                         {
2815                             case V4L2_FRMSIZE_TYPE_DISCRETE:
2816                                 do
2817                                 {
2818                                     msg_Dbg( p_obj,
2819                 "    device supports size %dx%d",
2820                 frmsize.discrete.width, frmsize.discrete.height );
2821                                     frmsize.index++;
2822                                 } while( ioctl( i_fd, VIDIOC_ENUM_FRAMESIZES, &frmsize ) >= 0 );
2823                                 break;
2824                             case V4L2_FRMSIZE_TYPE_STEPWISE:
2825                                 msg_Dbg( p_obj,
2826                 "    device supports sizes %dx%d to %dx%d using %dx%d increments",
2827                 frmsize.stepwise.min_width, frmsize.stepwise.min_height,
2828                 frmsize.stepwise.max_width, frmsize.stepwise.max_height,
2829                 frmsize.stepwise.step_width, frmsize.stepwise.step_height );
2830                                 break;
2831                             case V4L2_FRMSIZE_TYPE_CONTINUOUS:
2832                                 msg_Dbg( p_obj,
2833                 "    device supports all sizes %dx%d to %dx%d",
2834                 frmsize.stepwise.min_width, frmsize.stepwise.min_height,
2835                 frmsize.stepwise.max_width, frmsize.stepwise.max_height );
2836                                 break;
2837                         }
2838                     }
2839 #endif
2840                 }
2841             }
2842             if( !b_codec_supported )
2843             {
2844                     msg_Dbg( p_obj,
2845                          "device codec %4s (%s) not supported as access_demux",
2846                          psz_fourcc_v4l2,
2847                          p_sys->p_codecs[i_index].description );
2848             }
2849
2850         }
2851     }
2852
2853
2854     if( i_fd >= 0 ) close( i_fd );
2855     return true;
2856
2857 open_failed:
2858
2859     if( i_fd >= 0 ) close( i_fd );
2860     return false;
2861
2862 }
2863
2864 /*****************************************************************************
2865  * ProbeAudioDev: probe audio for capabilities
2866  *****************************************************************************/
2867 #ifdef HAVE_ALSA
2868 static bool ProbeAudioDevAlsa( vlc_object_t *p_this, demux_sys_t *p_sys,
2869                                      char *psz_device )
2870 {
2871     int i_err;
2872     snd_pcm_t *p_alsa_pcm;
2873     char* psz_alsa_device_name = ResolveALSADeviceName( psz_device ?: ALSA_DEFAULT );
2874
2875     if( ( i_err = snd_pcm_open( &p_alsa_pcm, psz_alsa_device_name, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK ) ) < 0 )
2876     {
2877         msg_Err( p_this, "cannot open device %s for ALSA audio (%s)", psz_alsa_device_name, snd_strerror( i_err ) );
2878         free( psz_alsa_device_name );
2879         return false;
2880     }
2881
2882     snd_pcm_close( p_alsa_pcm );
2883     free( psz_alsa_device_name );
2884
2885     return true;
2886 }
2887 #endif
2888
2889 static bool ProbeAudioDevOss( vlc_object_t *p_this, demux_sys_t *p_sys,
2890                                     char *psz_device )
2891 {
2892     int i_fd = 0;
2893     int i_caps;
2894     char* psz_oss_device_name = strdup( psz_device ? psz_device : OSS_DEFAULT );
2895
2896     if( ( i_fd = open( psz_oss_device_name, O_RDONLY | O_NONBLOCK ) ) < 0 )
2897     {
2898         msg_Err( p_this, "cannot open device %s for OSS audio (%m)", psz_oss_device_name );
2899         goto open_failed;
2900     }
2901
2902     /* this will fail if the device is video */
2903     if( ioctl( i_fd, SNDCTL_DSP_GETCAPS, &i_caps ) < 0 )
2904     {
2905         msg_Err( p_this, "cannot get audio caps (%m)" );
2906         goto open_failed;
2907     }
2908
2909     free( psz_oss_device_name );
2910     if( i_fd >= 0 ) close( i_fd );
2911
2912     return true;
2913
2914 open_failed:
2915     free( psz_oss_device_name );
2916     if( i_fd >= 0 ) close( i_fd );
2917     return false;
2918 }
2919
2920 static bool ProbeAudioDev( vlc_object_t *p_this, demux_sys_t *p_sys,
2921                                  char *psz_device )
2922 {
2923 #ifdef HAVE_ALSA
2924     if( ( p_sys->i_audio_method & AUDIO_METHOD_ALSA )
2925      && ProbeAudioDevAlsa( p_this, p_sys, psz_device ) )
2926     {
2927         p_sys->i_audio_method = AUDIO_METHOD_ALSA;
2928         return true;
2929     }
2930 #endif
2931
2932     if( ( p_sys->i_audio_method & AUDIO_METHOD_OSS )
2933      && ProbeAudioDevOss( p_this, p_sys, psz_device ) )
2934     {
2935         p_sys->i_audio_method = AUDIO_METHOD_OSS;
2936         return true;
2937     }
2938
2939     p_sys->i_audio_method = 0;
2940     return false;
2941 }
2942
2943 static void name2var( unsigned char *name )
2944 {
2945     for( ; *name; name++ )
2946         *name = (*name == ' ') ? '_' : tolower( *name );
2947 }
2948
2949 /*****************************************************************************
2950  * Print a user-class v4l2 control's details, create the relevant variable,
2951  * change the value if needed.
2952  *****************************************************************************/
2953 static void ControlListPrint( vlc_object_t *p_obj, int i_fd,
2954                               struct v4l2_queryctrl queryctrl,
2955                               bool b_reset, bool b_demux )
2956 {
2957     struct v4l2_querymenu querymenu;
2958     unsigned int i_mid;
2959
2960     int i;
2961     int i_val;
2962
2963     char *psz_name;
2964     vlc_value_t val, val2;
2965
2966     if( queryctrl.flags & V4L2_CTRL_FLAG_GRABBED )
2967         msg_Dbg( p_obj, "    control is busy" );
2968     if( queryctrl.flags & V4L2_CTRL_FLAG_READ_ONLY )
2969         msg_Dbg( p_obj, "    control is read-only" );
2970
2971     for( i = 0; controls[i].psz_name != NULL; i++ )
2972         if( controls[i].i_cid == queryctrl.id ) break;
2973
2974     if( controls[i].psz_name )
2975     {
2976         psz_name = strdup( controls[i].psz_name );
2977         char psz_cfg_name[40];
2978         sprintf( psz_cfg_name, CFG_PREFIX "%s", psz_name );
2979         i_val = var_CreateGetInteger( p_obj, psz_cfg_name );
2980         var_Destroy( p_obj, psz_cfg_name );
2981     }
2982     else
2983     {
2984         psz_name = strdup( (const char *)queryctrl.name );
2985         name2var( (unsigned char *)psz_name );
2986         i_val = -1;
2987     }
2988
2989     switch( queryctrl.type )
2990     {
2991         case V4L2_CTRL_TYPE_INTEGER:
2992             msg_Dbg( p_obj, "    integer control" );
2993             msg_Dbg( p_obj,
2994                      "    valid values: %d to %d by steps of %d",
2995                      queryctrl.minimum, queryctrl.maximum,
2996                      queryctrl.step );
2997
2998             var_Create( p_obj, psz_name,
2999                         VLC_VAR_INTEGER | VLC_VAR_HASMIN | VLC_VAR_HASMAX
3000                       | VLC_VAR_HASSTEP | VLC_VAR_ISCOMMAND );
3001             val.i_int = queryctrl.minimum;
3002             var_Change( p_obj, psz_name, VLC_VAR_SETMIN, &val, NULL );
3003             val.i_int = queryctrl.maximum;
3004             var_Change( p_obj, psz_name, VLC_VAR_SETMAX, &val, NULL );
3005             val.i_int = queryctrl.step;
3006             var_Change( p_obj, psz_name, VLC_VAR_SETSTEP, &val, NULL );
3007             break;
3008         case V4L2_CTRL_TYPE_BOOLEAN:
3009             msg_Dbg( p_obj, "    boolean control" );
3010             var_Create( p_obj, psz_name,
3011                         VLC_VAR_BOOL | VLC_VAR_ISCOMMAND );
3012             break;
3013         case V4L2_CTRL_TYPE_MENU:
3014             msg_Dbg( p_obj, "    menu control" );
3015             var_Create( p_obj, psz_name,
3016                         VLC_VAR_INTEGER | VLC_VAR_HASCHOICE
3017                       | VLC_VAR_ISCOMMAND );
3018             memset( &querymenu, 0, sizeof( querymenu ) );
3019             for( i_mid = queryctrl.minimum;
3020                  i_mid <= (unsigned)queryctrl.maximum;
3021                  i_mid++ )
3022             {
3023                 querymenu.index = i_mid;
3024                 querymenu.id = queryctrl.id;
3025                 if( ioctl( i_fd, VIDIOC_QUERYMENU, &querymenu ) >= 0 )
3026                 {
3027                     msg_Dbg( p_obj, "        %d: %s",
3028                              querymenu.index, querymenu.name );
3029                     val.i_int = querymenu.index;
3030                     val2.psz_string = (char *)querymenu.name;
3031                     var_Change( p_obj, psz_name,
3032                                 VLC_VAR_ADDCHOICE, &val, &val2 );
3033                 }
3034             }
3035             break;
3036         case V4L2_CTRL_TYPE_BUTTON:
3037             msg_Dbg( p_obj, "    button control" );
3038             var_Create( p_obj, psz_name,
3039                         VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3040             break;
3041         case V4L2_CTRL_TYPE_CTRL_CLASS:
3042             msg_Dbg( p_obj, "    control class" );
3043             var_Create( p_obj, psz_name, VLC_VAR_VOID );
3044             break;
3045         default:
3046             msg_Dbg( p_obj, "    unknown control type (FIXME)" );
3047             /* FIXME */
3048             break;
3049     }
3050
3051     switch( queryctrl.type )
3052     {
3053         case V4L2_CTRL_TYPE_INTEGER:
3054         case V4L2_CTRL_TYPE_BOOLEAN:
3055         case V4L2_CTRL_TYPE_MENU:
3056             {
3057                 struct v4l2_control control;
3058                 msg_Dbg( p_obj, "    default value: %d",
3059                          queryctrl.default_value );
3060                 memset( &control, 0, sizeof( control ) );
3061                 control.id = queryctrl.id;
3062                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0 )
3063                 {
3064                     msg_Dbg( p_obj, "    current value: %d", control.value );
3065                 }
3066                 if( i_val == -1 )
3067                 {
3068                     i_val = control.value;
3069                     if( b_reset && queryctrl.default_value != control.value )
3070                     {
3071                         msg_Dbg( p_obj, "    reset value to default" );
3072                         Control( p_obj, i_fd, psz_name,
3073                                       queryctrl.id, queryctrl.default_value );
3074                     }
3075                 }
3076                 else
3077                 {
3078                     Control( p_obj, i_fd, psz_name,
3079                                   queryctrl.id, i_val );
3080                 }
3081             }
3082             break;
3083         default:
3084             break;
3085     }
3086
3087     val.psz_string = (char *)queryctrl.name;
3088     var_Change( p_obj, psz_name, VLC_VAR_SETTEXT, &val, NULL );
3089     val.i_int = queryctrl.id;
3090     val2.psz_string = (char *)psz_name;
3091     var_Change( p_obj, "allcontrols", VLC_VAR_ADDCHOICE, &val, &val2 );
3092     /* bad things happen changing MPEG mid-stream
3093      * so don't add to Ext Settings GUI */
3094     if( V4L2_CTRL_ID2CLASS( queryctrl.id ) != V4L2_CTRL_CLASS_MPEG )
3095         var_Change( p_obj, "controls", VLC_VAR_ADDCHOICE, &val, &val2 );
3096
3097     switch( var_Type( p_obj, psz_name ) & VLC_VAR_TYPE )
3098     {
3099         case VLC_VAR_BOOL:
3100             var_SetBool( p_obj, psz_name, i_val );
3101             break;
3102         case VLC_VAR_INTEGER:
3103             var_SetInteger( p_obj, psz_name, i_val );
3104             break;
3105         case VLC_VAR_VOID:
3106             break;
3107         default:
3108             msg_Warn( p_obj, "FIXME: %s %s %d", __FILE__, __func__,
3109                       __LINE__ );
3110             break;
3111     }
3112
3113     if( b_demux )
3114         var_AddCallback( p_obj, psz_name,
3115                         DemuxControlCallback, (void*)queryctrl.id );
3116     else
3117         var_AddCallback( p_obj, psz_name,
3118                         AccessControlCallback, (void*)queryctrl.id );
3119
3120     free( psz_name );
3121 }
3122
3123 /*****************************************************************************
3124  * List all user-class v4l2 controls, set them to the user specified
3125  * value and create the relevant variables to enable runtime changes
3126  *****************************************************************************/
3127 static int ControlList( vlc_object_t *p_obj, int i_fd,
3128                         bool b_reset, bool b_demux )
3129 {
3130     struct v4l2_queryctrl queryctrl;
3131     int i_cid;
3132
3133     memset( &queryctrl, 0, sizeof( queryctrl ) );
3134
3135     /* A list of available controls (aka the variable name) will be
3136      * stored as choices in the "allcontrols" variable. We'll thus be able
3137      * to use those to create an appropriate interface
3138      * A list of available controls that can be changed mid-stream will
3139      * be stored in the "controls" variable */
3140     var_Create( p_obj, "controls", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
3141     var_Create( p_obj, "allcontrols", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
3142
3143     var_Create( p_obj, "controls-update", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3144
3145     /* Add a control to reset all controls to their default values */
3146     vlc_value_t val, val2;
3147     var_Create( p_obj, "controls-reset", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
3148     val.psz_string = _( "Reset controls to default" );
3149     var_Change( p_obj, "controls-reset", VLC_VAR_SETTEXT, &val, NULL );
3150     val.i_int = -1;
3151     val2.psz_string = (char *)"controls-reset";
3152     var_Change( p_obj, "controls", VLC_VAR_ADDCHOICE, &val, &val2 );
3153     if (b_demux)
3154         var_AddCallback( p_obj, "controls-reset", DemuxControlResetCallback, NULL );
3155     else
3156         var_AddCallback( p_obj, "controls-reset", AccessControlResetCallback, NULL );
3157
3158     queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3159     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3160     {
3161         msg_Dbg( p_obj, "Extended control API supported by v4l2 driver" );
3162
3163         /* List extended controls */
3164         queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3165         while( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3166         {
3167             if( queryctrl.type == V4L2_CTRL_TYPE_CTRL_CLASS )
3168             {
3169                 msg_Dbg( p_obj, "%s", queryctrl.name );
3170                 queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3171                 continue;
3172             }
3173             switch( V4L2_CTRL_ID2CLASS( queryctrl.id ) )
3174             {
3175                 case V4L2_CTRL_CLASS_USER:
3176                     msg_Dbg( p_obj, "Available control: %s (%x)",
3177                              queryctrl.name, queryctrl.id );
3178                     break;
3179                 case V4L2_CTRL_CLASS_MPEG:
3180                     name2var( queryctrl.name );
3181                     msg_Dbg( p_obj, "Available MPEG control: %s (%x)",
3182                              queryctrl.name, queryctrl.id );
3183                     break;
3184                 default:
3185                     msg_Dbg( p_obj, "Available private control: %s (%x)",
3186                              queryctrl.name, queryctrl.id );
3187                     break;
3188             }
3189             ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3190             queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3191         }
3192     }
3193     else
3194     {
3195         msg_Dbg( p_obj, "Extended control API not supported by v4l2 driver" );
3196
3197         /* List public controls */
3198         for( i_cid = V4L2_CID_BASE;
3199              i_cid < V4L2_CID_LASTP1;
3200              i_cid ++ )
3201         {
3202             queryctrl.id = i_cid;
3203             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3204             {
3205                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3206                     continue;
3207                 msg_Dbg( p_obj, "Available control: %s (%x)",
3208                          queryctrl.name, queryctrl.id );
3209                 ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3210             }
3211         }
3212
3213         /* List private controls */
3214         for( i_cid = V4L2_CID_PRIVATE_BASE;
3215              ;
3216              i_cid ++ )
3217         {
3218             queryctrl.id = i_cid;
3219             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3220             {
3221                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3222                     continue;
3223                 msg_Dbg( p_obj, "Available private control: %s (%x)",
3224                          queryctrl.name, queryctrl.id );
3225                 ControlListPrint( p_obj, i_fd, queryctrl, b_reset, b_demux );
3226             }
3227             else
3228                 break;
3229         }
3230     }
3231
3232     return VLC_SUCCESS;
3233 }
3234
3235 static void SetAvailControlsByString( vlc_object_t *p_obj, demux_sys_t *p_sys,
3236                                       int i_fd )
3237 {
3238     char *psz_parser = p_sys->psz_set_ctrls;
3239     vlc_value_t val, text, name;
3240
3241     if( psz_parser == NULL )
3242         return;
3243
3244     if( *psz_parser == '{' )
3245         psz_parser++;
3246
3247     int i_ret = var_Change( p_obj, "allcontrols", VLC_VAR_GETCHOICES,
3248                             &val, &text );
3249     if( i_ret < 0 )
3250     {
3251         msg_Err( p_obj, "Oops, can't find 'allcontrols' variable." );
3252         return;
3253     }
3254
3255     while( *psz_parser && *psz_parser != '}' )
3256     {
3257         char *psz_delim, *psz_assign;
3258
3259         while( *psz_parser == ',' || *psz_parser == ' ' )
3260             psz_parser++;
3261
3262         psz_delim = strchr( psz_parser, ',' );
3263         if( psz_delim == NULL )
3264             psz_delim = strchr( psz_parser, '}' );
3265         if( psz_delim == NULL )
3266             psz_delim = psz_parser + strlen( psz_parser );
3267
3268         psz_assign = memchr( psz_parser, '=', psz_delim - psz_parser );
3269         if( psz_assign == NULL )
3270         {
3271             char *psz_name = strndup( psz_parser, psz_delim - psz_parser );
3272             msg_Err( p_obj, "%s missing '='", psz_name );
3273             free( psz_name );
3274             psz_parser = psz_delim + 1;
3275             continue;
3276         }
3277
3278         for( int i = 0;
3279              i < val.p_list->i_count ;//&& psz_parser < psz_assign;
3280              i++ )
3281         {
3282             const char *psz_var = text.p_list->p_values[i].psz_string;
3283             int i_cid = val.p_list->p_values[i].i_int;
3284             var_Change( p_obj, psz_var, VLC_VAR_GETTEXT, &name, NULL );
3285             const char *psz_name = name.psz_string;
3286
3287             int i_availstrlen = strlen( psz_name );
3288             int i_parsestrlen = psz_assign - psz_parser;
3289             int i_maxstrlen = __MAX( i_availstrlen, i_parsestrlen);
3290
3291             if( !strncasecmp( psz_name, psz_parser, i_maxstrlen ) )
3292             {
3293                 Control( p_obj, i_fd, psz_name, i_cid,
3294                          strtol( ++psz_assign, &psz_parser, 0) );
3295             }
3296         }
3297
3298         if( psz_parser < psz_assign )
3299         {
3300             char *psz_name = strndup( psz_parser, psz_assign - psz_parser );
3301             msg_Err( p_obj, "Control %s not available", psz_name );
3302             free( psz_name );
3303             psz_parser = ( *psz_delim ) ? ( psz_delim + 1 ) : psz_delim;
3304         }
3305     }
3306 }
3307
3308 /*****************************************************************************
3309  * Reset all user-class v4l2 controls to their default value
3310  *****************************************************************************/
3311 static int ControlReset( vlc_object_t *p_obj, int i_fd )
3312 {
3313     struct v4l2_queryctrl queryctrl;
3314     int i_cid;
3315     memset( &queryctrl, 0, sizeof( queryctrl ) );
3316
3317     queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3318     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3319     {
3320         /* Extended control API supported */
3321         queryctrl.id = V4L2_CTRL_FLAG_NEXT_CTRL;
3322         while( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3323         {
3324             if( queryctrl.type == V4L2_CTRL_TYPE_CTRL_CLASS
3325              || V4L2_CTRL_ID2CLASS( queryctrl.id ) == V4L2_CTRL_CLASS_MPEG )
3326             {
3327                 queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3328                 continue;
3329             }
3330             struct v4l2_control control;
3331             memset( &control, 0, sizeof( control ) );
3332             control.id = queryctrl.id;
3333             if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3334              && queryctrl.default_value != control.value )
3335             {
3336                 int i;
3337                 for( i = 0; controls[i].psz_name != NULL; i++ )
3338                     if( controls[i].i_cid == queryctrl.id ) break;
3339                 name2var( queryctrl.name );
3340                 Control( p_obj, i_fd,
3341                          controls[i].psz_name ? : (const char *)queryctrl.name,
3342                          queryctrl.id, queryctrl.default_value );
3343             }
3344             queryctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
3345         }
3346     }
3347     else
3348     {
3349
3350         /* public controls */
3351         for( i_cid = V4L2_CID_BASE;
3352              i_cid < V4L2_CID_LASTP1;
3353              i_cid ++ )
3354         {
3355             queryctrl.id = i_cid;
3356             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3357             {
3358                 struct v4l2_control control;
3359                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3360                     continue;
3361                 memset( &control, 0, sizeof( control ) );
3362                 control.id = queryctrl.id;
3363                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3364                  && queryctrl.default_value != control.value )
3365                 {
3366                     int i;
3367                     for( i = 0; controls[i].psz_name != NULL; i++ )
3368                         if( controls[i].i_cid == queryctrl.id ) break;
3369                     name2var( queryctrl.name );
3370                     Control( p_obj, i_fd,
3371                              controls[i].psz_name ? : (const char *)queryctrl.name,
3372                              queryctrl.id, queryctrl.default_value );
3373                 }
3374             }
3375         }
3376
3377         /* private controls */
3378         for( i_cid = V4L2_CID_PRIVATE_BASE;
3379              ;
3380              i_cid ++ )
3381         {
3382             queryctrl.id = i_cid;
3383             if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) >= 0 )
3384             {
3385                 struct v4l2_control control;
3386                 if( queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3387                     continue;
3388                 memset( &control, 0, sizeof( control ) );
3389                 control.id = queryctrl.id;
3390                 if( ioctl( i_fd, VIDIOC_G_CTRL, &control ) >= 0
3391                  && queryctrl.default_value != control.value )
3392                 {
3393                     name2var( queryctrl.name );
3394                     Control( p_obj, i_fd, (const char *)queryctrl.name,
3395                              queryctrl.id, queryctrl.default_value );
3396                 }
3397             }
3398             else
3399                 break;
3400         }
3401     }
3402     return VLC_SUCCESS;
3403 }
3404
3405 /*****************************************************************************
3406  * Issue user-class v4l2 controls
3407  *****************************************************************************/
3408 static int Control( vlc_object_t *p_obj, int i_fd,
3409                     const char *psz_name, int i_cid, int i_value )
3410 {
3411     struct v4l2_queryctrl queryctrl;
3412     struct v4l2_control control;
3413     struct v4l2_ext_control ext_control;
3414     struct v4l2_ext_controls ext_controls;
3415
3416     if( i_value == -1 )
3417         return VLC_SUCCESS;
3418
3419     memset( &queryctrl, 0, sizeof( queryctrl ) );
3420
3421     queryctrl.id = i_cid;
3422
3423     if( ioctl( i_fd, VIDIOC_QUERYCTRL, &queryctrl ) < 0
3424         || queryctrl.flags & V4L2_CTRL_FLAG_DISABLED )
3425     {
3426         msg_Dbg( p_obj, "%s (%x) control is not supported.", psz_name, i_cid );
3427         return VLC_EGENERIC;
3428     }
3429
3430     memset( &control, 0, sizeof( control ) );
3431     memset( &ext_control, 0, sizeof( ext_control ) );
3432     memset( &ext_controls, 0, sizeof( ext_controls ) );
3433     control.id = i_cid;
3434     ext_control.id = i_cid;
3435     ext_controls.ctrl_class = V4L2_CTRL_ID2CLASS( i_cid );
3436     ext_controls.count = 1;
3437     ext_controls.controls = &ext_control;
3438
3439     int i_ret = -1;
3440
3441     if( i_value >= 0 )
3442     {
3443         ext_control.value = i_value;
3444         if( ioctl( i_fd, VIDIOC_S_EXT_CTRLS, &ext_controls ) < 0 )
3445         {
3446             control.value = i_value;
3447             if( ioctl( i_fd, VIDIOC_S_CTRL, &control ) < 0 )
3448             {
3449                 msg_Err( p_obj, "unable to set %s (%x) to %d (%m)",
3450                          psz_name, i_cid, i_value );
3451                 return VLC_EGENERIC;
3452             }
3453             i_ret = ioctl( i_fd, VIDIOC_G_CTRL, &control );
3454         }
3455         else
3456         {
3457             i_ret = ioctl( i_fd, VIDIOC_G_EXT_CTRLS, &ext_controls );
3458             control.value = ext_control.value;
3459         }
3460     }
3461
3462     if( i_ret >= 0 )
3463     {
3464         vlc_value_t val;
3465         msg_Dbg( p_obj, "video %s: %d", psz_name, control.value );
3466         switch( var_Type( p_obj, psz_name ) & VLC_VAR_TYPE )
3467         {
3468             case VLC_VAR_BOOL:
3469                 val.b_bool = control.value;
3470                 var_Change( p_obj, psz_name, VLC_VAR_SETVALUE, &val, NULL );
3471                 var_SetVoid( p_obj, "controls-update" );
3472                 break;
3473             case VLC_VAR_INTEGER:
3474                 val.i_int = control.value;
3475                 var_Change( p_obj, psz_name, VLC_VAR_SETVALUE, &val, NULL );
3476                 var_SetVoid( p_obj, "controls-update" );
3477                 break;
3478         }
3479     }
3480     return VLC_SUCCESS;
3481 }
3482
3483 /*****************************************************************************
3484  * On the fly change settings callback
3485  *****************************************************************************/
3486 static int DemuxControlCallback( vlc_object_t *p_this,
3487     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3488     void *p_data )
3489 {
3490     demux_t *p_demux = (demux_t*)p_this;
3491     demux_sys_t *p_sys = p_demux->p_sys;
3492     int i_cid = (int)p_data;
3493
3494     int i_fd = p_sys->i_fd_video;
3495
3496     if( i_fd < 0 )
3497         return VLC_EGENERIC;
3498
3499     Control( p_this, i_fd, psz_var, i_cid, newval.i_int );
3500
3501     return VLC_EGENERIC;
3502 }
3503
3504 static int DemuxControlResetCallback( vlc_object_t *p_this,
3505     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3506     void *p_data )
3507 {
3508     demux_t *p_demux = (demux_t*)p_this;
3509     demux_sys_t *p_sys = p_demux->p_sys;
3510
3511     int i_fd = p_sys->i_fd_video;
3512
3513     if( i_fd < 0 )
3514         return VLC_EGENERIC;
3515
3516     ControlReset( p_this, i_fd );
3517
3518     return VLC_EGENERIC;
3519 }
3520
3521 static int AccessControlCallback( vlc_object_t *p_this,
3522     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3523     void *p_data )
3524 {
3525     access_t *p_access = (access_t *)p_this;
3526     demux_sys_t *p_sys = (demux_sys_t *) p_access->p_sys;
3527     int i_cid = (int)p_data;
3528
3529     int i_fd = p_sys->i_fd_video;
3530
3531     if( i_fd < 0 )
3532         return VLC_EGENERIC;
3533
3534     Control( p_this, i_fd, psz_var, i_cid, newval.i_int );
3535
3536     return VLC_EGENERIC;
3537 }
3538
3539 static int AccessControlResetCallback( vlc_object_t *p_this,
3540     const char *psz_var, vlc_value_t oldval, vlc_value_t newval,
3541     void *p_data )
3542 {
3543     access_t *p_access = (access_t *)p_this;
3544     demux_sys_t *p_sys = (demux_sys_t *) p_access->p_sys;
3545
3546     int i_fd = p_sys->i_fd_video;
3547
3548     if( i_fd < 0 )
3549         return VLC_EGENERIC;
3550
3551     ControlReset( p_this, i_fd );
3552
3553     return VLC_EGENERIC;
3554 }