]> git.sesse.net Git - vlc/blob - modules/access/v4l.c
7efc65f5a65e4d5dc704449236f7c4d88957fffb
[vlc] / modules / access / v4l.c
1 /*****************************************************************************
2  * v4l.c : Video4Linux input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id$
6  *
7  * Author: Laurent Aimar <fenrir@via.ecp.fr>
8  *         Paul Forgey <paulf at aphrodite dot com>
9  *         Gildas Bazin <gbazin@videolan.org>
10  *         Benjamin Pracht <bigben at videolan dot org>
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  * Preamble
29  *****************************************************************************/
30
31 #include <vlc/vlc.h>
32 #include <vlc_input.h>
33 #include <vlc_demux.h>
34 #include <vlc_access.h>
35 #include <vlc_vout.h>
36 #include <vlc_codecs.h>
37
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <sys/ioctl.h>
41 #include <unistd.h>
42 #include <sys/mman.h>
43 #include <errno.h>
44 #include <fcntl.h>
45
46 /* From GStreamer's v4l plugin:
47  * Because of some really cool feature in video4linux1, also known as
48  * 'not including sys/types.h and sys/time.h', we had to include it
49  * ourselves. In all their intelligence, these people decided to fix
50  * this in the next version (video4linux2) in such a cool way that it
51  * breaks all compilations of old stuff...
52  * The real problem is actually that linux/time.h doesn't use proper
53  * macro checks before defining types like struct timeval. The proper
54  * fix here is to either fuck the kernel header (which is what we do
55  * by defining _LINUX_TIME_H, an innocent little hack) or by fixing it
56  * upstream, which I'll consider doing later on. If you get compiler
57  * errors here, check your linux/time.h && sys/time.h header setup.
58 */
59 #define _LINUX_TIME_H
60
61 #include <linux/videodev.h>
62 #include "videodev_mjpeg.h"
63
64 #include <sys/soundcard.h>
65
66 /*****************************************************************************
67  * Module descriptior
68  *****************************************************************************/
69 static int  Open ( vlc_object_t * );
70 static void Close( vlc_object_t * );
71
72 #define CACHING_TEXT N_("Caching value in ms")
73 #define CACHING_LONGTEXT N_( \
74     "Caching value for V4L captures. This " \
75     "value should be set in milliseconds." )
76 #define VDEV_TEXT N_("Video device name")
77 #define VDEV_LONGTEXT N_( \
78     "Name of the video device to use. " \
79     "If you don't specify anything, no video device will be used.")
80 #define ADEV_TEXT N_("Audio device name")
81 #define ADEV_LONGTEXT N_( \
82     "Name of the audio device to use. " \
83     "If you don't specify anything, no audio device will be used.")
84 #define CHROMA_TEXT N_("Video input chroma format")
85 #define CHROMA_LONGTEXT N_( \
86     "Force the Video4Linux video device to use a specific chroma format " \
87     "(eg. I420 (default), RV24, etc.)")
88 #define FREQUENCY_TEXT N_( "Frequency" )
89 #define FREQUENCY_LONGTEXT N_( \
90     "Frequency to capture (in kHz), if applicable." )
91 #define CHANNEL_TEXT N_( "Channel" )
92 #define CHANNEL_LONGTEXT N_( \
93     "Channel of the card to use (Usually, 0 = tuner, " \
94     "1 = composite, 2 = svideo)." )
95 #define NORM_TEXT N_( "Norm" )
96 #define NORM_LONGTEXT N_( \
97     "Norm of the stream (Automatic, SECAM, PAL, or NTSC)." )
98 #define AUDIO_TEXT N_( "Audio Channel" )
99 #define AUDIO_LONGTEXT N_( \
100     "Audio Channel to use, if there are several audio inputs." )
101 #define WIDTH_TEXT N_( "Width" )
102 #define WIDTH_LONGTEXT N_( "Width of the stream to capture " \
103     "(-1 for autodetect)." )
104 #define HEIGHT_TEXT N_( "Height" )
105 #define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \
106     "(-1 for autodetect)." )
107 #define BRIGHTNESS_TEXT N_( "Brightness" )
108 #define BRIGHTNESS_LONGTEXT N_( \
109     "Brightness of the video input." )
110 #define HUE_TEXT N_( "Hue" )
111 #define HUE_LONGTEXT N_( \
112     "Hue of the video input." )
113 #define COLOUR_TEXT N_( "Color" )
114 #define COLOUR_LONGTEXT N_( \
115     "Color of the video input." )
116 #define CONTRAST_TEXT N_( "Contrast" )
117 #define CONTRAST_LONGTEXT N_( \
118     "Contrast of the video input." )
119 #define TUNER_TEXT N_( "Tuner" )
120 #define TUNER_LONGTEXT N_( "Tuner to use, if there are several ones." )
121 #define SAMPLERATE_TEXT N_( "Samplerate" )
122 #define SAMPLERATE_LONGTEXT N_( \
123     "Samplerate of the captured audio stream, in Hz (eg: 11025, 22050, 44100)" )
124 #define STEREO_TEXT N_( "Stereo" )
125 #define STEREO_LONGTEXT N_( \
126     "Capture the audio stream in stereo." )
127 #define MJPEG_TEXT N_( "MJPEG" )
128 #define MJPEG_LONGTEXT N_(  \
129     "Set this option if the capture device outputs MJPEG" )
130 #define DECIMATION_TEXT N_( "Decimation" )
131 #define DECIMATION_LONGTEXT N_( \
132     "Decimation level for MJPEG streams" )
133 #define QUALITY_TEXT N_( "Quality" )
134 #define QUALITY_LONGTEXT N_( "Quality of the stream." )
135 #define FPS_TEXT N_( "Framerate" )
136 #define FPS_LONGTEXT N_( "Framerate to capture, if applicable " \
137     "(-1 for autodetect)." )
138
139 static int i_norm_list[] =
140     { VIDEO_MODE_AUTO, VIDEO_MODE_SECAM, VIDEO_MODE_PAL, VIDEO_MODE_NTSC };
141 static const char *psz_norm_list_text[] =
142     { N_("Automatic"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
143
144 vlc_module_begin();
145     set_shortname( _("Video4Linux") );
146     set_description( _("Video4Linux input") );
147     set_category( CAT_INPUT );
148     set_subcategory( SUBCAT_INPUT_ACCESS );
149
150     add_integer( "v4l-caching", DEFAULT_PTS_DELAY / 1000, NULL,
151                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
152     add_string( "v4l-vdev", "/dev/video", 0, VDEV_TEXT, VDEV_LONGTEXT,
153                 VLC_FALSE );
154     add_string( "v4l-adev", "/dev/dsp", 0, ADEV_TEXT, ADEV_LONGTEXT,
155                 VLC_FALSE );
156     add_string( "v4l-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
157                 VLC_TRUE );
158     add_float( "v4l-fps", -1.0, NULL, FPS_TEXT, FPS_LONGTEXT, VLC_TRUE );
159     add_integer( "v4l-samplerate", 44100, NULL, SAMPLERATE_TEXT,
160                 SAMPLERATE_LONGTEXT, VLC_TRUE );
161     add_integer( "v4l-channel", 0, NULL, CHANNEL_TEXT, CHANNEL_LONGTEXT,
162                 VLC_TRUE );
163     add_integer( "v4l-tuner", -1, NULL, TUNER_TEXT, TUNER_LONGTEXT, VLC_TRUE );
164     add_integer( "v4l-norm", VIDEO_MODE_AUTO, NULL, NORM_TEXT, NORM_LONGTEXT,
165                 VLC_FALSE );
166         change_integer_list( i_norm_list, psz_norm_list_text, 0 );
167     add_integer( "v4l-frequency", -1, NULL, FREQUENCY_TEXT, FREQUENCY_LONGTEXT,
168                 VLC_FALSE );
169     add_integer( "v4l-audio", -1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_TRUE );
170     add_bool( "v4l-stereo", VLC_TRUE, NULL, STEREO_TEXT, STEREO_LONGTEXT,
171             VLC_TRUE );
172     add_integer( "v4l-width", 0, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
173     add_integer( "v4l-height", 0, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT,
174                 VLC_TRUE );
175     add_integer( "v4l-brightness", -1, NULL, BRIGHTNESS_TEXT,
176                 BRIGHTNESS_LONGTEXT, VLC_TRUE );
177     add_integer( "v4l-colour", -1, NULL, COLOUR_TEXT, COLOUR_LONGTEXT,
178                 VLC_TRUE );
179     add_integer( "v4l-hue", -1, NULL, HUE_TEXT, HUE_LONGTEXT, VLC_TRUE );
180     add_integer( "v4l-contrast", -1, NULL, CONTRAST_TEXT, CONTRAST_LONGTEXT,
181                 VLC_TRUE );
182     add_bool( "v4l-mjpeg", VLC_FALSE, NULL, MJPEG_TEXT, MJPEG_LONGTEXT,
183             VLC_TRUE );
184     add_integer( "v4l-decimation", 1, NULL, DECIMATION_TEXT,
185             DECIMATION_LONGTEXT, VLC_TRUE );
186     add_integer( "v4l-quality", 100, NULL, QUALITY_TEXT, QUALITY_LONGTEXT,
187             VLC_TRUE );
188
189     add_shortcut( "v4l" );
190     set_capability( "access_demux", 10 );
191     set_callbacks( Open, Close );
192 vlc_module_end();
193
194 /*****************************************************************************
195  * Access: local prototypes
196  *****************************************************************************/
197 static int Demux  ( demux_t * );
198 static int Control( demux_t *, int, va_list );
199
200 static void ParseMRL    ( demux_t * );
201 static int  OpenVideoDev( demux_t *, char * );
202 static int  OpenAudioDev( demux_t *, char * );
203
204 static block_t *GrabAudio( demux_t * );
205 static block_t *GrabVideo( demux_t * );
206
207 #define MJPEG_BUFFER_SIZE (256*1024)
208
209 struct quicktime_mjpeg_app1
210 {
211     uint32_t    i_reserved;             /* set to 0 */
212     uint32_t    i_tag;                  /* 'mjpg' */
213     uint32_t    i_field_size;           /* offset following EOI */
214     uint32_t    i_padded_field_size;    /* offset following EOI+pad */
215     uint32_t    i_next_field;           /* offset to next field */
216     uint32_t    i_DQT_offset;
217     uint32_t    i_DHT_offset;
218     uint32_t    i_SOF_offset;
219     uint32_t    i_SOS_offset;
220     uint32_t    i_data_offset;          /* following SOS marker data */
221 };
222
223 static struct
224 {
225     int i_v4l;
226     int i_fourcc;
227
228 } v4lchroma_to_fourcc[] =
229 {
230     { VIDEO_PALETTE_GREY, VLC_FOURCC( 'G', 'R', 'E', 'Y' ) },
231     { VIDEO_PALETTE_HI240, VLC_FOURCC( 'I', '2', '4', '0' ) },
232     { VIDEO_PALETTE_RGB565, VLC_FOURCC( 'R', 'V', '1', '6' ) },
233     { VIDEO_PALETTE_RGB555, VLC_FOURCC( 'R', 'V', '1', '5' ) },
234     { VIDEO_PALETTE_RGB24, VLC_FOURCC( 'R', 'V', '2', '4' ) },
235     { VIDEO_PALETTE_RGB32, VLC_FOURCC( 'R', 'V', '3', '2' ) },
236     { VIDEO_PALETTE_YUV422, VLC_FOURCC( 'Y', 'U', 'Y', '2' ) },
237     { VIDEO_PALETTE_YUV422, VLC_FOURCC( 'Y', 'U', 'Y', 'V' ) },
238     { VIDEO_PALETTE_YUYV, VLC_FOURCC( 'Y', 'U', 'Y', '2' ) },
239     { VIDEO_PALETTE_YUYV, VLC_FOURCC( 'Y', 'U', 'Y', 'V' ) },
240     { VIDEO_PALETTE_UYVY, VLC_FOURCC( 'U', 'Y', 'V', 'Y' ) },
241     { VIDEO_PALETTE_YUV420, VLC_FOURCC( 'I', '4', '2', 'N' ) },
242     { VIDEO_PALETTE_YUV411, VLC_FOURCC( 'I', '4', '1', 'N' ) },
243     { VIDEO_PALETTE_RAW, VLC_FOURCC( 'G', 'R', 'A', 'W' ) },
244     { VIDEO_PALETTE_YUV422P, VLC_FOURCC( 'I', '4', '2', '2' ) },
245     { VIDEO_PALETTE_YUV420P, VLC_FOURCC( 'I', '4', '2', '0' ) },
246     { VIDEO_PALETTE_YUV411P, VLC_FOURCC( 'I', '4', '1', '1' ) },
247     { 0, 0 }
248 };
249
250 struct demux_sys_t
251 {
252     /* Devices */
253     char *psz_device;         /* Main device from MRL, can be video or audio */
254
255     char *psz_vdev;
256     int  fd_video;
257
258     char *psz_adev;
259     int  fd_audio;
260
261     /* Video properties */
262     picture_t pic;
263
264     int i_fourcc;
265     int i_channel;
266     int i_audio;
267     int i_norm;
268     int i_tuner;
269     int i_frequency;
270     int i_width;
271     int i_height;
272
273     int i_brightness;
274     int i_hue;
275     int i_colour;
276     int i_contrast;
277
278     float f_fps;            /* <= 0.0 mean to grab at full rate */
279     mtime_t i_video_pts;    /* only used when f_fps > 0 */
280
281     vlc_bool_t b_mjpeg;
282     int i_decimation;
283     int i_quality;
284
285     struct video_capability vid_cap;
286     struct video_mbuf       vid_mbuf;
287     struct mjpeg_requestbuffers mjpeg_buffers;
288
289     uint8_t *p_video_mmap;
290     int     i_frame_pos;
291
292     struct video_mmap   vid_mmap;
293     struct video_picture vid_picture;
294
295     int          i_video_frame_size;
296     es_out_id_t  *p_es_video;
297
298     /* Audio properties */
299     vlc_fourcc_t i_acodec_raw;
300     int          i_sample_rate;
301     vlc_bool_t   b_stereo;
302     int          i_audio_max_frame_size;
303     block_t      *p_block_audio;
304     es_out_id_t  *p_es_audio;
305 };
306
307 /*****************************************************************************
308  * Open: opens v4l device
309  *****************************************************************************
310  *
311  * url: <video device>::::
312  *
313  *****************************************************************************/
314 static int Open( vlc_object_t *p_this )
315 {
316     demux_t     *p_demux = (demux_t*)p_this;
317     demux_sys_t *p_sys;
318     vlc_value_t val;
319
320     /* Only when selected */
321     if( *p_demux->psz_access == '\0' )
322         return VLC_EGENERIC;
323
324     /* Set up p_demux */
325     p_demux->pf_demux = Demux;
326     p_demux->pf_control = Control;
327     p_demux->info.i_update = 0;
328     p_demux->info.i_title = 0;
329     p_demux->info.i_seekpoint = 0;
330     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
331     memset( p_sys, 0, sizeof( demux_sys_t ) );
332
333     var_Create( p_demux, "v4l-audio", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
334     var_Get( p_demux, "v4l-audio", &val );
335     p_sys->i_audio          = val.i_int;
336
337     var_Create( p_demux, "v4l-channel", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
338     var_Get( p_demux, "v4l-channel", &val );
339     p_sys->i_channel        = val.i_int;
340
341     var_Create( p_demux, "v4l-norm", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
342     var_Get( p_demux, "v4l-norm", &val );
343     p_sys->i_norm           = val.i_int;
344
345     var_Create( p_demux, "v4l-tuner", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
346     var_Get( p_demux, "v4l-tuner", &val );
347     p_sys->i_tuner          = val.i_int;
348
349     var_Create( p_demux, "v4l-frequency",
350                                     VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
351     var_Get( p_demux, "v4l-frequency", &val );
352     p_sys->i_frequency      = val.i_int;
353
354     var_Create( p_demux, "v4l-fps", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
355     var_Get( p_demux, "v4l-fps", &val );
356     p_sys->f_fps            = val.f_float;
357
358     var_Create( p_demux, "v4l-width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
359     var_Get( p_demux, "v4l-width", &val );
360     p_sys->i_width          = val.i_int;
361
362     var_Create( p_demux, "v4l-height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
363     var_Get( p_demux, "v4l-height", &val );
364     p_sys->i_height         = val.i_int;
365
366     p_sys->i_video_pts      = -1;
367
368     var_Create( p_demux, "v4l-brightness", VLC_VAR_INTEGER |
369                                                         VLC_VAR_DOINHERIT );
370     var_Get( p_demux, "v4l-brightness", &val );
371     p_sys->i_brightness     = val.i_int;
372
373     var_Create( p_demux, "v4l-hue", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
374     var_Get( p_demux, "v4l-hue", &val );
375     p_sys->i_hue            = -1;
376
377     var_Create( p_demux, "v4l-colour", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
378     var_Get( p_demux, "v4l-colour", &val );
379     p_sys->i_colour         = val.i_int;
380
381     var_Create( p_demux, "v4l-contrast", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
382     var_Get( p_demux, "v4l-contrast", &val );
383     p_sys->i_contrast       = val.i_int;
384
385     var_Create( p_demux, "v4l-mjpeg", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
386     var_Get( p_demux, "v4l-mjpeg", &val );
387     p_sys->b_mjpeg     = val.b_bool;
388
389     var_Create( p_demux, "v4l-decimation", VLC_VAR_INTEGER |
390                                                             VLC_VAR_DOINHERIT );
391     var_Get( p_demux, "v4l-decimation", &val );
392     p_sys->i_decimation = val.i_int;
393
394     var_Create( p_demux, "v4l-quality", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
395     var_Get( p_demux, "v4l-quality", &val );
396     p_sys->i_quality = val.i_int;
397
398     var_Create( p_demux, "v4l-samplerate",
399                                     VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
400     var_Get( p_demux, "v4l-samplerate", &val );
401     p_sys->i_sample_rate  = val.i_int;
402
403     var_Create( p_demux, "v4l-stereo", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
404     var_Get( p_demux, "v4l-stereo", &val );
405     p_sys->b_stereo       = val.b_bool;
406
407     p_sys->psz_device = p_sys->psz_vdev = p_sys->psz_adev = NULL;
408     p_sys->fd_video = -1;
409     p_sys->fd_audio = -1;
410
411     p_sys->p_es_video = p_sys->p_es_audio = 0;
412     p_sys->p_block_audio = 0;
413
414     ParseMRL( p_demux );
415
416     /* Find main device (video or audio) */
417     if( p_sys->psz_device && *p_sys->psz_device )
418     {
419         msg_Dbg( p_demux, "main device=`%s'", p_sys->psz_device );
420
421         /* Try to open as video device */
422         p_sys->fd_video = OpenVideoDev( p_demux, p_sys->psz_device );
423
424         if( p_sys->fd_video < 0 )
425         {
426             /* Try to open as audio device */
427             p_sys->fd_audio = OpenAudioDev( p_demux, p_sys->psz_device );
428             if( p_sys->fd_audio >= 0 )
429             {
430                 if( p_sys->psz_adev ) free( p_sys->psz_adev );
431                 p_sys->psz_adev = p_sys->psz_device;
432                 p_sys->psz_device = NULL;
433             }
434         }
435         else
436         {
437             if( p_sys->psz_vdev ) free( p_sys->psz_vdev );
438             p_sys->psz_vdev = p_sys->psz_device;
439             p_sys->psz_device = NULL;
440         }
441     }
442
443     /* If no device opened, only continue if the access was forced */
444     if( p_sys->fd_video < 0 && p_sys->fd_audio < 0 )
445     {
446         if( strcmp( p_demux->psz_access, "v4l" ) )
447         {
448             Close( p_this );
449             return VLC_EGENERIC;
450         }
451     }
452
453     /* Find video device */
454     if( p_sys->fd_video < 0 )
455     {
456         if( !p_sys->psz_vdev || !*p_sys->psz_vdev )
457         {
458             if( p_sys->psz_vdev ) free( p_sys->psz_vdev );
459             p_sys->psz_vdev = var_CreateGetString( p_demux, "v4l-vdev" );;
460         }
461
462         if( p_sys->psz_vdev && *p_sys->psz_vdev )
463         {
464             p_sys->fd_video = OpenVideoDev( p_demux, p_sys->psz_vdev );
465         }
466     }
467
468     /* Find audio device */
469     if( p_sys->fd_audio < 0 )
470     {
471         if( !p_sys->psz_adev || !*p_sys->psz_adev )
472         {
473             if( p_sys->psz_adev ) free( p_sys->psz_adev );
474             p_sys->psz_adev = var_CreateGetString( p_demux, "v4l-adev" );;
475         }
476
477         if( p_sys->psz_adev && *p_sys->psz_adev )
478         {
479             p_sys->fd_audio = OpenAudioDev( p_demux, p_sys->psz_adev );
480         }
481     }
482
483     if( p_sys->fd_video < 0 && p_sys->fd_audio < 0 )
484     {
485         Close( p_this );
486         return VLC_EGENERIC;
487     }
488
489     msg_Dbg( p_demux, "v4l grabbing started" );
490
491     /* Declare elementary streams */
492     if( p_sys->fd_video >= 0 )
493     {
494         es_format_t fmt;
495         es_format_Init( &fmt, VIDEO_ES, p_sys->i_fourcc );
496         fmt.video.i_width  = p_sys->i_width;
497         fmt.video.i_height = p_sys->i_height;
498         fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
499
500         /* Setup rgb mask for RGB formats */
501         if( p_sys->i_fourcc == VLC_FOURCC('R','V','2','4') )
502         {
503             /* This is in BGR format */
504             fmt.video.i_bmask = 0x00ff0000;
505             fmt.video.i_gmask = 0x0000ff00;
506             fmt.video.i_rmask = 0x000000ff;
507         }
508
509         msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
510                  (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
511         p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
512     }
513
514     if( p_sys->fd_audio >= 0 )
515     {
516         es_format_t fmt;
517         es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('a','r','a','w') );
518
519         fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
520         fmt.audio.i_rate = p_sys->i_sample_rate;
521         fmt.audio.i_bitspersample = 16; // FIXME ?
522         fmt.audio.i_blockalign = fmt.audio.i_channels *
523             fmt.audio.i_bitspersample / 8;
524         fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate *
525             fmt.audio.i_bitspersample;
526
527         msg_Dbg( p_demux, "new audio es %d channels %dHz",
528                  fmt.audio.i_channels, fmt.audio.i_rate );
529
530         p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
531     }
532
533     /* Update default_pts to a suitable value for access */
534     var_Create( p_demux, "v4l-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
535
536     return VLC_SUCCESS;
537 }
538
539 /*****************************************************************************
540  * Close: close device, free resources
541  *****************************************************************************/
542 static void Close( vlc_object_t *p_this )
543 {
544     demux_t     *p_demux = (demux_t *)p_this;
545     demux_sys_t *p_sys   = p_demux->p_sys;
546
547     if( p_sys->psz_device ) free( p_sys->psz_device );
548     if( p_sys->psz_vdev )   free( p_sys->psz_vdev );
549     if( p_sys->psz_adev )   free( p_sys->psz_adev );
550     if( p_sys->fd_video >= 0 ) close( p_sys->fd_video );
551     if( p_sys->fd_audio >= 0 ) close( p_sys->fd_audio );
552     if( p_sys->p_block_audio ) block_Release( p_sys->p_block_audio );
553
554     if( p_sys->b_mjpeg )
555     {
556         int i_noframe = -1;
557         ioctl( p_sys->fd_video, MJPIOC_QBUF_CAPT, &i_noframe );
558     }
559
560     if( p_sys->p_video_mmap && p_sys->p_video_mmap != MAP_FAILED )
561     {
562         if( p_sys->b_mjpeg )
563             munmap( p_sys->p_video_mmap, p_sys->mjpeg_buffers.size *
564                     p_sys->mjpeg_buffers.count );
565         else
566             munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size );
567     }
568
569     free( p_sys );
570 }
571
572 /*****************************************************************************
573  * Control:
574  *****************************************************************************/
575 static int Control( demux_t *p_demux, int i_query, va_list args )
576 {
577     vlc_bool_t *pb;
578     int64_t    *pi64;
579
580     switch( i_query )
581     {
582         /* Special for access_demux */
583         case DEMUX_CAN_PAUSE:
584         case DEMUX_CAN_SEEK:
585         case DEMUX_SET_PAUSE_STATE:
586         case DEMUX_CAN_CONTROL_PACE:
587             pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
588             *pb = VLC_FALSE;
589             return VLC_SUCCESS;
590
591         case DEMUX_GET_PTS_DELAY:
592             pi64 = (int64_t*)va_arg( args, int64_t * );
593             *pi64 = (int64_t)var_GetInteger( p_demux, "v4l-caching" ) * 1000;
594             return VLC_SUCCESS;
595
596         case DEMUX_GET_TIME:
597             pi64 = (int64_t*)va_arg( args, int64_t * );
598             *pi64 = mdate();
599             return VLC_SUCCESS;
600
601         /* TODO implement others */
602         default:
603             return VLC_EGENERIC;
604     }
605
606     return VLC_EGENERIC;
607 }
608
609 /*****************************************************************************
610  * Demux:
611  *****************************************************************************/
612 static int Demux( demux_t *p_demux )
613 {
614     demux_sys_t *p_sys = p_demux->p_sys;
615     es_out_id_t  *p_es = p_sys->p_es_audio;
616     block_t *p_block = NULL;
617
618     /* Try grabbing audio frames first */
619     if( p_sys->fd_audio < 0 || !( p_block = GrabAudio( p_demux ) ) )
620     {
621         /* Try grabbing video frame */
622         p_es = p_sys->p_es_video;
623         if( p_sys->fd_video > 0 ) p_block = GrabVideo( p_demux );
624     }
625
626     if( !p_block )
627     {
628         /* Sleep so we do not consume all the cpu, 10ms seems
629          * like a good value (100fps) */
630         msleep( 10000 );
631         return 1;
632     }
633
634     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
635     es_out_Send( p_demux->out, p_es, p_block );
636
637     return 1;
638 }
639
640 /*****************************************************************************
641  * ParseMRL: parse the options contained in the MRL
642  *****************************************************************************/
643 static void ParseMRL( demux_t *p_demux )
644 {
645     demux_sys_t *p_sys = p_demux->p_sys;
646
647     char *psz_dup = strdup( p_demux->psz_path );
648     char *psz_parser = psz_dup;
649
650     while( *psz_parser && *psz_parser != ':' )
651     {
652         psz_parser++;
653     }
654
655     if( *psz_parser == ':' )
656     {
657         /* read options */
658         for( ;; )
659         {
660             *psz_parser++ = '\0';
661             if( !strncmp( psz_parser, "channel=", strlen( "channel=" ) ) )
662             {
663                 p_sys->i_channel = strtol( psz_parser + strlen( "channel=" ),
664                                            &psz_parser, 0 );
665             }
666             else if( !strncmp( psz_parser, "norm=", strlen( "norm=" ) ) )
667             {
668                 psz_parser += strlen( "norm=" );
669                 if( !strncmp( psz_parser, "pal", strlen( "pal" ) ) )
670                 {
671                     p_sys->i_norm = VIDEO_MODE_PAL;
672                     psz_parser += strlen( "pal" );
673                 }
674                 else if( !strncmp( psz_parser, "ntsc", strlen( "ntsc" ) ) )
675                 {
676                     p_sys->i_norm = VIDEO_MODE_NTSC;
677                     psz_parser += strlen( "ntsc" );
678                 }
679                 else if( !strncmp( psz_parser, "secam", strlen( "secam" ) ) )
680                 {
681                     p_sys->i_norm = VIDEO_MODE_SECAM;
682                     psz_parser += strlen( "secam" );
683                 }
684                 else if( !strncmp( psz_parser, "auto", strlen( "auto" ) ) )
685                 {
686                     p_sys->i_norm = VIDEO_MODE_AUTO;
687                     psz_parser += strlen( "auto" );
688                 }
689                 else
690                 {
691                     p_sys->i_norm = strtol( psz_parser, &psz_parser, 0 );
692                 }
693             }
694             else if( !strncmp( psz_parser, "frequency=",
695                                strlen( "frequency=" ) ) )
696             {
697                 p_sys->i_frequency =
698                     strtol( psz_parser + strlen( "frequency=" ),
699                             &psz_parser, 0 );
700                 if( p_sys->i_frequency < 30000 )
701                 {
702                     msg_Warn( p_demux, "v4l syntax has changed : "
703                               "'frequency' is now channel frequency in kHz");
704                 }
705             }
706             else if( !strncmp( psz_parser, "audio=", strlen( "audio=" ) ) )
707             {
708                 p_sys->i_audio = strtol( psz_parser + strlen( "audio=" ),
709                                          &psz_parser, 0 );
710             }
711             else if( !strncmp( psz_parser, "size=", strlen( "size=" ) ) )
712             {
713                 psz_parser += strlen( "size=" );
714                 if( !strncmp( psz_parser, "subqcif", strlen( "subqcif" ) ) )
715                 {
716                     p_sys->i_width  = 128;
717                     p_sys->i_height = 96;
718                 }
719                 else if( !strncmp( psz_parser, "qsif", strlen( "qsif" ) ) )
720                 {
721                     p_sys->i_width  = 160;
722                     p_sys->i_height = 120;
723                 }
724                 else if( !strncmp( psz_parser, "qcif", strlen( "qcif" ) ) )
725                 {
726                     p_sys->i_width  = 176;
727                     p_sys->i_height = 144;
728                 }
729                 else if( !strncmp( psz_parser, "sif", strlen( "sif" ) ) )
730                 {
731                     p_sys->i_width  = 320;
732                     p_sys->i_height = 244;
733                 }
734                 else if( !strncmp( psz_parser, "cif", strlen( "cif" ) ) )
735                 {
736                     p_sys->i_width  = 352;
737                     p_sys->i_height = 288;
738                 }
739                 else if( !strncmp( psz_parser, "vga", strlen( "vga" ) ) )
740                 {
741                     p_sys->i_width  = 640;
742                     p_sys->i_height = 480;
743                 }
744                 else
745                 {
746                     /* widthxheight */
747                     p_sys->i_width = strtol( psz_parser, &psz_parser, 0 );
748                     if( *psz_parser == 'x' || *psz_parser == 'X')
749                     {
750                         p_sys->i_height = strtol( psz_parser + 1,
751                                                   &psz_parser, 0 );
752                     }
753                     msg_Dbg( p_demux, "WxH %dx%d", p_sys->i_width,
754                              p_sys->i_height );
755                 }
756             }
757             else if( !strncmp( psz_parser, "brightness=", strlen( "brightness=" ) ) )
758             {
759                 p_sys->i_brightness = strtol( psz_parser + strlen( "brightness=" ),
760                                               &psz_parser, 0 );
761             }
762             else if( !strncmp( psz_parser, "colour=", strlen( "colour=" ) ) )
763             {
764                 p_sys->i_colour = strtol( psz_parser + strlen( "colour=" ),
765                                           &psz_parser, 0 );
766             }
767             else if( !strncmp( psz_parser, "hue=", strlen( "hue=" ) ) )
768             {
769                 p_sys->i_hue = strtol( psz_parser + strlen( "hue=" ),
770                                        &psz_parser, 0 );
771             }
772             else if( !strncmp( psz_parser, "contrast=", strlen( "contrast=" ) ) )
773             {
774                 p_sys->i_contrast = strtol( psz_parser + strlen( "contrast=" ),
775                                             &psz_parser, 0 );
776             }
777             else if( !strncmp( psz_parser, "tuner=", strlen( "tuner=" ) ) )
778             {
779                 p_sys->i_tuner = strtol( psz_parser + strlen( "tuner=" ),
780                                          &psz_parser, 0 );
781             }
782             else if( !strncmp( psz_parser, "adev=", strlen( "adev=" ) ) )
783             {
784                 int  i_len;
785
786                 psz_parser += strlen( "adev=" );
787                 if( strchr( psz_parser, ':' ) )
788                 {
789                     i_len = strchr( psz_parser, ':' ) - psz_parser;
790                 }
791                 else
792                 {
793                     i_len = strlen( psz_parser );
794                 }
795
796                 p_sys->psz_adev = strndup( psz_parser, i_len );
797
798                 psz_parser += i_len;
799             }
800             else if( !strncmp( psz_parser, "samplerate=",
801                                strlen( "samplerate=" ) ) )
802             {
803                 p_sys->i_sample_rate =
804                     strtol( psz_parser + strlen( "samplerate=" ),
805                             &psz_parser, 0 );
806             }
807             else if( !strncmp( psz_parser, "stereo", strlen( "stereo" ) ) )
808             {
809                 psz_parser += strlen( "stereo" );
810
811                 p_sys->b_stereo = VLC_TRUE;
812             }
813             else if( !strncmp( psz_parser, "mono", strlen( "mono" ) ) )
814             {
815                 psz_parser += strlen( "mono" );
816
817                 p_sys->b_stereo = VLC_FALSE;
818             }
819             else if( !strncmp( psz_parser, "mjpeg", strlen( "mjpeg" ) ) )
820             {
821                 psz_parser += strlen( "mjpeg" );
822
823                 p_sys->b_mjpeg = VLC_TRUE;
824             }
825             else if( !strncmp( psz_parser, "decimation=",
826                         strlen( "decimation=" ) ) )
827             {
828                 p_sys->i_decimation =
829                     strtol( psz_parser + strlen( "decimation=" ),
830                             &psz_parser, 0 );
831             }
832             else if( !strncmp( psz_parser, "quality=",
833                         strlen( "quality=" ) ) )
834             {
835                 p_sys->i_quality =
836                     strtol( psz_parser + strlen( "quality=" ),
837                             &psz_parser, 0 );
838             }
839             else if( !strncmp( psz_parser, "fps=", strlen( "fps=" ) ) )
840             {
841                 p_sys->f_fps = strtof( psz_parser + strlen( "fps=" ),
842                                        &psz_parser );
843             }
844             else
845             {
846                 msg_Warn( p_demux, "unknown option" );
847             }
848
849             while( *psz_parser && *psz_parser != ':' )
850             {
851                 psz_parser++;
852             }
853
854             if( *psz_parser == '\0' )
855             {
856                 break;
857             }
858         }
859     }
860
861     if( *psz_dup )
862     {
863         p_sys->psz_device = strdup( psz_dup );
864     }
865     if( psz_dup ) free( psz_dup );
866 }
867
868 /*****************************************************************************
869  * OpenVideoDev:
870  *****************************************************************************/
871 static int OpenVideoDev( demux_t *p_demux, char *psz_device )
872 {
873     demux_sys_t *p_sys = p_demux->p_sys;
874     int i_fd;
875
876     struct video_channel vid_channel;
877     struct mjpeg_params mjpeg;
878     int i;
879
880     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
881     {
882         msg_Err( p_demux, "cannot open device (%m)" );
883         goto vdev_failed;
884     }
885
886     if( ioctl( i_fd, VIDIOCGCAP, &p_sys->vid_cap ) < 0 )
887     {
888         msg_Err( p_demux, "cannot get capabilities (%m)" );
889         goto vdev_failed;
890     }
891
892     msg_Dbg( p_demux,
893              "V4L device %s %d channels %d audios %d < w < %d %d < h < %d",
894              p_sys->vid_cap.name,
895              p_sys->vid_cap.channels,
896              p_sys->vid_cap.audios,
897              p_sys->vid_cap.minwidth,  p_sys->vid_cap.maxwidth,
898              p_sys->vid_cap.minheight, p_sys->vid_cap.maxheight );
899
900     if( p_sys->i_channel < 0 || p_sys->i_channel >= p_sys->vid_cap.channels )
901     {
902         msg_Dbg( p_demux, "invalid channel, falling back on channel 0" );
903         p_sys->i_channel = 0;
904     }
905     if( p_sys->vid_cap.audios && p_sys->i_audio >= p_sys->vid_cap.audios )
906     {
907         msg_Dbg( p_demux, "invalid audio, falling back with no audio" );
908         p_sys->i_audio = -1;
909     }
910
911     if( p_sys->i_width < p_sys->vid_cap.minwidth ||
912         p_sys->i_width > p_sys->vid_cap.maxwidth )
913     {
914         msg_Dbg( p_demux, "invalid width %i", p_sys->i_width );
915         p_sys->i_width = 0;
916     }
917     if( p_sys->i_height < p_sys->vid_cap.minheight ||
918         p_sys->i_height > p_sys->vid_cap.maxheight )
919     {
920         msg_Dbg( p_demux, "invalid height %i", p_sys->i_height );
921         p_sys->i_height = 0;
922     }
923
924     if( !( p_sys->vid_cap.type & VID_TYPE_CAPTURE ) )
925     {
926         msg_Err( p_demux, "cannot grab" );
927         goto vdev_failed;
928     }
929
930     vid_channel.channel = p_sys->i_channel;
931     if( ioctl( i_fd, VIDIOCGCHAN, &vid_channel ) < 0 )
932     {
933         msg_Err( p_demux, "cannot get channel infos (%m)" );
934         goto vdev_failed;
935     }
936     msg_Dbg( p_demux,
937              "setting channel %s(%d) %d tuners flags=0x%x type=0x%x norm=0x%x",
938              vid_channel.name, vid_channel.channel, vid_channel.tuners,
939              vid_channel.flags, vid_channel.type, vid_channel.norm );
940
941     if( p_sys->i_tuner >= vid_channel.tuners )
942     {
943         msg_Dbg( p_demux, "invalid tuner, falling back on tuner 0" );
944         p_sys->i_tuner = 0;
945     }
946
947     vid_channel.norm = p_sys->i_norm;
948     if( ioctl( i_fd, VIDIOCSCHAN, &vid_channel ) < 0 )
949     {
950         msg_Err( p_demux, "cannot set channel (%m)" );
951         goto vdev_failed;
952     }
953
954     if( vid_channel.flags & VIDEO_VC_TUNER )
955     {
956
957         /* set tuner */
958 #if 0
959         struct video_tuner vid_tuner;
960         if( p_sys->i_tuner >= 0 )
961         {
962             vid_tuner.tuner = p_sys->i_tuner;
963             if( ioctl( i_fd, VIDIOCGTUNER, &vid_tuner ) < 0 )
964             {
965                 msg_Err( p_demux, "cannot get tuner (%m)" );
966                 goto vdev_failed;
967             }
968             msg_Dbg( p_demux, "tuner %s low=%d high=%d, flags=0x%x "
969                      "mode=0x%x signal=0x%x",
970                      vid_tuner.name, vid_tuner.rangelow, vid_tuner.rangehigh,
971                      vid_tuner.flags, vid_tuner.mode, vid_tuner.signal );
972
973             msg_Dbg( p_demux, "setting tuner %s (%d)",
974                      vid_tuner.name, vid_tuner.tuner );
975
976             /* FIXME FIXME to be checked FIXME FIXME */
977             //vid_tuner.mode = p_sys->i_norm;
978             if( ioctl( i_fd, VIDIOCSTUNER, &vid_tuner ) < 0 )
979             {
980                 msg_Err( p_demux, "cannot set tuner (%m)" );
981                 goto vdev_failed;
982             }
983         }
984 #endif
985
986         /* Show a warning if frequency is < than 30000.
987          * User is certainly usint old syntax. */
988
989
990         /* set frequency */
991         if( p_sys->i_frequency >= 0 )
992         {
993             int driver_frequency = p_sys->i_frequency * 16 /1000;
994             if( ioctl( i_fd, VIDIOCSFREQ, &driver_frequency ) < 0 )
995             {
996                 msg_Err( p_demux, "cannot set frequency (%m)" );
997                 goto vdev_failed;
998             }
999             msg_Dbg( p_demux, "frequency %d (%d)", p_sys->i_frequency,
1000                                                    driver_frequency );
1001         }
1002     }
1003
1004     /* set audio */
1005     if( vid_channel.flags & VIDEO_VC_AUDIO )
1006     {
1007         struct video_audio      vid_audio;
1008
1009         /* XXX TODO volume, balance, ... */
1010         if( p_sys->i_audio >= 0 )
1011         {
1012             vid_audio.audio = p_sys->i_audio;
1013             if( ioctl( i_fd, VIDIOCGAUDIO, &vid_audio ) < 0 )
1014             {
1015                 msg_Err( p_demux, "cannot get audio (%m)" );
1016                 goto vdev_failed;
1017             }
1018
1019             /* unmute audio */
1020             vid_audio.flags &= ~VIDEO_AUDIO_MUTE;
1021
1022             if( ioctl( i_fd, VIDIOCSAUDIO, &vid_audio ) < 0 )
1023             {
1024                 msg_Err( p_demux, "cannot set audio (%m)" );
1025                 goto vdev_failed;
1026             }
1027         }
1028
1029     }
1030
1031     /* establish basic params with input and norm before feeling width
1032      * or height */
1033     if( p_sys->b_mjpeg )
1034     {
1035         struct quicktime_mjpeg_app1 *p_app1;
1036         int32_t i_offset;
1037
1038         if( ioctl( i_fd, MJPIOC_G_PARAMS, &mjpeg ) < 0 )
1039         {
1040             msg_Err( p_demux, "cannot get mjpeg params (%m)" );
1041             goto vdev_failed;
1042         }
1043         mjpeg.input = p_sys->i_channel;
1044         mjpeg.norm  = p_sys->i_norm;
1045         mjpeg.decimation = p_sys->i_decimation;
1046
1047         if( p_sys->i_width )
1048             mjpeg.img_width = p_sys->i_width / p_sys->i_decimation;
1049         if( p_sys->i_height )
1050             mjpeg.img_height = p_sys->i_height / p_sys->i_decimation;
1051
1052         /* establish Quicktime APP1 marker while we are here */
1053         mjpeg.APPn = 1;
1054         mjpeg.APP_len = 40;
1055
1056         /* aligned */
1057         p_app1 = (struct quicktime_mjpeg_app1 *)mjpeg.APP_data;
1058         p_app1->i_reserved = 0;
1059         p_app1->i_tag = VLC_FOURCC( 'm','j','p','g' );
1060         p_app1->i_field_size = 0;
1061         p_app1->i_padded_field_size = 0;
1062         p_app1->i_next_field = 0;
1063         /* XXX WARNING XXX */
1064         /* these's nothing magic about these values.  We are dangerously
1065          * assuming the encoder card is encoding mjpeg-a and is not throwing
1066          * in marker tags we aren't expecting.  It's bad enough we have to
1067          * search through the jpeg output for every frame we grab just to
1068          * find the first field's end marker, so we take this risk to boost
1069          * performance.
1070          * This is really something the driver could do for us because this
1071          * does conform to standards outside of Apple Quicktime.
1072          */
1073         i_offset = 0x2e;
1074         p_app1->i_DQT_offset = hton32( i_offset );
1075         i_offset = 0xb4;
1076         p_app1->i_DHT_offset = hton32( i_offset );
1077         i_offset = 0x258;
1078         p_app1->i_SOF_offset = hton32( i_offset );
1079         i_offset = 0x26b;
1080         p_app1->i_SOS_offset = hton32( i_offset );
1081         i_offset = 0x279;
1082         p_app1->i_data_offset = hton32( i_offset );
1083
1084         /* SOF and SOS aren't specified by the mjpeg API because they aren't
1085          * optional.  They will be present in the output. */
1086         mjpeg.jpeg_markers = JPEG_MARKER_DHT | JPEG_MARKER_DQT;
1087
1088         if( ioctl( i_fd, MJPIOC_S_PARAMS, &mjpeg ) < 0 )
1089         {
1090             msg_Err( p_demux, "cannot set mjpeg params (%m)" );
1091             goto vdev_failed;
1092         }
1093
1094         p_sys->i_width = mjpeg.img_width * mjpeg.HorDcm;
1095         p_sys->i_height = mjpeg.img_height * mjpeg.VerDcm *
1096             mjpeg.field_per_buff;
1097     }
1098
1099     /* fix width/height */
1100     if( !p_sys->b_mjpeg && ( p_sys->i_width == 0 || p_sys->i_height == 0 ) )
1101     {
1102         struct video_window vid_win;
1103
1104         if( ioctl( i_fd, VIDIOCGWIN, &vid_win ) < 0 )
1105         {
1106             msg_Err( p_demux, "cannot get win (%m)" );
1107             goto vdev_failed;
1108         }
1109         p_sys->i_width  = vid_win.width;
1110         p_sys->i_height = vid_win.height;
1111
1112         if( !p_sys->i_width || !p_sys->i_height )
1113         {
1114             p_sys->i_width = p_sys->vid_cap.maxwidth;
1115             p_sys->i_height = p_sys->vid_cap.maxheight;
1116         }
1117
1118         if( !p_sys->i_width || !p_sys->i_height )
1119         {
1120             msg_Err( p_demux, "invalid video size (%ix%i)",
1121                      p_sys->i_width, p_sys->i_height );
1122             goto vdev_failed;
1123         }
1124
1125         msg_Dbg( p_demux, "will use %dx%d", p_sys->i_width, p_sys->i_height );
1126     }
1127
1128     if( !p_sys->b_mjpeg )
1129     {
1130         /* set hue/color/.. */
1131         if( ioctl( i_fd, VIDIOCGPICT, &p_sys->vid_picture ) == 0 )
1132         {
1133             struct video_picture vid_picture = p_sys->vid_picture;
1134
1135             if( p_sys->i_brightness >= 0 && p_sys->i_brightness < 65536 )
1136             {
1137                 vid_picture.brightness = p_sys->i_brightness;
1138             }
1139             if( p_sys->i_colour >= 0 && p_sys->i_colour < 65536 )
1140             {
1141                 vid_picture.colour = p_sys->i_colour;
1142             }
1143             if( p_sys->i_hue >= 0 && p_sys->i_hue < 65536 )
1144             {
1145                 vid_picture.hue = p_sys->i_hue;
1146             }
1147             if( p_sys->i_contrast  >= 0 && p_sys->i_contrast < 65536 )
1148             {
1149                 vid_picture.contrast = p_sys->i_contrast;
1150             }
1151             if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
1152             {
1153                 msg_Dbg( p_demux, "v4l device uses brightness: %d",
1154                          vid_picture.brightness );
1155                 msg_Dbg( p_demux, "v4l device uses colour: %d",
1156                          vid_picture.colour );
1157                 msg_Dbg( p_demux, "v4l device uses hue: %d", vid_picture.hue );
1158                 msg_Dbg( p_demux, "v4l device uses contrast: %d",
1159                          vid_picture.contrast );
1160                 p_sys->vid_picture = vid_picture;
1161             }
1162         }
1163
1164         /* Find out video format used by device */
1165         if( ioctl( i_fd, VIDIOCGPICT, &p_sys->vid_picture ) == 0 )
1166         {
1167             struct video_picture vid_picture = p_sys->vid_picture;
1168             char *psz;
1169             int i;
1170
1171             p_sys->i_fourcc = 0;
1172
1173             psz = var_CreateGetString( p_demux, "v4l-chroma" );
1174             if( strlen( psz ) >= 4 )
1175             {
1176                 vid_picture.palette = 0;
1177                 int i_chroma = VLC_FOURCC( psz[0], psz[1], psz[2], psz[3] );
1178
1179                 /* Find out v4l chroma code */
1180                 for( i = 0; v4lchroma_to_fourcc[i].i_v4l != 0; i++ )
1181                 {
1182                     if( v4lchroma_to_fourcc[i].i_fourcc == i_chroma )
1183                     {
1184                         vid_picture.palette = v4lchroma_to_fourcc[i].i_v4l;
1185                         break;
1186                     }
1187                 }
1188             }
1189             free( psz );
1190
1191             if( vid_picture.palette &&
1192                 !ioctl( i_fd, VIDIOCSPICT, &vid_picture ) )
1193             {
1194                 p_sys->vid_picture = vid_picture;
1195             }
1196             else
1197             {
1198                 /* Try to set the format to something easy to encode */
1199                 vid_picture.palette = VIDEO_PALETTE_YUV420P;
1200                 if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
1201                 {
1202                     p_sys->vid_picture = vid_picture;
1203                 }
1204                 else
1205                 {
1206                     vid_picture.palette = VIDEO_PALETTE_YUV422P;
1207                     if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
1208                     {
1209                         p_sys->vid_picture = vid_picture;
1210                     }
1211                 }
1212             }
1213
1214             /* Find out final format */
1215             for( i = 0; v4lchroma_to_fourcc[i].i_v4l != 0; i++ )
1216             {
1217                 if( v4lchroma_to_fourcc[i].i_v4l == p_sys->vid_picture.palette)
1218                 {
1219                     p_sys->i_fourcc = v4lchroma_to_fourcc[i].i_fourcc;
1220                     break;
1221                 }
1222             }
1223         }
1224         else
1225         {
1226             msg_Err( p_demux, "ioctl VIDIOCGPICT failed" );
1227             goto vdev_failed;
1228         }
1229     }
1230
1231     if( p_sys->b_mjpeg )
1232     {
1233         int i;
1234
1235         p_sys->mjpeg_buffers.count = 8;
1236         p_sys->mjpeg_buffers.size = MJPEG_BUFFER_SIZE;
1237
1238         if( ioctl( i_fd, MJPIOC_REQBUFS, &p_sys->mjpeg_buffers ) < 0 )
1239         {
1240             msg_Err( p_demux, "mmap unsupported" );
1241             goto vdev_failed;
1242         }
1243
1244         p_sys->p_video_mmap = mmap( 0,
1245                 p_sys->mjpeg_buffers.size * p_sys->mjpeg_buffers.count,
1246                 PROT_READ | PROT_WRITE, MAP_SHARED, i_fd, 0 );
1247         if( p_sys->p_video_mmap == MAP_FAILED )
1248         {
1249             msg_Err( p_demux, "mmap failed" );
1250             goto vdev_failed;
1251         }
1252
1253         p_sys->i_fourcc  = VLC_FOURCC( 'm','j','p','g' );
1254         p_sys->i_frame_pos = -1;
1255
1256         /* queue up all the frames */
1257         for( i = 0; i < (int)p_sys->mjpeg_buffers.count; i++ )
1258         {
1259             if( ioctl( i_fd, MJPIOC_QBUF_CAPT, &i ) < 0 )
1260             {
1261                 msg_Err( p_demux, "unable to queue frame" );
1262                 goto vdev_failed;
1263             }
1264         }
1265     }
1266     else
1267     {
1268         /* Fill in picture_t fields */
1269         vout_InitPicture( VLC_OBJECT(p_demux), &p_sys->pic, p_sys->i_fourcc,
1270                           p_sys->i_width, p_sys->i_height, p_sys->i_width *
1271                           VOUT_ASPECT_FACTOR / p_sys->i_height );
1272         if( !p_sys->pic.i_planes )
1273         {
1274             msg_Err( p_demux, "unsupported chroma" );
1275             goto vdev_failed;
1276         }
1277         p_sys->i_video_frame_size = 0;
1278         for( i = 0; i < p_sys->pic.i_planes; i++ )
1279         {
1280             p_sys->i_video_frame_size += p_sys->pic.p[i].i_visible_lines *
1281               p_sys->pic.p[i].i_visible_pitch;
1282         }
1283
1284         msg_Dbg( p_demux, "v4l device uses frame size: %i",
1285                  p_sys->i_video_frame_size );
1286         msg_Dbg( p_demux, "v4l device uses chroma: %4.4s",
1287                 (char*)&p_sys->i_fourcc );
1288
1289         /* Allocate mmap buffer */
1290         if( ioctl( i_fd, VIDIOCGMBUF, &p_sys->vid_mbuf ) < 0 )
1291         {
1292             msg_Err( p_demux, "mmap unsupported" );
1293             goto vdev_failed;
1294         }
1295
1296         p_sys->p_video_mmap = mmap( 0, p_sys->vid_mbuf.size,
1297                                     PROT_READ|PROT_WRITE, MAP_SHARED,
1298                                     i_fd, 0 );
1299         if( p_sys->p_video_mmap == MAP_FAILED )
1300         {
1301             /* FIXME -> normal read */
1302             msg_Err( p_demux, "mmap failed" );
1303             goto vdev_failed;
1304         }
1305
1306         /* init grabbing */
1307         p_sys->vid_mmap.frame  = 0;
1308         p_sys->vid_mmap.width  = p_sys->i_width;
1309         p_sys->vid_mmap.height = p_sys->i_height;
1310         p_sys->vid_mmap.format = p_sys->vid_picture.palette;
1311         if( ioctl( i_fd, VIDIOCMCAPTURE, &p_sys->vid_mmap ) < 0 )
1312         {
1313             msg_Warn( p_demux, "%4.4s refused", (char*)&p_sys->i_fourcc );
1314             msg_Err( p_demux, "chroma selection failed" );
1315             goto vdev_failed;
1316         }
1317     }
1318     return i_fd;
1319
1320 vdev_failed:
1321
1322     if( i_fd >= 0 ) close( i_fd );
1323     return -1;
1324 }
1325
1326 /*****************************************************************************
1327  * OpenAudioDev:
1328  *****************************************************************************/
1329 static int OpenAudioDev( demux_t *p_demux, char *psz_device )
1330 {
1331     demux_sys_t *p_sys = p_demux->p_sys;
1332     int i_fd, i_format;
1333
1334     if( (i_fd = open( psz_device, O_RDONLY | O_NONBLOCK )) < 0 )
1335     {
1336         msg_Err( p_demux, "cannot open audio device (%m)" );
1337         goto adev_fail;
1338     }
1339
1340     i_format = AFMT_S16_LE;
1341     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
1342         || i_format != AFMT_S16_LE )
1343     {
1344         msg_Err( p_demux, "cannot set audio format (16b little endian) "
1345                  "(%m)" );
1346         goto adev_fail;
1347     }
1348
1349     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
1350                &p_sys->b_stereo ) < 0 )
1351     {
1352         msg_Err( p_demux, "cannot set audio channels count (%m)" );
1353         goto adev_fail;
1354     }
1355
1356     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
1357                &p_sys->i_sample_rate ) < 0 )
1358     {
1359         msg_Err( p_demux, "cannot set audio sample rate (%m)" );
1360         goto adev_fail;
1361     }
1362
1363     msg_Dbg( p_demux, "opened adev=`%s' %s %dHz",
1364              psz_device, p_sys->b_stereo ? "stereo" : "mono",
1365              p_sys->i_sample_rate );
1366
1367     p_sys->i_audio_max_frame_size = 6 * 1024;
1368
1369     return i_fd;
1370
1371  adev_fail:
1372
1373     if( i_fd >= 0 ) close( i_fd );
1374     return -1;
1375 }
1376
1377 /*****************************************************************************
1378  * GrabAudio: grab audio
1379  *****************************************************************************/
1380 static block_t *GrabAudio( demux_t *p_demux )
1381 {
1382     demux_sys_t *p_sys = p_demux->p_sys;
1383     struct audio_buf_info buf_info;
1384     int i_read, i_correct;
1385     block_t *p_block;
1386
1387     if( p_sys->p_block_audio ) p_block = p_sys->p_block_audio;
1388     else p_block = block_New( p_demux, p_sys->i_audio_max_frame_size );
1389
1390     if( !p_block )
1391     {
1392         msg_Warn( p_demux, "cannot get block" );
1393         return 0;
1394     }
1395
1396     p_sys->p_block_audio = p_block;
1397
1398     i_read = read( p_sys->fd_audio, p_block->p_buffer,
1399                    p_sys->i_audio_max_frame_size );
1400
1401     if( i_read <= 0 ) return 0;
1402
1403     p_block->i_buffer = i_read;
1404     p_sys->p_block_audio = 0;
1405
1406     /* Correct the date because of kernel buffering */
1407     i_correct = i_read;
1408     if( ioctl( p_sys->fd_audio, SNDCTL_DSP_GETISPACE, &buf_info ) == 0 )
1409     {
1410         i_correct += buf_info.bytes;
1411     }
1412
1413     p_block->i_pts = p_block->i_dts =
1414         mdate() - I64C(1000000) * (mtime_t)i_correct /
1415         2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
1416
1417     return p_block;
1418 }
1419
1420 /*****************************************************************************
1421  * GrabVideo:
1422  *****************************************************************************/
1423 static uint8_t *GrabCapture( demux_t *p_demux )
1424 {
1425     demux_sys_t *p_sys = p_demux->p_sys;
1426     int i_captured_frame = p_sys->i_frame_pos;
1427
1428     p_sys->vid_mmap.frame = (p_sys->i_frame_pos + 1) % p_sys->vid_mbuf.frames;
1429
1430     while( ioctl( p_sys->fd_video, VIDIOCMCAPTURE, &p_sys->vid_mmap ) < 0 )
1431     {
1432         if( errno != EAGAIN )
1433         {
1434             msg_Err( p_demux, "failed capturing new frame" );
1435             return NULL;
1436         }
1437
1438         if( p_demux->b_die )
1439         {
1440             return NULL;
1441         }
1442
1443         msg_Dbg( p_demux, "grab failed, trying again" );
1444     }
1445
1446     while( ioctl(p_sys->fd_video, VIDIOCSYNC, &p_sys->i_frame_pos) < 0 )
1447     {
1448         if( errno != EAGAIN && errno != EINTR )
1449         {
1450             msg_Err( p_demux, "failed syncing new frame" );
1451             return NULL;
1452         }
1453     }
1454
1455     p_sys->i_frame_pos = p_sys->vid_mmap.frame;
1456     /* leave i_video_frame_size alone */
1457     return p_sys->p_video_mmap + p_sys->vid_mbuf.offsets[i_captured_frame];
1458 }
1459
1460 static uint8_t *GrabMJPEG( demux_t *p_demux )
1461 {
1462     demux_sys_t *p_sys = p_demux->p_sys;
1463     struct mjpeg_sync sync;
1464     uint8_t *p_frame, *p_field, *p;
1465     uint16_t tag;
1466     uint32_t i_size;
1467     struct quicktime_mjpeg_app1 *p_app1 = NULL;
1468
1469     /* re-queue the last frame we sync'd */
1470     if( p_sys->i_frame_pos != -1 )
1471     {
1472         while( ioctl( p_sys->fd_video, MJPIOC_QBUF_CAPT,
1473                                        &p_sys->i_frame_pos ) < 0 )
1474         {
1475             if( errno != EAGAIN && errno != EINTR )
1476             {
1477                 msg_Err( p_demux, "failed capturing new frame" );
1478                 return NULL;
1479             }
1480         }
1481     }
1482
1483     /* sync on the next frame */
1484     while( ioctl( p_sys->fd_video, MJPIOC_SYNC, &sync ) < 0 )
1485     {
1486         if( errno != EAGAIN && errno != EINTR )
1487         {
1488             msg_Err( p_demux, "failed syncing new frame" );
1489             return NULL;
1490         }
1491     }
1492
1493     p_sys->i_frame_pos = sync.frame;
1494     p_frame = p_sys->p_video_mmap + p_sys->mjpeg_buffers.size * sync.frame;
1495
1496     /* p_frame now points to the data.  fix up the Quicktime APP1 marker */
1497     tag = 0xffd9;
1498     tag = hton16( tag );
1499     p_field = p_frame;
1500
1501     /* look for EOI */
1502     p = memmem( p_field, sync.length, &tag, 2 );
1503
1504     if( p )
1505     {
1506         p += 2; /* data immediately following EOI */
1507         /* UNALIGNED! */
1508         p_app1 = (struct quicktime_mjpeg_app1 *)(p_field + 6);
1509
1510         i_size = ((uint32_t)(p - p_field));
1511         i_size = hton32( i_size );
1512         memcpy( &p_app1->i_field_size, &i_size, 4 );
1513
1514         while( *p == 0xff && *(p+1) == 0xff )
1515             p++;
1516
1517         i_size = ((uint32_t)(p - p_field));
1518         i_size = hton32( i_size );
1519         memcpy( &p_app1->i_padded_field_size, &i_size, 4 );
1520     }
1521
1522     tag = 0xffd8;
1523     tag = hton16( tag );
1524     p_field = memmem( p, sync.length - (size_t)(p - p_frame), &tag, 2 );
1525
1526     if( p_field )
1527     {
1528         i_size = (uint32_t)(p_field - p_frame);
1529         i_size = hton32( i_size );
1530         memcpy( &p_app1->i_next_field, &i_size, 4 );
1531
1532         /* UNALIGNED! */
1533         p_app1 = (struct quicktime_mjpeg_app1 *)(p_field + 6);
1534         tag = 0xffd9;
1535         tag = hton16( tag );
1536         p = memmem( p_field, sync.length - (size_t)(p_field - p_frame),
1537                 &tag, 2 );
1538
1539         if( !p )
1540         {
1541             /* sometimes the second field doesn't have the EOI.  just put it
1542              * there
1543              */
1544             p = p_frame + sync.length;
1545             memcpy( p, &tag, 2 );
1546             sync.length += 2;
1547         }
1548
1549         p += 2;
1550         i_size = (uint32_t)(p - p_field);
1551         i_size = hton32( i_size );
1552         memcpy( &p_app1->i_field_size, &i_size, 4 );
1553         i_size = (uint32_t)(sync.length - (uint32_t)(p_field - p_frame));
1554         i_size = hton32( i_size );
1555         memcpy( &p_app1->i_padded_field_size, &i_size, 4 );
1556     }
1557
1558     p_sys->i_video_frame_size = sync.length;
1559     return p_frame;
1560 }
1561
1562 static block_t *GrabVideo( demux_t *p_demux )
1563 {
1564     demux_sys_t *p_sys = p_demux->p_sys;
1565     uint8_t     *p_frame;
1566     block_t     *p_block;
1567
1568     if( p_sys->f_fps >= 0.1 && p_sys->i_video_pts > 0 )
1569     {
1570         mtime_t i_dur = (mtime_t)((double)1000000 / (double)p_sys->f_fps);
1571
1572         /* Did we wait long enough ? (frame rate reduction) */
1573         if( p_sys->i_video_pts + i_dur > mdate() ) return 0;
1574     }
1575
1576     if( p_sys->b_mjpeg ) p_frame = GrabMJPEG( p_demux );
1577     else p_frame = GrabCapture( p_demux );
1578
1579     if( !p_frame ) return 0;
1580
1581     if( !( p_block = block_New( p_demux, p_sys->i_video_frame_size ) ) )
1582     {
1583         msg_Warn( p_demux, "cannot get block" );
1584         return 0;
1585     }
1586
1587     memcpy( p_block->p_buffer, p_frame, p_sys->i_video_frame_size );
1588     p_sys->i_video_pts = p_block->i_pts = p_block->i_dts = mdate();
1589
1590     return p_block;
1591 }