]> git.sesse.net Git - vlc/blobdiff - modules/access/v4l/v4l.c
* changed some strings as suggested by E-bola
[vlc] / modules / access / v4l / v4l.c
index edddf6e2b4949e0e31603ba3e319abc10f3675dc..8c501368e87580018dd1149600f8586c2af3f89a 100644 (file)
@@ -7,6 +7,7 @@
  * Author: Laurent Aimar <fenrir@via.ecp.fr>
  *         Paul Forgey <paulf at aphrodite dot com>
  *         Gildas Bazin <gbazin@videolan.org>
+ *         Benjamin Pracht <bigben at videolan dot org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 /*****************************************************************************
  * Module descriptior
  *****************************************************************************/
-static int  AccessOpen ( vlc_object_t * );
-static void AccessClose( vlc_object_t * );
-
-static int  DemuxOpen  ( vlc_object_t * );
-static void DemuxClose ( vlc_object_t * );
+static int  Open ( vlc_object_t * );
+static void Close( vlc_object_t * );
 
 #define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
@@ -88,10 +86,67 @@ static void DemuxClose ( vlc_object_t * );
 #define CHROMA_LONGTEXT N_( \
     "Force the Video4Linux video device to use a specific chroma format " \
     "(eg. I420 (default), RV24, etc.)")
+#define FREQUENCY_TEXT N_( "Frequency" )
+#define FREQUENCY_LONGTEXT N_( \
+    "Frequency to capture (in kHz), if applicable" )
+#define CHANNEL_TEXT N_( "Channel" )
+#define CHANNEL_LONGTEXT N_( \
+    "Channel of the card to use (Usually, 0 = tuner, " \
+    "1 = composite, 2 = svideo)" )
+#define NORM_TEXT N_( "Norm" )
+#define NORM_LONGTEXT N_( \
+    "Defines the norm of the stream (Automatic, SECAM, PAL, or NTSC)" )
+#define AUDIO_TEXT N_( "Audio Channel" )
+#define AUDIO_LONGTEXT N_( \
+    "Audio Channel to use, if there are several audio input" )
+#define WIDTH_TEXT N_( "Width" )
+#define WIDTH_LONGTEXT N_( "Width of the stream to capture " \
+    "(-1 for autodetect)" )
+#define HEIGHT_TEXT N_( "Height" )
+#define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \
+    "(-1 for autodetect)" )
+#define BRIGHTNESS_TEXT N_( "Brightness" )
+#define BRIGHTNESS_LONGTEXT N_( \
+    "Set the Brightness of the video input" )
+#define HUE_TEXT N_( "Hue" )
+#define HUE_LONGTEXT N_( \
+    "Set the Hue of the video input" )
+#define COLOUR_TEXT N_( "Color" )
+#define COLOUR_LONGTEXT N_( \
+    "Set the Color of the video input" )
+#define CONTRAST_TEXT N_( "Contrast" )
+#define CONTRAST_LONGTEXT N_( \
+    "Set the Contrast of the video input" )
+#define TUNER_TEXT N_( "Tuner" )
+#define TUNER_LONGTEXT N_( "Tuner to use, if there are several ones" )
+#define SAMPLERATE_TEXT N_( "Samplerate" )
+#define SAMPLERATE_LONGTEXT N_( \
+    "Samplerate of the captures audio stream, in Hz" )
+#define STEREO_TEXT N_( "Stereo" )
+#define STEREO_LONGTEXT N_( \
+    "If this option is set, the audio stream will be captured in stereo" )
+#define MJPEG_TEXT N_( "MJPEG" )
+#define MJPEG_LONGTEXT N_(  \
+    "Set this option if the capture device outputs MJPEG" )
+#define DECIMATION_TEXT N_( "Decimation" )
+#define DECIMATION_LONGTEXT N_( \
+    "Set the Decimation level for MJPEG streams" )
+#define QUALITY_TEXT N_( "Quality" )
+#define QUALITY_LONGTEXT N_( "Set the quality of the stream" )
+#define FPS_TEXT N_( "Framerate" )
+#define FPS_LONGTEXT N_( "Framerate to capture, if applicable " \
+    "(-1 for autodetect)" )
+
+static int i_norm_list[] =
+    { VIDEO_MODE_AUTO, VIDEO_MODE_SECAM, VIDEO_MODE_PAL, VIDEO_MODE_NTSC };
+static char *psz_norm_list_text[] =
+    { N_("Automatic"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
 
 vlc_module_begin();
     set_shortname( _("Video4Linux") );
     set_description( _("Video4Linux input") );
+    set_category( CAT_INPUT );
+    set_subcategory( SUBCAT_INPUT_ACCESS );
 
     add_integer( "v4l-caching", DEFAULT_PTS_DELAY / 1000, NULL,
                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
@@ -101,27 +156,54 @@ vlc_module_begin();
                 VLC_FALSE );
     add_string( "v4l-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
                 VLC_TRUE );
+    add_float( "v4l-fps", -1.0, NULL, FPS_TEXT, FPS_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-samplerate", 44100, NULL, SAMPLERATE_TEXT,
+                SAMPLERATE_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-channel", 0, NULL, CHANNEL_TEXT, CHANNEL_LONGTEXT,
+                VLC_TRUE );
+    add_integer( "v4l-tuner", -1, NULL, TUNER_TEXT, TUNER_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-norm", VIDEO_MODE_AUTO, NULL, NORM_TEXT, NORM_LONGTEXT,
+                VLC_FALSE );
+        change_integer_list( i_norm_list, psz_norm_list_text, 0 );
+    add_integer( "v4l-frequency", -1, NULL, FREQUENCY_TEXT, FREQUENCY_LONGTEXT,
+                VLC_FALSE );
+    add_integer( "v4l-audio", -1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_TRUE );
+    add_bool( "v4l-stereo", VLC_TRUE, NULL, STEREO_TEXT, STEREO_LONGTEXT,
+            VLC_TRUE );
+    add_integer( "v4l-width", 0, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-height", 0, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT,
+                VLC_TRUE );
+    add_integer( "v4l-brightness", -1, NULL, BRIGHTNESS_TEXT,
+                BRIGHTNESS_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-colour", -1, NULL, COLOUR_TEXT, COLOUR_LONGTEXT,
+                VLC_TRUE );
+    add_integer( "v4l-hue", -1, NULL, HUE_TEXT, HUE_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-contrast", -1, NULL, CONTRAST_TEXT, CONTRAST_LONGTEXT,
+                VLC_TRUE );
+    add_bool( "v4l-mjpeg", VLC_FALSE, NULL, MJPEG_TEXT, MJPEG_LONGTEXT,
+            VLC_TRUE );
+    add_integer( "v4l-decimation", 1, NULL, DECIMATION_TEXT,
+            DECIMATION_LONGTEXT, VLC_TRUE );
+    add_integer( "v4l-quality", 100, NULL, QUALITY_TEXT, QUALITY_LONGTEXT,
+            VLC_TRUE );
 
     add_shortcut( "v4l" );
-    set_capability( "access", 10 );
-    set_callbacks( AccessOpen, AccessClose );
-
-    add_submodule();
-        set_description( _("Video4Linux demuxer") );
-        add_shortcut( "v4l" );
-        set_capability( "demux", 200 );
-        set_callbacks( DemuxOpen, DemuxClose );
+    set_capability( "access_demux", 10 );
+    set_callbacks( Open, Close );
 vlc_module_end();
 
-
 /*****************************************************************************
  * Access: local prototypes
  *****************************************************************************/
-static int  Read        ( input_thread_t *, byte_t *, size_t );
+static int Demux  ( demux_t * );
+static int Control( demux_t *, int, va_list );
+
+static void ParseMRL    ( demux_t * );
+static int  OpenVideoDev( demux_t *, char * );
+static int  OpenAudioDev( demux_t *, char * );
 
-static void ParseMRL    ( input_thread_t * );
-static int  OpenVideoDev( input_thread_t *, char * );
-static int  OpenAudioDev( input_thread_t *, char * );
+static block_t *GrabAudio( demux_t * );
+static block_t *GrabVideo( demux_t * );
 
 #define MJPEG_BUFFER_SIZE (256*1024)
 
@@ -164,7 +246,7 @@ static struct
     { 0, 0 }
 };
 
-struct access_sys_t
+struct demux_sys_t
 {
     /* Devices */
     char *psz_device;         /* Main device from MRL, can be video or audio */
@@ -209,131 +291,139 @@ struct access_sys_t
     struct video_mmap   vid_mmap;
     struct video_picture vid_picture;
 
-    uint8_t *p_video_frame;
-    int     i_video_frame_size;
-    int     i_video_frame_size_allocated;
+    int          i_video_frame_size;
+    es_out_id_t  *p_es_video;
 
     /* Audio properties */
     vlc_fourcc_t i_acodec_raw;
     int          i_sample_rate;
     vlc_bool_t   b_stereo;
-
-    uint8_t *p_audio_frame;
-    int     i_audio_frame_size;
-    int     i_audio_frame_size_allocated;
-
-    /* header */
-    int     i_streams;
-    int     i_header_size;
-    int     i_header_pos;
-    uint8_t *p_header;      // at lest 8 bytes allocated
-
-    /* data */
-    int     i_data_size;
-    int     i_data_pos;
-    uint8_t *p_data;        // never allocated
-
+    int          i_audio_max_frame_size;
+    block_t      *p_block_audio;
+    es_out_id_t  *p_es_audio;
 };
 
-/*
- * header:
- *  fcc  ".v4l"
- *  u32    stream count
- *      fcc "auds"|"vids"       0
- *      fcc codec               4
- *      if vids
- *          u32 width           8
- *          u32 height          12
- *          u32 padding         16
- *      if auds
- *          u32 channels        12
- *          u32 samplerate      8
- *          u32 samplesize      16
- *
- * data:
- *  u32     stream number
- *  u32     data size
- *  u8      data
- */
-
-static void SetDWBE( uint8_t *p, uint32_t dw )
-{
-    p[0] = (dw >> 24)&0xff;
-    p[1] = (dw >> 16)&0xff;
-    p[2] = (dw >>  8)&0xff;
-    p[3] = (dw      )&0xff;
-}
-
-static void SetQWBE( uint8_t *p, uint64_t qw )
-{
-    SetDWBE( p,     (qw >> 32)&0xffffffff );
-    SetDWBE( &p[4], qw&0xffffffff);
-}
-
 /*****************************************************************************
- * AccessOpen: opens v4l device
+ * Open: opens v4l device
  *****************************************************************************
  *
  * url: <video device>::::
  *
  *****************************************************************************/
-static int AccessOpen( vlc_object_t *p_this )
+static int Open( vlc_object_t *p_this )
 {
-    input_thread_t *p_input = (input_thread_t *)p_this;
-    access_sys_t   *p_sys;
-    vlc_value_t    val;
+    demux_t     *p_demux = (demux_t*)p_this;
+    demux_sys_t *p_sys;
+    vlc_value_t val;
+
+    /* Only when selected */
+    if( *p_demux->psz_access == '\0' )
+        return VLC_EGENERIC;
+
+    /* Set up p_demux */
+    p_demux->pf_demux = Demux;
+    p_demux->pf_control = Control;
+    p_demux->info.i_update = 0;
+    p_demux->info.i_title = 0;
+    p_demux->info.i_seekpoint = 0;
+    p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
+    memset( p_sys, 0, sizeof( demux_sys_t ) );
 
-    /* create access private data */
-    p_input->p_access_data = p_sys = malloc( sizeof( access_sys_t ) );
-    memset( p_sys, 0, sizeof( access_sys_t ) );
+    var_Create( p_demux, "v4l-audio", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-audio", &val );
+    p_sys->i_audio          = val.i_int;
 
-    p_sys->i_audio          = -1;
-    p_sys->i_norm           = VIDEO_MODE_AUTO;    // auto
-    p_sys->i_tuner          = -1;
-    p_sys->i_frequency      = -1;
+    var_Create( p_demux, "v4l-channel", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-channel", &val );
+    p_sys->i_channel        = val.i_int;
+
+    var_Create( p_demux, "v4l-norm", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-norm", &val );
+    p_sys->i_norm           = val.i_int;
+
+    var_Create( p_demux, "v4l-tuner", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-tuner", &val );
+    p_sys->i_tuner          = val.i_int;
+
+    var_Create( p_demux, "v4l-frequency",
+                                    VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-frequency", &val );
+    p_sys->i_frequency      = val.i_int;
+
+    var_Create( p_demux, "v4l-fps", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-fps", &val );
+    p_sys->f_fps            = val.f_float;
+
+    var_Create( p_demux, "v4l-width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-width", &val );
+    p_sys->i_width          = val.i_int;
+
+    var_Create( p_demux, "v4l-height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-height", &val );
+    p_sys->i_height         = val.i_int;
 
-    p_sys->f_fps            = -1.0;
     p_sys->i_video_pts      = -1;
 
-    p_sys->i_brightness     = -1;
+    var_Create( p_demux, "v4l-brightness", VLC_VAR_INTEGER |
+                                                        VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-brightness", &val );
+    p_sys->i_brightness     = val.i_int;
+
+    var_Create( p_demux, "v4l-hue", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-hue", &val );
     p_sys->i_hue            = -1;
-    p_sys->i_colour         = -1;
-    p_sys->i_contrast       = -1;
 
-    p_sys->b_mjpeg     = VLC_FALSE;
-    p_sys->i_decimation = 1;
-    p_sys->i_quality = 100;
+    var_Create( p_demux, "v4l-colour", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-colour", &val );
+    p_sys->i_colour         = val.i_int;
+
+    var_Create( p_demux, "v4l-contrast", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-contrast", &val );
+    p_sys->i_contrast       = val.i_int;
 
-    p_sys->i_video_frame_size_allocated = 0;
-    p_sys->i_frame_pos = 0;
+    var_Create( p_demux, "v4l-mjpeg", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-mjpeg", &val );
+    p_sys->b_mjpeg     = val.b_bool;
 
-    p_sys->p_audio_frame  = 0;
-    p_sys->i_sample_rate  = 44100;
-    p_sys->b_stereo       = VLC_TRUE;
+    var_Create( p_demux, "v4l-decimation", VLC_VAR_INTEGER |
+                                                            VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-decimation", &val );
+    p_sys->i_decimation = val.i_int;
 
-    p_sys->p_header    = NULL;
-    p_sys->i_data_size = 0;
-    p_sys->i_data_pos  = 0;
-    p_sys->p_data      = NULL;
+    var_Create( p_demux, "v4l-quality", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-quality", &val );
+    p_sys->i_quality = val.i_int;
+
+    var_Create( p_demux, "v4l-samplerate",
+                                    VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-samplerate", &val );
+    p_sys->i_sample_rate  = val.i_int;
+
+    var_Create( p_demux, "v4l-stereo", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
+    var_Get( p_demux, "v4l-stereo", &val );
+    p_sys->b_stereo       = val.b_bool;
 
     p_sys->psz_device = p_sys->psz_vdev = p_sys->psz_adev = NULL;
     p_sys->fd_video = -1;
     p_sys->fd_audio = -1;
 
-    ParseMRL( p_input );
+    p_sys->p_es_video = p_sys->p_es_audio = 0;
+    p_sys->p_block_audio = 0;
+
+    ParseMRL( p_demux );
 
     /* Find main device (video or audio) */
     if( p_sys->psz_device && *p_sys->psz_device )
     {
-        msg_Dbg( p_input, "main device=`%s'", p_sys->psz_device );
+        msg_Dbg( p_demux, "main device=`%s'", p_sys->psz_device );
 
         /* Try to open as video device */
-        p_sys->fd_video = OpenVideoDev( p_input, p_sys->psz_device );
+        p_sys->fd_video = OpenVideoDev( p_demux, p_sys->psz_device );
 
         if( p_sys->fd_video < 0 )
         {
             /* Try to open as audio device */
-            p_sys->fd_audio = OpenAudioDev( p_input, p_sys->psz_device );
+            p_sys->fd_audio = OpenAudioDev( p_demux, p_sys->psz_device );
             if( p_sys->fd_audio >= 0 )
             {
                 if( p_sys->psz_adev ) free( p_sys->psz_adev );
@@ -352,10 +442,9 @@ static int AccessOpen( vlc_object_t *p_this )
     /* If no device opened, only continue if the access was forced */
     if( p_sys->fd_video < 0 && p_sys->fd_audio < 0 )
     {
-        if( !p_input->psz_access ||
-            strcmp( p_input->psz_access, "v4l" ) )
+        if( strcmp( p_demux->psz_access, "v4l" ) )
         {
-            AccessClose( p_this );
+            Close( p_this );
             return VLC_EGENERIC;
         }
     }
@@ -365,17 +454,13 @@ static int AccessOpen( vlc_object_t *p_this )
     {
         if( !p_sys->psz_vdev || !*p_sys->psz_vdev )
         {
-            var_Create( p_input, "v4l-vdev",
-                        VLC_VAR_STRING | VLC_VAR_DOINHERIT );
-            var_Get( p_input, "v4l-vdev", &val );
-
             if( p_sys->psz_vdev ) free( p_sys->psz_vdev );
-            p_sys->psz_vdev = val.psz_string;
+            p_sys->psz_vdev = var_CreateGetString( p_demux, "v4l-vdev" );;
         }
 
         if( p_sys->psz_vdev && *p_sys->psz_vdev )
         {
-            p_sys->fd_video = OpenVideoDev( p_input, p_sys->psz_vdev );
+            p_sys->fd_video = OpenVideoDev( p_demux, p_sys->psz_vdev );
         }
     }
 
@@ -384,101 +469,180 @@ static int AccessOpen( vlc_object_t *p_this )
     {
         if( !p_sys->psz_adev || !*p_sys->psz_adev )
         {
-            var_Create( p_input, "v4l-adev",
-                        VLC_VAR_STRING | VLC_VAR_DOINHERIT );
-            var_Get( p_input, "v4l-adev", &val );
-
             if( p_sys->psz_adev ) free( p_sys->psz_adev );
-            p_sys->psz_adev = val.psz_string;
+            p_sys->psz_adev = var_CreateGetString( p_demux, "v4l-adev" );;
         }
 
         if( p_sys->psz_adev && *p_sys->psz_adev )
         {
-            p_sys->fd_audio = OpenAudioDev( p_input, p_sys->psz_adev );
+            p_sys->fd_audio = OpenAudioDev( p_demux, p_sys->psz_adev );
         }
     }
 
     if( p_sys->fd_video < 0 && p_sys->fd_audio < 0 )
     {
-        AccessClose( p_this );
+        Close( p_this );
         return VLC_EGENERIC;
     }
 
-    p_input->pf_read        = Read;
-    p_input->pf_seek        = NULL;
-    p_input->pf_set_area    = NULL;
-    p_input->pf_set_program = NULL;
+    msg_Dbg( p_demux, "v4l grabbing started" );
+
+    /* Declare elementary streams */
+    if( p_sys->fd_video >= 0 )
+    {
+        es_format_t fmt;
+        es_format_Init( &fmt, VIDEO_ES, p_sys->i_fourcc );
+        fmt.video.i_width  = p_sys->i_width;
+        fmt.video.i_height = p_sys->i_height;
+        fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
+
+        /* Setup rgb mask for RGB formats */
+        if( p_sys->i_fourcc == VLC_FOURCC('R','V','2','4') )
+        {
+            /* This is in BGR format */
+            fmt.video.i_bmask = 0x00ff0000;
+            fmt.video.i_gmask = 0x0000ff00;
+            fmt.video.i_rmask = 0x000000ff;
+        }
+
+        msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
+                 (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
+        p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
+    }
+
+    if( p_sys->fd_audio >= 0 )
+    {
+        es_format_t fmt;
+        es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('a','r','a','w') );
+
+        fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
+        fmt.audio.i_rate = p_sys->i_sample_rate;
+        fmt.audio.i_bitspersample = 16; // FIXME ?
+        fmt.audio.i_blockalign = fmt.audio.i_channels *
+            fmt.audio.i_bitspersample / 8;
+        fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate *
+            fmt.audio.i_bitspersample;
+
+        msg_Dbg( p_demux, "new audio es %d channels %dHz",
+                 fmt.audio.i_channels, fmt.audio.i_rate );
 
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    p_input->stream.b_pace_control = 0;
-    p_input->stream.b_seekable = 0;
-    p_input->stream.p_selected_area->i_size = 0;
-    p_input->stream.p_selected_area->i_tell = 0;
-    p_input->stream.i_method = INPUT_METHOD_FILE;
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
+        p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
+    }
 
     /* Update default_pts to a suitable value for access */
-    var_Create( p_input, "v4l-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT);
-    var_Get( p_input, "v4l-caching", &val );
-    p_input->i_pts_delay = val.i_int * 1000;
+    var_Create( p_demux, "v4l-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
 
-    msg_Info( p_input, "v4l grabbing started" );
+    return VLC_SUCCESS;
+}
 
-    /* create header */
-    p_sys->i_streams     = 0;
-    p_sys->i_header_size = 8;
-    p_sys->i_header_pos  = 8;
-    p_sys->p_header      = malloc( p_sys->i_header_size );
+/*****************************************************************************
+ * Close: close device, free resources
+ *****************************************************************************/
+static void Close( vlc_object_t *p_this )
+{
+    demux_t     *p_demux = (demux_t *)p_this;
+    demux_sys_t *p_sys   = p_demux->p_sys;
 
-    memcpy( p_sys->p_header, ".v4l", 4 );
+    if( p_sys->psz_device ) free( p_sys->psz_device );
+    if( p_sys->psz_vdev )   free( p_sys->psz_vdev );
+    if( p_sys->psz_adev )   free( p_sys->psz_adev );
+    if( p_sys->fd_video >= 0 ) close( p_sys->fd_video );
+    if( p_sys->fd_audio >= 0 ) close( p_sys->fd_audio );
+    if( p_sys->p_block_audio ) block_Release( p_sys->p_block_audio );
 
-    if( p_sys->fd_video >= 0 )
+    if( p_sys->b_mjpeg )
     {
-        p_sys->i_header_size += 20;
-        p_sys->p_header = realloc( p_sys->p_header, p_sys->i_header_size );
+        int i_noframe = -1;
+        ioctl( p_sys->fd_video, MJPIOC_QBUF_CAPT, &i_noframe );
+    }
 
-        SetDWBE( &p_sys->p_header[4], ++p_sys->i_streams );
+    if( p_sys->p_video_mmap && p_sys->p_video_mmap != MAP_FAILED )
+    {
+        if( p_sys->b_mjpeg )
+            munmap( p_sys->p_video_mmap, p_sys->mjpeg_buffers.size *
+                    p_sys->mjpeg_buffers.count );
+        else
+            munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size );
+    }
 
-        memcpy(  &p_sys->p_header[p_sys->i_header_pos], "vids", 4 );
-        memcpy(  &p_sys->p_header[p_sys->i_header_pos+4],
-                 &p_sys->i_fourcc, 4 );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+8], p_sys->i_width );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+12], p_sys->i_height );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+16], 0 );
+    free( p_sys );
+}
 
-        p_sys->i_header_pos = p_sys->i_header_size;
-    }
+/*****************************************************************************
+ * Control:
+ *****************************************************************************/
+static int Control( demux_t *p_demux, int i_query, va_list args )
+{
+    vlc_bool_t *pb;
+    int64_t    *pi64;
 
-    if( p_sys->fd_audio >= 0 )
+    switch( i_query )
     {
-        p_sys->i_header_size += 20;
-        p_sys->p_header = realloc( p_sys->p_header, p_sys->i_header_size );
+        /* Special for access_demux */
+        case DEMUX_CAN_PAUSE:
+        case DEMUX_SET_PAUSE_STATE:
+        case DEMUX_CAN_CONTROL_PACE:
+            pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
+            *pb = VLC_FALSE;
+            return VLC_SUCCESS;
+
+        case DEMUX_GET_PTS_DELAY:
+            pi64 = (int64_t*)va_arg( args, int64_t * );
+            *pi64 = (int64_t)var_GetInteger( p_demux, "v4l-caching" ) * 1000;
+            return VLC_SUCCESS;
+
+        case DEMUX_GET_TIME:
+            pi64 = (int64_t*)va_arg( args, int64_t * );
+            *pi64 = mdate();
+            return VLC_SUCCESS;
+
+        /* TODO implement others */
+        default:
+            return VLC_EGENERIC;
+    }
+
+    return VLC_EGENERIC;
+}
 
-        SetDWBE( &p_sys->p_header[4], ++p_sys->i_streams );
+/*****************************************************************************
+ * Demux:
+ *****************************************************************************/
+static int Demux( demux_t *p_demux )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    es_out_id_t  *p_es = p_sys->p_es_audio;
+    block_t *p_block = NULL;
 
-        memcpy(  &p_sys->p_header[p_sys->i_header_pos], "auds", 4 );
-        memcpy(  &p_sys->p_header[p_sys->i_header_pos+4], "araw", 4 );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+8],
-                 p_sys->b_stereo ? 2 : 1 );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+12],
-                 p_sys->i_sample_rate );
-        SetDWBE( &p_sys->p_header[p_sys->i_header_pos+16], 16 );
+    /* Try grabbing audio frames first */
+    if( p_sys->fd_audio < 0 || !( p_block = GrabAudio( p_demux ) ) )
+    {
+        /* Try grabbing video frame */
+        p_es = p_sys->p_es_video;
+        if( p_sys->fd_video > 0 ) p_block = GrabVideo( p_demux );
+    }
 
-        p_sys->i_header_pos = p_sys->i_header_size;
+    if( !p_block )
+    {
+        /* Sleep so we do not consume all the cpu, 10ms seems
+         * like a good value (100fps) */
+        msleep( 10000 );
+        return 1;
     }
-    p_sys->i_header_pos = 0;
 
-    return VLC_SUCCESS;
+    es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
+    es_out_Send( p_demux->out, p_es, p_block );
+
+    return 1;
 }
 
 /*****************************************************************************
  * ParseMRL: parse the options contained in the MRL
  *****************************************************************************/
-static void ParseMRL( input_thread_t *p_input )
+static void ParseMRL( demux_t *p_demux )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
 
-    char *psz_dup = strdup( p_input->psz_name );
+    char *psz_dup = strdup( p_demux->psz_path );
     char *psz_parser = psz_dup;
 
     while( *psz_parser && *psz_parser != ':' )
@@ -533,7 +697,7 @@ static void ParseMRL( input_thread_t *p_input )
                             &psz_parser, 0 );
                 if( p_sys->i_frequency < 30000 )
                 {
-                    msg_Warn( p_input, "v4l syntax has changed : "
+                    msg_Warn( p_demux, "v4l syntax has changed : "
                               "'frequency' is now channel frequency in kHz");
                 }
             }
@@ -584,7 +748,7 @@ static void ParseMRL( input_thread_t *p_input )
                         p_sys->i_height = strtol( psz_parser + 1,
                                                   &psz_parser, 0 );
                     }
-                    msg_Dbg( p_input, "WxH %dx%d", p_sys->i_width,
+                    msg_Dbg( p_demux, "WxH %dx%d", p_sys->i_width,
                              p_sys->i_height );
                 }
             }
@@ -677,7 +841,7 @@ static void ParseMRL( input_thread_t *p_input )
             }
             else
             {
-                msg_Warn( p_input, "unknown option" );
+                msg_Warn( p_demux, "unknown option" );
             }
 
             while( *psz_parser && *psz_parser != ':' )
@@ -702,9 +866,9 @@ static void ParseMRL( input_thread_t *p_input )
 /*****************************************************************************
  * OpenVideoDev:
  *****************************************************************************/
-int OpenVideoDev( input_thread_t *p_input, char *psz_device )
+static int OpenVideoDev( demux_t *p_demux, char *psz_device )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     int i_fd;
 
     struct video_channel vid_channel;
@@ -713,17 +877,17 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
     {
-        msg_Err( p_input, "cannot open device (%s)", strerror( errno ) );
+        msg_Err( p_demux, "cannot open device (%s)", strerror( errno ) );
         goto vdev_failed;
     }
 
     if( ioctl( i_fd, VIDIOCGCAP, &p_sys->vid_cap ) < 0 )
     {
-        msg_Err( p_input, "cannot get capabilities (%s)", strerror( errno ) );
+        msg_Err( p_demux, "cannot get capabilities (%s)", strerror( errno ) );
         goto vdev_failed;
     }
 
-    msg_Dbg( p_input,
+    msg_Dbg( p_demux,
              "V4L device %s %d channels %d audios %d < w < %d %d < h < %d",
              p_sys->vid_cap.name,
              p_sys->vid_cap.channels,
@@ -733,60 +897,56 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
     if( p_sys->i_channel < 0 || p_sys->i_channel >= p_sys->vid_cap.channels )
     {
-        msg_Dbg( p_input, "invalid channel, falling back on channel 0" );
+        msg_Dbg( p_demux, "invalid channel, falling back on channel 0" );
         p_sys->i_channel = 0;
     }
     if( p_sys->i_audio >= p_sys->vid_cap.audios )
     {
-        msg_Dbg( p_input, "invalid audio, falling back with no audio" );
+        msg_Dbg( p_demux, "invalid audio, falling back with no audio" );
         p_sys->i_audio = -1;
     }
 
     if( p_sys->i_width < p_sys->vid_cap.minwidth ||
         p_sys->i_width > p_sys->vid_cap.maxwidth )
     {
-        msg_Dbg( p_input, "invalid width %i", p_sys->i_width );
+        msg_Dbg( p_demux, "invalid width %i", p_sys->i_width );
         p_sys->i_width = 0;
     }
     if( p_sys->i_height < p_sys->vid_cap.minheight ||
         p_sys->i_height > p_sys->vid_cap.maxheight )
     {
-        msg_Dbg( p_input, "invalid height %i", p_sys->i_height );
+        msg_Dbg( p_demux, "invalid height %i", p_sys->i_height );
         p_sys->i_height = 0;
     }
 
     if( !( p_sys->vid_cap.type & VID_TYPE_CAPTURE ) )
     {
-        msg_Err( p_input, "cannot grab" );
+        msg_Err( p_demux, "cannot grab" );
         goto vdev_failed;
     }
 
     vid_channel.channel = p_sys->i_channel;
     if( ioctl( i_fd, VIDIOCGCHAN, &vid_channel ) < 0 )
     {
-        msg_Err( p_input, "cannot get channel infos (%s)",
+        msg_Err( p_demux, "cannot get channel infos (%s)",
                           strerror( errno ) );
         goto vdev_failed;
     }
-    msg_Dbg( p_input,
+    msg_Dbg( p_demux,
              "setting channel %s(%d) %d tuners flags=0x%x type=0x%x norm=0x%x",
-             vid_channel.name,
-             vid_channel.channel,
-             vid_channel.tuners,
-             vid_channel.flags,
-             vid_channel.type,
-             vid_channel.norm );
+             vid_channel.name, vid_channel.channel, vid_channel.tuners,
+             vid_channel.flags, vid_channel.type, vid_channel.norm );
 
     if( p_sys->i_tuner >= vid_channel.tuners )
     {
-        msg_Dbg( p_input, "invalid tuner, falling back on tuner 0" );
+        msg_Dbg( p_demux, "invalid tuner, falling back on tuner 0" );
         p_sys->i_tuner = 0;
     }
 
     vid_channel.norm = p_sys->i_norm;
     if( ioctl( i_fd, VIDIOCSCHAN, &vid_channel ) < 0 )
     {
-        msg_Err( p_input, "cannot set channel (%s)", strerror( errno ) );
+        msg_Err( p_demux, "cannot set channel (%s)", strerror( errno ) );
         goto vdev_failed;
     }
 
@@ -801,22 +961,22 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
             vid_tuner.tuner = p_sys->i_tuner;
             if( ioctl( i_fd, VIDIOCGTUNER, &vid_tuner ) < 0 )
             {
-                msg_Err( p_input, "cannot get tuner (%s)", strerror( errno ) );
+                msg_Err( p_demux, "cannot get tuner (%s)", strerror( errno ) );
                 goto vdev_failed;
             }
-            msg_Dbg( p_input, "tuner %s low=%d high=%d, flags=0x%x "
+            msg_Dbg( p_demux, "tuner %s low=%d high=%d, flags=0x%x "
                      "mode=0x%x signal=0x%x",
                      vid_tuner.name, vid_tuner.rangelow, vid_tuner.rangehigh,
                      vid_tuner.flags, vid_tuner.mode, vid_tuner.signal );
 
-            msg_Dbg( p_input, "setting tuner %s (%d)",
+            msg_Dbg( p_demux, "setting tuner %s (%d)",
                      vid_tuner.name, vid_tuner.tuner );
 
             /* FIXME FIXME to be checked FIXME FIXME */
             //vid_tuner.mode = p_sys->i_norm;
             if( ioctl( i_fd, VIDIOCSTUNER, &vid_tuner ) < 0 )
             {
-                msg_Err( p_input, "cannot set tuner (%s)", strerror( errno ) );
+                msg_Err( p_demux, "cannot set tuner (%s)", strerror( errno ) );
                 goto vdev_failed;
             }
         }
@@ -832,11 +992,11 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
             int driver_frequency = p_sys->i_frequency * 16 /1000;
             if( ioctl( i_fd, VIDIOCSFREQ, &driver_frequency ) < 0 )
             {
-                msg_Err( p_input, "cannot set frequency (%s)",
+                msg_Err( p_demux, "cannot set frequency (%s)",
                                   strerror( errno ) );
                 goto vdev_failed;
             }
-            msg_Dbg( p_input, "frequency %d (%d)", p_sys->i_frequency,
+            msg_Dbg( p_demux, "frequency %d (%d)", p_sys->i_frequency,
                                                    driver_frequency );
         }
     }
@@ -852,7 +1012,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
             vid_audio.audio = p_sys->i_audio;
             if( ioctl( i_fd, VIDIOCGAUDIO, &vid_audio ) < 0 )
             {
-                msg_Err( p_input, "cannot get audio (%s)", strerror( errno ) );
+                msg_Err( p_demux, "cannot get audio (%s)", strerror( errno ) );
                 goto vdev_failed;
             }
 
@@ -861,7 +1021,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
             if( ioctl( i_fd, VIDIOCSAUDIO, &vid_audio ) < 0 )
             {
-                msg_Err( p_input, "cannot set audio (%s)", strerror( errno ) );
+                msg_Err( p_demux, "cannot set audio (%s)", strerror( errno ) );
                 goto vdev_failed;
             }
         }
@@ -877,7 +1037,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
         if( ioctl( i_fd, MJPIOC_G_PARAMS, &mjpeg ) < 0 )
         {
-            msg_Err( p_input, "cannot get mjpeg params (%s)",
+            msg_Err( p_demux, "cannot get mjpeg params (%s)",
                               strerror( errno ) );
             goto vdev_failed;
         }
@@ -928,7 +1088,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
         if( ioctl( i_fd, MJPIOC_S_PARAMS, &mjpeg ) < 0 )
         {
-            msg_Err( p_input, "cannot set mjpeg params (%s)",
+            msg_Err( p_demux, "cannot set mjpeg params (%s)",
                               strerror( errno ) );
             goto vdev_failed;
         }
@@ -945,16 +1105,27 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
         if( ioctl( i_fd, VIDIOCGWIN, &vid_win ) < 0 )
         {
-            msg_Err( p_input, "cannot get win (%s)", strerror( errno ) );
+            msg_Err( p_demux, "cannot get win (%s)", strerror( errno ) );
             goto vdev_failed;
         }
         p_sys->i_width  = vid_win.width;
         p_sys->i_height = vid_win.height;
 
-        msg_Dbg( p_input, "will use %dx%d", p_sys->i_width, p_sys->i_height );
-    }
+        if( !p_sys->i_width || !p_sys->i_height )
+        {
+            p_sys->i_width = p_sys->vid_cap.maxwidth;
+            p_sys->i_height = p_sys->vid_cap.maxheight;
+        }
+
+        if( !p_sys->i_width || !p_sys->i_height )
+        {
+            msg_Err( p_demux, "invalid video size (%ix%i)",
+                     p_sys->i_width, p_sys->i_height );
+            goto vdev_failed;
+        }
 
-    p_sys->p_video_frame = NULL;
+        msg_Dbg( p_demux, "will use %dx%d", p_sys->i_width, p_sys->i_height );
+    }
 
     if( !p_sys->b_mjpeg )
     {
@@ -981,10 +1152,13 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
             }
             if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
             {
-                msg_Dbg( p_input, "v4l device uses brightness: %d", vid_picture.brightness );
-                msg_Dbg( p_input, "v4l device uses colour: %d", vid_picture.colour );
-                msg_Dbg( p_input, "v4l device uses hue: %d", vid_picture.hue );
-                msg_Dbg( p_input, "v4l device uses contrast: %d", vid_picture.contrast );
+                msg_Dbg( p_demux, "v4l device uses brightness: %d",
+                         vid_picture.brightness );
+                msg_Dbg( p_demux, "v4l device uses colour: %d",
+                         vid_picture.colour );
+                msg_Dbg( p_demux, "v4l device uses hue: %d", vid_picture.hue );
+                msg_Dbg( p_demux, "v4l device uses contrast: %d",
+                         vid_picture.contrast );
                 p_sys->vid_picture = vid_picture;
             }
         }
@@ -993,20 +1167,16 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
         if( ioctl( i_fd, VIDIOCGPICT, &p_sys->vid_picture ) == 0 )
         {
             struct video_picture vid_picture = p_sys->vid_picture;
-            vlc_value_t val;
+            char *psz;
             int i;
 
             vid_picture.palette = 0;
             p_sys->i_fourcc = 0;
 
-            var_Create( p_input, "v4l-chroma",
-                        VLC_VAR_STRING | VLC_VAR_DOINHERIT );
-            var_Get( p_input, "v4l-chroma", &val );
-            if( val.psz_string && strlen( val.psz_string ) >= 4 )
+            psz = var_CreateGetString( p_demux, "v4l-chroma" );
+            if( strlen( psz ) >= 4 )
             {
-                int i_chroma =
-                    VLC_FOURCC( val.psz_string[0], val.psz_string[1],
-                                val.psz_string[2], val.psz_string[3] );
+                int i_chroma = VLC_FOURCC( psz[0], psz[1], psz[2], psz[3] );
 
                 /* Find out v4l chroma code */
                 for( i = 0; v4lchroma_to_fourcc[i].i_v4l != 0; i++ )
@@ -1018,7 +1188,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
                     }
                 }
             }
-            if( val.psz_string ) free( val.psz_string );
+            free( psz );
 
             if( vid_picture.palette &&
                 !ioctl( i_fd, VIDIOCSPICT, &vid_picture ) )
@@ -1052,11 +1222,10 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
                     break;
                 }
             }
-
         }
         else
         {
-            msg_Err( p_input, "ioctl VIDIOCGPICT failed" );
+            msg_Err( p_demux, "ioctl VIDIOCGPICT failed" );
             goto vdev_failed;
         }
     }
@@ -1070,7 +1239,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
 
         if( ioctl( i_fd, MJPIOC_REQBUFS, &p_sys->mjpeg_buffers ) < 0 )
         {
-            msg_Err( p_input, "mmap unsupported" );
+            msg_Err( p_demux, "mmap unsupported" );
             goto vdev_failed;
         }
 
@@ -1079,7 +1248,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
                 PROT_READ | PROT_WRITE, MAP_SHARED, i_fd, 0 );
         if( p_sys->p_video_mmap == MAP_FAILED )
         {
-            msg_Err( p_input, "mmap failed" );
+            msg_Err( p_demux, "mmap failed" );
             goto vdev_failed;
         }
 
@@ -1091,7 +1260,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
         {
             if( ioctl( i_fd, MJPIOC_QBUF_CAPT, &i ) < 0 )
             {
-                msg_Err( p_input, "unable to queue frame" );
+                msg_Err( p_demux, "unable to queue frame" );
                 goto vdev_failed;
             }
         }
@@ -1099,30 +1268,30 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
     else
     {
         /* Fill in picture_t fields */
-        vout_InitPicture( VLC_OBJECT(p_input), &p_sys->pic, p_sys->i_fourcc,
+        vout_InitPicture( VLC_OBJECT(p_demux), &p_sys->pic, p_sys->i_fourcc,
                           p_sys->i_width, p_sys->i_height, p_sys->i_width *
                           VOUT_ASPECT_FACTOR / p_sys->i_height );
         if( !p_sys->pic.i_planes )
         {
-            msg_Err( p_input, "unsupported chroma" );
+            msg_Err( p_demux, "unsupported chroma" );
             goto vdev_failed;
         }
         p_sys->i_video_frame_size = 0;
         for( i = 0; i < p_sys->pic.i_planes; i++ )
         {
-            p_sys->i_video_frame_size += p_sys->pic.p[i].i_lines *
+            p_sys->i_video_frame_size += p_sys->pic.p[i].i_visible_lines *
               p_sys->pic.p[i].i_visible_pitch;
         }
 
-        msg_Dbg( p_input, "v4l device uses frame size: %i",
+        msg_Dbg( p_demux, "v4l device uses frame size: %i",
                  p_sys->i_video_frame_size );
-        msg_Dbg( p_input, "v4l device uses chroma: %4.4s",
+        msg_Dbg( p_demux, "v4l device uses chroma: %4.4s",
                 (char*)&p_sys->i_fourcc );
 
         /* Allocate mmap buffer */
         if( ioctl( i_fd, VIDIOCGMBUF, &p_sys->vid_mbuf ) < 0 )
         {
-            msg_Err( p_input, "mmap unsupported" );
+            msg_Err( p_demux, "mmap unsupported" );
             goto vdev_failed;
         }
 
@@ -1132,7 +1301,7 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
         if( p_sys->p_video_mmap == MAP_FAILED )
         {
             /* FIXME -> normal read */
-            msg_Err( p_input, "mmap failed" );
+            msg_Err( p_demux, "mmap failed" );
             goto vdev_failed;
         }
 
@@ -1143,8 +1312,8 @@ int OpenVideoDev( input_thread_t *p_input, char *psz_device )
         p_sys->vid_mmap.format = p_sys->vid_picture.palette;
         if( ioctl( i_fd, VIDIOCMCAPTURE, &p_sys->vid_mmap ) < 0 )
         {
-            msg_Warn( p_input, "%4.4s refused", (char*)&p_sys->i_fourcc );
-            msg_Err( p_input, "chroma selection failed" );
+            msg_Warn( p_demux, "%4.4s refused", (char*)&p_sys->i_fourcc );
+            msg_Err( p_demux, "chroma selection failed" );
             goto vdev_failed;
         }
     }
@@ -1159,14 +1328,14 @@ vdev_failed:
 /*****************************************************************************
  * OpenAudioDev:
  *****************************************************************************/
-int OpenAudioDev( input_thread_t *p_input, char *psz_device )
+static int OpenAudioDev( demux_t *p_demux, char *psz_device )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     int i_fd, i_format;
 
     if( (i_fd = open( psz_device, O_RDONLY | O_NONBLOCK )) < 0 )
     {
-        msg_Err( p_input, "cannot open audio device (%s)", strerror( errno ) );
+        msg_Err( p_demux, "cannot open audio device (%s)", strerror( errno ) );
         goto adev_fail;
     }
 
@@ -1174,7 +1343,7 @@ int OpenAudioDev( input_thread_t *p_input, char *psz_device )
     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
         || i_format != AFMT_S16_LE )
     {
-        msg_Err( p_input, "cannot set audio format (16b little endian) "
+        msg_Err( p_demux, "cannot set audio format (16b little endian) "
                  "(%s)", strerror( errno ) );
         goto adev_fail;
     }
@@ -1182,7 +1351,7 @@ int OpenAudioDev( input_thread_t *p_input, char *psz_device )
     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
                &p_sys->b_stereo ) < 0 )
     {
-        msg_Err( p_input, "cannot set audio channels count (%s)",
+        msg_Err( p_demux, "cannot set audio channels count (%s)",
                  strerror( errno ) );
         goto adev_fail;
     }
@@ -1190,18 +1359,16 @@ int OpenAudioDev( input_thread_t *p_input, char *psz_device )
     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
                &p_sys->i_sample_rate ) < 0 )
     {
-        msg_Err( p_input, "cannot set audio sample rate (%s)",
+        msg_Err( p_demux, "cannot set audio sample rate (%s)",
                  strerror( errno ) );
         goto adev_fail;
     }
 
-    msg_Dbg( p_input, "openened adev=`%s' %s %dHz",
+    msg_Dbg( p_demux, "openened adev=`%s' %s %dHz",
              psz_device, p_sys->b_stereo ? "stereo" : "mono",
              p_sys->i_sample_rate );
 
-    p_sys->i_audio_frame_size = 0;
-    p_sys->i_audio_frame_size_allocated = 6*1024;
-    p_sys->p_audio_frame = malloc( p_sys->i_audio_frame_size_allocated );
+    p_sys->i_audio_max_frame_size = 6 * 1024;
 
     return i_fd;
 
@@ -1212,84 +1379,54 @@ int OpenAudioDev( input_thread_t *p_input, char *psz_device )
 }
 
 /*****************************************************************************
- * AccessClose: close device, free resources
+ * GrabAudio: grab audio
  *****************************************************************************/
-static void AccessClose( vlc_object_t *p_this )
+static block_t *GrabAudio( demux_t *p_demux )
 {
-    input_thread_t *p_input = (input_thread_t *)p_this;
-    access_sys_t   *p_sys   = p_input->p_access_data;
-
-    if( p_sys->psz_device ) free( p_sys->psz_device );
-    if( p_sys->psz_vdev )   free( p_sys->psz_vdev );
-    if( p_sys->psz_adev )   free( p_sys->psz_adev );
-    if( p_sys->fd_video >= 0 ) close( p_sys->fd_video );
-    if( p_sys->fd_audio >= 0 ) close( p_sys->fd_audio );
-
-    if( p_sys->p_header ) free( p_sys->p_header );
-    if( p_sys->p_audio_frame ) free( p_sys->p_audio_frame );
+    demux_sys_t *p_sys = p_demux->p_sys;
+    struct audio_buf_info buf_info;
+    int i_read, i_correct;
+    block_t *p_block;
 
-    if( p_sys->b_mjpeg )
-    {
-        int i_noframe = -1;
-        ioctl( p_sys->fd_video, MJPIOC_QBUF_CAPT, &i_noframe );
-    }
+    if( p_sys->p_block_audio ) p_block = p_sys->p_block_audio;
+    else p_block = block_New( p_demux, p_sys->i_audio_max_frame_size );
 
-    if( p_sys->p_video_mmap && p_sys->p_video_mmap != MAP_FAILED )
+    if( !p_block )
     {
-        if( p_sys->b_mjpeg )
-            munmap( p_sys->p_video_mmap, p_sys->mjpeg_buffers.size *
-                    p_sys->mjpeg_buffers.count );
-        else
-            munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size );
+        msg_Warn( p_demux, "cannot get block" );
+        return 0;
     }
 
-    free( p_sys );
-}
-
-/*****************************************************************************
- * GrabAudio: grab audio
- *****************************************************************************/
-static int GrabAudio( input_thread_t * p_input,
-                      uint8_t **pp_data,
-                      int      *pi_data,
-                      mtime_t  *pi_pts )
-{
-    access_sys_t    *p_sys   = p_input->p_access_data;
-    struct audio_buf_info buf_info;
-    int i_read;
-    int i_correct;
+    p_sys->p_block_audio = p_block;
 
-    i_read = read( p_sys->fd_audio, p_sys->p_audio_frame,
-                   p_sys->i_audio_frame_size_allocated );
+    i_read = read( p_sys->fd_audio, p_block->p_buffer,
+                   p_sys->i_audio_max_frame_size );
 
-    if( i_read <= 0 )
-    {
-        return VLC_EGENERIC;
-    }
+    if( i_read <= 0 ) return 0;
 
-    p_sys->i_audio_frame_size = i_read;
+    p_block->i_buffer = i_read;
+    p_sys->p_block_audio = 0;
 
-    /* from vls : correct the date because of kernel buffering */
+    /* Correct the date because of kernel buffering */
     i_correct = i_read;
     if( ioctl( p_sys->fd_audio, SNDCTL_DSP_GETISPACE, &buf_info ) == 0 )
     {
         i_correct += buf_info.bytes;
     }
 
+    p_block->i_pts = p_block->i_dts =
+        mdate() - I64C(1000000) * (mtime_t)i_correct /
+        2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
 
-    *pp_data = p_sys->p_audio_frame;
-    *pi_data = p_sys->i_audio_frame_size;
-    *pi_pts  = mdate() - (mtime_t)1000000 * (mtime_t)i_correct /
-                         2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
-    return VLC_SUCCESS;
+    return p_block;
 }
 
 /*****************************************************************************
  * GrabVideo:
  *****************************************************************************/
-static uint8_t *GrabCapture( input_thread_t *p_input )
+static uint8_t *GrabCapture( demux_t *p_demux )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     int i_captured_frame = p_sys->i_frame_pos;
 
     p_sys->vid_mmap.frame = (p_sys->i_frame_pos + 1) % p_sys->vid_mbuf.frames;
@@ -1298,23 +1435,23 @@ static uint8_t *GrabCapture( input_thread_t *p_input )
     {
         if( errno != EAGAIN )
         {
-            msg_Err( p_input, "failed capturing new frame" );
+            msg_Err( p_demux, "failed capturing new frame" );
             return NULL;
         }
 
-        if( p_input->b_die )
+        if( p_demux->b_die )
         {
             return NULL;
         }
 
-        msg_Dbg( p_input, "grab failed, trying again" );
+        msg_Dbg( p_demux, "grab failed, trying again" );
     }
 
     while( ioctl(p_sys->fd_video, VIDIOCSYNC, &p_sys->i_frame_pos) < 0 )
     {
         if( errno != EAGAIN && errno != EINTR )    
         {
-            msg_Err( p_input, "failed syncing new frame" );
+            msg_Err( p_demux, "failed syncing new frame" );
             return NULL;
         }
     }
@@ -1324,9 +1461,9 @@ static uint8_t *GrabCapture( input_thread_t *p_input )
     return p_sys->p_video_mmap + p_sys->vid_mbuf.offsets[i_captured_frame];
 }
 
-static uint8_t *GrabMJPEG( input_thread_t *p_input )
+static uint8_t *GrabMJPEG( demux_t *p_demux )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     struct mjpeg_sync sync;
     uint8_t *p_frame, *p_field, *p;
     uint16_t tag;
@@ -1339,9 +1476,9 @@ static uint8_t *GrabMJPEG( input_thread_t *p_input )
         while( ioctl( p_sys->fd_video, MJPIOC_QBUF_CAPT,
                                        &p_sys->i_frame_pos ) < 0 )
         {
-            if( errno != EAGAIN && errno != EINTR )    
+            if( errno != EAGAIN && errno != EINTR )
             {
-                msg_Err( p_input, "failed capturing new frame" );
+                msg_Err( p_demux, "failed capturing new frame" );
                 return NULL;
             }
         }
@@ -1352,7 +1489,7 @@ static uint8_t *GrabMJPEG( input_thread_t *p_input )
     {
         if( errno != EAGAIN && errno != EINTR )    
         {
-            msg_Err( p_input, "failed syncing new frame" );
+            msg_Err( p_demux, "failed syncing new frame" );
             return NULL;
         }
     }
@@ -1426,313 +1563,33 @@ static uint8_t *GrabMJPEG( input_thread_t *p_input )
     return p_frame;
 }
 
-static int GrabVideo( input_thread_t * p_input,
-                      uint8_t **pp_data,
-                      int *pi_data,
-                      mtime_t  *pi_pts )
+static block_t *GrabVideo( demux_t *p_demux )
 {
-    access_sys_t *p_sys   = p_input->p_access_data;
-    uint8_t      *p_frame;
-
+    demux_sys_t *p_sys = p_demux->p_sys;
+    uint8_t     *p_frame;
+    block_t     *p_block;
 
     if( p_sys->f_fps >= 0.1 && p_sys->i_video_pts > 0 )
     {
         mtime_t i_dur = (mtime_t)((double)1000000 / (double)p_sys->f_fps);
 
-        /* Did we wait long enougth ? */
-        if( p_sys->i_video_pts + i_dur > mdate() )
-        {
-            return VLC_ETIMEOUT;
-        }
+        /* Did we wait long enough ? (frame rate reduction) */
+        if( p_sys->i_video_pts + i_dur > mdate() ) return 0;
     }
 
-    if( p_sys->b_mjpeg )
-        p_frame = GrabMJPEG( p_input );
-    else
-        p_frame = GrabCapture( p_input );
+    if( p_sys->b_mjpeg ) p_frame = GrabMJPEG( p_demux );
+    else p_frame = GrabCapture( p_demux );
 
-    if( !p_frame )
-        return VLC_EGENERIC;
-
-    p_sys->i_video_pts   = mdate();
-    p_sys->p_video_frame = p_frame;
-
-    *pp_data = p_sys->p_video_frame;
-    *pi_data = p_sys->i_video_frame_size;
-    *pi_pts  = p_sys->i_video_pts;
-
-    return VLC_SUCCESS;
-}
-
-/*****************************************************************************
- * Read: reads from the device into PES packets.
- *****************************************************************************
- * Returns -1 in case of error, 0 in case of EOF, otherwise the number of
- * bytes.
- *****************************************************************************/
-static int Read( input_thread_t * p_input, byte_t * p_buffer, size_t i_len )
-{
-    access_sys_t *p_sys = p_input->p_access_data;
-    int          i_data = 0;
-    int          i_stream;
-    mtime_t      i_pts;
+    if( !p_frame ) return 0;
 
-    while( i_len > 0 )
+    if( !( p_block = block_New( p_demux, p_sys->i_video_frame_size ) ) )
     {
-        /* First copy header if any */
-        if( p_sys->i_header_pos < p_sys->i_header_size )
-        {
-            int i_copy;
-
-            i_copy = __MIN( p_sys->i_header_size - p_sys->i_header_pos,
-                            (int)i_len );
-            memcpy( p_buffer, &p_sys->p_header[p_sys->i_header_pos], i_copy );
-            p_sys->i_header_pos += i_copy;
-
-            p_buffer += i_copy;
-            i_len -= i_copy;
-            i_data += i_copy;
-        }
-
-        /* then data */
-        if( i_len > 0 && p_sys->i_data_pos < p_sys->i_data_size )
-        {
-            int i_copy;
-
-            i_copy = __MIN( p_sys->i_data_size - p_sys->i_data_pos,
-                            (int)i_len );
-
-            memcpy( p_buffer, &p_sys->p_data[p_sys->i_data_pos], i_copy );
-            p_sys->i_data_pos += i_copy;
-
-            p_buffer += i_copy;
-            i_len -= i_copy;
-            i_data += i_copy;
-        }
-
-        /* The caller got what he wanted */
-        if( i_len == 0 )
-        {
-            return i_data;
-        }
-
-        /* Read no more than one frame at a time.
-         * That kills latency, especially for encoded v4l streams */
-        if( p_sys->i_data_size && p_sys->i_data_pos == p_sys->i_data_size )
-        {
-            p_sys->i_data_pos = 0; p_sys->i_data_size = 0;
-            return i_data;
-        }
-
-        /* Re-fill data by grabbing audio/video */
-        p_sys->i_data_pos = p_sys->i_data_size = 0;
-
-        /* Try grabbing audio frames first */
-        i_stream = p_sys->i_streams - 1;
-        if( p_sys->fd_audio < 0 ||
-            GrabAudio( p_input, &p_sys->p_data,
-                       &p_sys->i_data_size, &i_pts ) != VLC_SUCCESS )
-        {
-            int i_ret = VLC_ETIMEOUT;
-
-            /* Try grabbing video frame */
-            i_stream = 0;
-            if( p_sys->fd_video > 0 )
-            {
-                i_ret = GrabVideo( p_input, &p_sys->p_data,
-                                   &p_sys->i_data_size, &i_pts );
-            }
-
-            /* No video or timeout */
-            if( i_ret == VLC_ETIMEOUT )
-            {
-                /* Sleep so we do not consume all the cpu, 10ms seems
-                 * like a good value (100fps) */
-                msleep( 10000 );
-                continue;
-            }
-            else if( i_ret != VLC_SUCCESS )
-            {
-                msg_Err( p_input, "Error during capture!" );
-                return -1;
-            }
-        }
-
-        /* create pseudo header */
-        p_sys->i_header_size = 16;
-        p_sys->i_header_pos  = 0;
-        SetDWBE( &p_sys->p_header[0], i_stream );
-        SetDWBE( &p_sys->p_header[4], p_sys->i_data_size );
-        SetQWBE( &p_sys->p_header[8], i_pts );
-    }
-
-    return i_data;
-}
-
-
-
-/*****************************************************************************
- * Demux: local prototypes
- *****************************************************************************/
-struct demux_sys_t
-{
-    int         i_es;
-    es_out_id_t **es;
-};
-
-static int  Demux      ( input_thread_t * );
-
-/****************************************************************************
- * DemuxOpen:
- ****************************************************************************/
-static int DemuxOpen( vlc_object_t *p_this )
-{
-    input_thread_t *p_input = (input_thread_t *)p_this;
-    demux_sys_t    *p_sys;
-
-    uint8_t        *p_peek;
-    int            i_es;
-    int            i;
-
-    /* a little test to see if it's a v4l stream */
-    if( stream_Peek( p_input->s, &p_peek, 8 ) < 8 )
-    {
-        return VLC_EGENERIC;
-    }
-
-    if( strncmp( p_peek, ".v4l", 4 ) || ( i_es = GetDWBE( &p_peek[4] ) ) <= 0 )
-    {
-        return VLC_EGENERIC;
-    }
-
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    if( input_InitStream( p_input, 0 ) == -1)
-    {
-        vlc_mutex_unlock( &p_input->stream.stream_lock );
-        msg_Err( p_input, "cannot init stream" );
-        return VLC_EGENERIC;
-    }
-    p_input->stream.i_mux_rate =  0 / 50;
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    p_input->pf_demux = Demux;
-    p_input->pf_demux_control = demux_vaControlDefault;
-    p_input->p_demux_data = p_sys = malloc( sizeof( demux_sys_t ) );
-    p_sys->i_es = 0;
-    p_sys->es   = NULL;
-
-    if( stream_Peek( p_input->s, &p_peek, 8 + 20 * i_es ) < 8 + 20 * i_es )
-    {
-        msg_Err( p_input, "v4l plugin discarded (cannot peek)" );
-        return VLC_EGENERIC;
-    }
-    p_peek += 8;
-
-    for( i = 0; i < i_es; i++ )
-    {
-        es_format_t fmt;
-
-        if( !strncmp( p_peek, "auds", 4 ) )
-        {
-            es_format_Init( &fmt, AUDIO_ES,
-                VLC_FOURCC( p_peek[4], p_peek[5], p_peek[6], p_peek[7] ) );
-
-            fmt.audio.i_channels = GetDWBE( &p_peek[8] );
-            fmt.audio.i_rate = GetDWBE( &p_peek[12] );
-            fmt.audio.i_bitspersample = GetDWBE( &p_peek[16] );
-            fmt.audio.i_blockalign = fmt.audio.i_channels *
-                                     fmt.audio.i_bitspersample / 8;
-            fmt.i_bitrate = fmt.audio.i_channels *
-                            fmt.audio.i_rate *
-                            fmt.audio.i_bitspersample;
-
-            msg_Dbg( p_input, "new audio es %d channels %dHz",
-                     fmt.audio.i_channels, fmt.audio.i_rate );
-
-            TAB_APPEND( p_sys->i_es, p_sys->es,
-                        es_out_Add( p_input->p_es_out, &fmt ) );
-        }
-        else if( !strncmp( p_peek, "vids", 4 ) )
-        {
-            es_format_Init( &fmt, VIDEO_ES, VLC_FOURCC( p_peek[4], p_peek[5],
-                            p_peek[6], p_peek[7] ) );
-            fmt.video.i_width  = GetDWBE( &p_peek[8] );
-            fmt.video.i_height = GetDWBE( &p_peek[12] );
-
-            msg_Dbg( p_input, "added new video es %4.4s %dx%d",
-                     (char*)&fmt.i_codec,
-                     fmt.video.i_width, fmt.video.i_height );
-            TAB_APPEND( p_sys->i_es, p_sys->es,
-                        es_out_Add( p_input->p_es_out, &fmt ) );
-        }
-
-        p_peek += 20;
-    }
-
-    /* Skip header */
-    stream_Read( p_input->s, NULL, 8 + 20 * i_es );
-
-    return VLC_SUCCESS;
-}
-
-/****************************************************************************
- * DemuxClose:
- ****************************************************************************/
-static void DemuxClose( vlc_object_t *p_this )
-{
-    input_thread_t *p_input = (input_thread_t *)p_this;
-    demux_sys_t    *p_sys = p_input->p_demux_data;
-
-    if( p_sys->i_es > 0 )
-    {
-        free( p_sys->es );
-    }
-    free( p_sys );
-}
-
-/****************************************************************************
- * Demux:
- ****************************************************************************/
-static int Demux( input_thread_t *p_input )
-{
-    demux_sys_t *p_sys = p_input->p_demux_data;
-    block_t     *p_block;
-
-    int i_es;
-    int i_size;
-
-    uint8_t *p_peek;
-    mtime_t i_pts;
-
-    if( stream_Peek( p_input->s, &p_peek, 16 ) < 16 )
-    {
-        msg_Warn( p_input, "cannot peek (EOF ?)" );
-        return 0;
-    }
-
-    i_es   = GetDWBE( &p_peek[0] );
-    if( i_es < 0 || i_es >= p_sys->i_es )
-    {
-        msg_Err( p_input, "cannot find ES" );
-        return -1;
-    }
-
-    i_size = GetDWBE( &p_peek[4] );
-    i_pts  = GetQWBE( &p_peek[8] );
-
-    if( ( p_block = stream_Block( p_input->s, 16 + i_size ) ) == NULL )
-    {
-        msg_Warn( p_input, "cannot read data" );
+        msg_Warn( p_demux, "cannot get block" );
         return 0;
     }
 
-    p_block->p_buffer += 16;
-    p_block->i_buffer -= 16;
-
-    p_block->i_dts =
-    p_block->i_pts = i_pts + p_input->i_pts_delay;
+    memcpy( p_block->p_buffer, p_frame, p_sys->i_video_frame_size );
+    p_sys->i_video_pts = p_block->i_pts = p_block->i_dts = mdate();
 
-    es_out_Send( p_input->p_es_out, p_sys->es[i_es], p_block );
-
-    return 1;
+    return p_block;
 }