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