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