v4l.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:44k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * v4l.c : Video4Linux input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 the VideoLAN team
  5.  * $Id: c15e4de49bc3863892100fb5ec1710a5fdc43df7 $
  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.  * Preamble
  28.  *****************************************************************************/
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_common.h>
  33. #include <vlc_plugin.h>
  34. #include <vlc_input.h>
  35. #include <vlc_demux.h>
  36. #include <vlc_access.h>
  37. #include <vlc_vout.h>
  38. #include <vlc_charset.h>
  39. #include <sys/ioctl.h>
  40. #include <sys/mman.h>
  41. #include <fcntl.h>
  42. #include <arpa/inet.h>
  43. /* From GStreamer's v4l plugin:
  44.  * Because of some really cool feature in video4linux1, also known as
  45.  * 'not including sys/types.h and sys/time.h', we had to include it
  46.  * ourselves. In all their intelligence, these people decided to fix
  47.  * this in the next version (video4linux2) in such a cool way that it
  48.  * breaks all compilations of old stuff...
  49.  * The real problem is actually that linux/time.h doesn't use proper
  50.  * macro checks before defining types like struct timeval. The proper
  51.  * fix here is to either fuck the kernel header (which is what we do
  52.  * by defining _LINUX_TIME_H, an innocent little hack) or by fixing it
  53.  * upstream, which I'll consider doing later on. If you get compiler
  54.  * errors here, check your linux/time.h && sys/time.h header setup.
  55. */
  56. #define _LINUX_TIME_H
  57. #include <linux/videodev.h>
  58. #include "videodev_mjpeg.h"
  59. /*****************************************************************************
  60.  * Module descriptior
  61.  *****************************************************************************/
  62. static int  Open ( vlc_object_t * );
  63. static void Close( vlc_object_t * );
  64. #define CACHING_TEXT N_("Caching value in ms")
  65. #define CACHING_LONGTEXT N_( 
  66.     "Caching value for V4L captures. This " 
  67.     "value should be set in milliseconds." )
  68. #define VDEV_TEXT N_("Video device name")
  69. #define VDEV_LONGTEXT N_( 
  70.     "Name of the video device to use. " 
  71.     "If you don't specify anything, no video device will be used.")
  72. #define CHROMA_TEXT N_("Video input chroma format")
  73. #define CHROMA_LONGTEXT N_( 
  74.     "Force the Video4Linux video device to use a specific chroma format " 
  75.     "(eg. I420 (default), RV24, etc.)")
  76. #define FREQUENCY_TEXT N_( "Frequency" )
  77. #define FREQUENCY_LONGTEXT N_( 
  78.     "Frequency to capture (in kHz), if applicable." )
  79. #define CHANNEL_TEXT N_( "Channel" )
  80. #define CHANNEL_LONGTEXT N_( 
  81.     "Channel of the card to use (Usually, 0 = tuner, " 
  82.     "1 = composite, 2 = svideo)." )
  83. #define NORM_TEXT N_( "Norm" )
  84. #define NORM_LONGTEXT N_( 
  85.     "Norm of the stream (Automatic, SECAM, PAL, or NTSC)." )
  86. #define AUDIO_TEXT N_( "Audio Channel" )
  87. #define AUDIO_LONGTEXT N_( 
  88.     "Audio Channel to use, if there are several audio inputs." )
  89. #define WIDTH_TEXT N_( "Width" )
  90. #define WIDTH_LONGTEXT N_( "Width of the stream to capture " 
  91.     "(-1 for autodetect)." )
  92. #define HEIGHT_TEXT N_( "Height" )
  93. #define HEIGHT_LONGTEXT N_( "Height of the stream to capture " 
  94.     "(-1 for autodetect)." )
  95. #define BRIGHTNESS_TEXT N_( "Brightness" )
  96. #define BRIGHTNESS_LONGTEXT N_( 
  97.     "Brightness of the video input." )
  98. #define HUE_TEXT N_( "Hue" )
  99. #define HUE_LONGTEXT N_( 
  100.     "Hue of the video input." )
  101. #define COLOUR_TEXT N_( "Color" )
  102. #define COLOUR_LONGTEXT N_( 
  103.     "Color of the video input." )
  104. #define CONTRAST_TEXT N_( "Contrast" )
  105. #define CONTRAST_LONGTEXT N_( 
  106.     "Contrast of the video input." )
  107. #define TUNER_TEXT N_( "Tuner" )
  108. #define TUNER_LONGTEXT N_( "Tuner to use, if there are several ones." )
  109. #define MJPEG_TEXT N_( "MJPEG" )
  110. #define MJPEG_LONGTEXT N_(  
  111.     "Set this option if the capture device outputs MJPEG" )
  112. #define DECIMATION_TEXT N_( "Decimation" )
  113. #define DECIMATION_LONGTEXT N_( 
  114.     "Decimation level for MJPEG streams" )
  115. #define QUALITY_TEXT N_( "Quality" )
  116. #define QUALITY_LONGTEXT N_( "Quality of the stream." )
  117. #define FPS_TEXT N_( "Framerate" )
  118. #define FPS_LONGTEXT N_( "Framerate to capture, if applicable " 
  119.     "(-1 for autodetect)." )
  120. #define AUDIO_DEPRECATED_ERROR N_( 
  121.     "Alsa or OSS audio capture in the v4l access is deprecated. " 
  122.     "please use 'v4l:/""/ :input-slave=alsa:/""/' or " 
  123.     "'v4l:/""/ :input-slave=oss:/""/' instead." )
  124. static const int i_norm_list[] =
  125.     { VIDEO_MODE_AUTO, VIDEO_MODE_SECAM, VIDEO_MODE_PAL, VIDEO_MODE_NTSC };
  126. static const char *const psz_norm_list_text[] =
  127.     { N_("Automatic"), N_("SECAM"), N_("PAL"),  N_("NTSC") };
  128. #define V4L_DEFAULT "/dev/video"
  129. vlc_module_begin ()
  130.     set_shortname( N_("Video4Linux") )
  131.     set_description( N_("Video4Linux input") )
  132.     set_category( CAT_INPUT )
  133.     set_subcategory( SUBCAT_INPUT_ACCESS )
  134.     add_integer( "v4l-caching", DEFAULT_PTS_DELAY / 1000, NULL,
  135.                  CACHING_TEXT, CACHING_LONGTEXT, true )
  136.     add_obsolete_string( "v4l-vdev" );
  137.     add_obsolete_string( "v4l-adev" );
  138.     add_string( "v4l-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
  139.                 true )
  140.     add_float( "v4l-fps", -1.0, NULL, FPS_TEXT, FPS_LONGTEXT, true )
  141.     add_obsolete_integer( "v4l-samplerate" );
  142.     add_integer( "v4l-channel", 0, NULL, CHANNEL_TEXT, CHANNEL_LONGTEXT,
  143.                 true )
  144.     add_integer( "v4l-tuner", -1, NULL, TUNER_TEXT, TUNER_LONGTEXT, true )
  145.     add_integer( "v4l-norm", VIDEO_MODE_AUTO, NULL, NORM_TEXT, NORM_LONGTEXT,
  146.                 false )
  147.         change_integer_list( i_norm_list, psz_norm_list_text, NULL );
  148.     add_integer( "v4l-frequency", -1, NULL, FREQUENCY_TEXT, FREQUENCY_LONGTEXT,
  149.                 false )
  150.     add_integer( "v4l-audio", -1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, true )
  151.     add_obsolete_bool( "v4l-stereo" );
  152.     add_integer( "v4l-width", 0, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, true )
  153.     add_integer( "v4l-height", 0, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT,
  154.                 true )
  155.     add_integer( "v4l-brightness", -1, NULL, BRIGHTNESS_TEXT,
  156.                 BRIGHTNESS_LONGTEXT, true )
  157.     add_integer( "v4l-colour", -1, NULL, COLOUR_TEXT, COLOUR_LONGTEXT,
  158.                 true )
  159.     add_integer( "v4l-hue", -1, NULL, HUE_TEXT, HUE_LONGTEXT, true )
  160.     add_integer( "v4l-contrast", -1, NULL, CONTRAST_TEXT, CONTRAST_LONGTEXT,
  161.                 true )
  162.     add_bool( "v4l-mjpeg", false, NULL, MJPEG_TEXT, MJPEG_LONGTEXT,
  163.             true )
  164.     add_integer( "v4l-decimation", 1, NULL, DECIMATION_TEXT,
  165.             DECIMATION_LONGTEXT, true )
  166.     add_integer( "v4l-quality", 100, NULL, QUALITY_TEXT, QUALITY_LONGTEXT,
  167.             true )
  168.     add_shortcut( "v4l" )
  169.     set_capability( "access_demux", 10 )
  170.     set_callbacks( Open, Close )
  171. vlc_module_end ()
  172. /*****************************************************************************
  173.  * Access: local prototypes
  174.  *****************************************************************************/
  175. static int Demux  ( demux_t * );
  176. static int Control( demux_t *, int, va_list );
  177. static void ParseMRL    ( demux_t * );
  178. static int  OpenVideoDev( demux_t *, char * );
  179. static block_t *GrabVideo( demux_t * );
  180. #define MJPEG_BUFFER_SIZE (256*1024)
  181. struct quicktime_mjpeg_app1
  182. {
  183.     uint32_t    i_reserved;             /* set to 0 */
  184.     uint32_t    i_tag;                  /* 'mjpg' */
  185.     uint32_t    i_field_size;           /* offset following EOI */
  186.     uint32_t    i_padded_field_size;    /* offset following EOI+pad */
  187.     uint32_t    i_next_field;           /* offset to next field */
  188.     uint32_t    i_DQT_offset;
  189.     uint32_t    i_DHT_offset;
  190.     uint32_t    i_SOF_offset;
  191.     uint32_t    i_SOS_offset;
  192.     uint32_t    i_data_offset;          /* following SOS marker data */
  193. };
  194. static const struct
  195. {
  196.     int i_v4l;
  197.     int i_fourcc;
  198. } v4lchroma_to_fourcc[] =
  199. {
  200.     { VIDEO_PALETTE_GREY, VLC_FOURCC( 'G', 'R', 'E', 'Y' ) },
  201.     { VIDEO_PALETTE_HI240, VLC_FOURCC( 'I', '2', '4', '0' ) },
  202.     { VIDEO_PALETTE_RGB565, VLC_FOURCC( 'R', 'V', '1', '6' ) },
  203.     { VIDEO_PALETTE_RGB555, VLC_FOURCC( 'R', 'V', '1', '5' ) },
  204.     { VIDEO_PALETTE_RGB24, VLC_FOURCC( 'R', 'V', '2', '4' ) },
  205.     { VIDEO_PALETTE_RGB32, VLC_FOURCC( 'R', 'V', '3', '2' ) },
  206.     { VIDEO_PALETTE_YUV422, VLC_FOURCC( 'Y', 'U', 'Y', '2' ) },
  207.     { VIDEO_PALETTE_YUV422, VLC_FOURCC( 'Y', 'U', 'Y', 'V' ) },
  208.     { VIDEO_PALETTE_YUYV, VLC_FOURCC( 'Y', 'U', 'Y', '2' ) },
  209.     { VIDEO_PALETTE_YUYV, VLC_FOURCC( 'Y', 'U', 'Y', 'V' ) },
  210.     { VIDEO_PALETTE_UYVY, VLC_FOURCC( 'U', 'Y', 'V', 'Y' ) },
  211.     { VIDEO_PALETTE_YUV420, VLC_FOURCC( 'I', '4', '2', 'N' ) },
  212.     { VIDEO_PALETTE_YUV411, VLC_FOURCC( 'I', '4', '1', 'N' ) },
  213.     { VIDEO_PALETTE_RAW, VLC_FOURCC( 'G', 'R', 'A', 'W' ) },
  214.     { VIDEO_PALETTE_YUV422P, VLC_FOURCC( 'I', '4', '2', '2' ) },
  215.     { VIDEO_PALETTE_YUV420P, VLC_FOURCC( 'I', '4', '2', '0' ) },
  216.     { VIDEO_PALETTE_YUV411P, VLC_FOURCC( 'I', '4', '1', '1' ) },
  217.     { 0, 0 }
  218. };
  219. struct demux_sys_t
  220. {
  221.     /* Devices */
  222.     char *psz_device;         /* Main device from MRL */
  223.     int  i_fd;
  224.     /* Video properties */
  225.     picture_t pic;
  226.     int i_fourcc;
  227.     int i_channel;
  228.     int i_audio;
  229.     int i_norm;
  230.     int i_tuner;
  231.     int i_frequency;
  232.     int i_width;
  233.     int i_height;
  234.     int i_brightness;
  235.     int i_hue;
  236.     int i_colour;
  237.     int i_contrast;
  238.     float f_fps;            /* <= 0.0 mean to grab at full rate */
  239.     mtime_t i_video_pts;    /* only used when f_fps > 0 */
  240.     bool b_mjpeg;
  241.     int i_decimation;
  242.     int i_quality;
  243.     struct video_capability vid_cap;
  244.     struct video_mbuf       vid_mbuf;
  245.     struct mjpeg_requestbuffers mjpeg_buffers;
  246.     uint8_t *p_video_mmap;
  247.     int     i_frame_pos;
  248.     struct video_mmap   vid_mmap;
  249.     struct video_picture vid_picture;
  250.     int          i_video_frame_size;
  251.     es_out_id_t  *p_es;
  252. };
  253. /*****************************************************************************
  254.  * Open: opens v4l device
  255.  *****************************************************************************
  256.  *
  257.  * url: <video device>::::
  258.  *
  259.  *****************************************************************************/
  260. static int Open( vlc_object_t *p_this )
  261. {
  262.     demux_t     *p_demux = (demux_t*)p_this;
  263.     demux_sys_t *p_sys;
  264.     /* Only when selected */
  265.     if( *p_demux->psz_access == '' )
  266.         return VLC_EGENERIC;
  267.     /* Set up p_demux */
  268.     p_demux->pf_demux = Demux;
  269.     p_demux->pf_control = Control;
  270.     p_demux->info.i_update = 0;
  271.     p_demux->info.i_title = 0;
  272.     p_demux->info.i_seekpoint = 0;
  273.     p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
  274.     if( !p_sys )
  275.         return VLC_ENOMEM;
  276.     p_sys->i_audio      = var_CreateGetInteger( p_demux, "v4l-audio" );
  277.     p_sys->i_channel    = var_CreateGetInteger( p_demux, "v4l-channel" );
  278.     p_sys->i_norm       = var_CreateGetInteger( p_demux, "v4l-norm" );
  279.     p_sys->i_tuner      = var_CreateGetInteger( p_demux, "v4l-tuner" );
  280.     p_sys->i_frequency  = var_CreateGetInteger( p_demux, "v4l-frequency" );
  281.     p_sys->f_fps        = var_CreateGetFloat( p_demux, "v4l-fps" );
  282.     p_sys->i_width      = var_CreateGetInteger( p_demux, "v4l-width" );
  283.     p_sys->i_height     = var_CreateGetInteger( p_demux, "v4l-height" );
  284.     p_sys->i_video_pts  = -1;
  285.     p_sys->i_brightness = var_CreateGetInteger( p_demux, "v4l-brightness" );
  286.     p_sys->i_hue        = var_CreateGetInteger( p_demux, "v4l-hue" );
  287.     p_sys->i_colour     = var_CreateGetInteger( p_demux, "v4l-colour" );
  288.     p_sys->i_contrast   = var_CreateGetInteger( p_demux, "v4l-contrast" );
  289.     p_sys->b_mjpeg      = var_CreateGetBool( p_demux, "v4l-mjpeg" );
  290.     p_sys->i_decimation = var_CreateGetInteger( p_demux, "v4l-decimation" );
  291.     p_sys->i_quality    = var_CreateGetInteger( p_demux, "v4l-quality" );
  292.     p_sys->psz_device = NULL;
  293.     p_sys->i_fd = -1;
  294.     p_sys->p_es = NULL;
  295.     ParseMRL( p_demux );
  296.     msg_Dbg( p_this, "opening device '%s'", p_sys->psz_device );
  297.     p_sys->i_fd = OpenVideoDev( p_demux, p_sys->psz_device );
  298.     if( p_sys->i_fd < 0 )
  299.     {
  300.         Close( p_this );
  301.         return VLC_EGENERIC;
  302.     }
  303.     msg_Dbg( p_demux, "v4l grabbing started" );
  304.     /* Declare elementary streams */
  305.     es_format_t fmt;
  306.     es_format_Init( &fmt, VIDEO_ES, p_sys->i_fourcc );
  307.     fmt.video.i_width  = p_sys->i_width;
  308.     fmt.video.i_height = p_sys->i_height;
  309.     fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
  310.     /* Setup rgb mask for RGB formats */
  311.     switch( p_sys->i_fourcc )
  312.     {
  313.         case VLC_FOURCC('R','V','1','5'):
  314.             fmt.video.i_rmask = 0x001f;
  315.             fmt.video.i_gmask = 0x03e0;
  316.             fmt.video.i_bmask = 0x7c00;
  317.             break;
  318.         case VLC_FOURCC('R','V','1','6'):
  319.             fmt.video.i_rmask = 0x001f;
  320.             fmt.video.i_gmask = 0x07e0;
  321.             fmt.video.i_bmask = 0xf800;
  322.             break;
  323.         case VLC_FOURCC('R','V','2','4'):
  324.         case VLC_FOURCC('R','V','3','2'):
  325.             fmt.video.i_rmask = 0x00ff0000;
  326.             fmt.video.i_gmask = 0x0000ff00;
  327.             fmt.video.i_bmask = 0x000000ff;
  328.             break;
  329.     }
  330.     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
  331.              (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
  332.     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
  333.     /* Update default_pts to a suitable value for access */
  334.     var_Create( p_demux, "v4l-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  335.     return VLC_SUCCESS;
  336. }
  337. /*****************************************************************************
  338.  * Close: close device, free resources
  339.  *****************************************************************************/
  340. static void Close( vlc_object_t *p_this )
  341. {
  342.     demux_t     *p_demux = (demux_t *)p_this;
  343.     demux_sys_t *p_sys   = p_demux->p_sys;
  344.     free( p_sys->psz_device );
  345.     if( p_sys->i_fd >= 0 ) close( p_sys->i_fd );
  346.     if( p_sys->b_mjpeg )
  347.     {
  348.         int i_noframe = -1;
  349.         ioctl( p_sys->i_fd, MJPIOC_QBUF_CAPT, &i_noframe );
  350.     }
  351.     if( p_sys->p_video_mmap && p_sys->p_video_mmap != MAP_FAILED )
  352.     {
  353.         if( p_sys->b_mjpeg )
  354.             munmap( p_sys->p_video_mmap, p_sys->mjpeg_buffers.size *
  355.                     p_sys->mjpeg_buffers.count );
  356.         else
  357.             munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size );
  358.     }
  359.     free( p_sys );
  360. }
  361. /*****************************************************************************
  362.  * Control:
  363.  *****************************************************************************/
  364. static int Control( demux_t *p_demux, int i_query, va_list args )
  365. {
  366.     bool *pb;
  367.     int64_t    *pi64;
  368.     switch( i_query )
  369.     {
  370.         /* Special for access_demux */
  371.         case DEMUX_CAN_PAUSE:
  372.         case DEMUX_CAN_SEEK:
  373.         case DEMUX_SET_PAUSE_STATE:
  374.         case DEMUX_CAN_CONTROL_PACE:
  375.             pb = (bool*)va_arg( args, bool * );
  376.             *pb = false;
  377.             return VLC_SUCCESS;
  378.         case DEMUX_GET_PTS_DELAY:
  379.             pi64 = (int64_t*)va_arg( args, int64_t * );
  380.             *pi64 = (int64_t)var_GetInteger( p_demux, "v4l-caching" ) * 1000;
  381.             return VLC_SUCCESS;
  382.         case DEMUX_GET_TIME:
  383.             pi64 = (int64_t*)va_arg( args, int64_t * );
  384.             *pi64 = mdate();
  385.             return VLC_SUCCESS;
  386.         /* TODO implement others */
  387.         default:
  388.             return VLC_EGENERIC;
  389.     }
  390.     return VLC_EGENERIC;
  391. }
  392. /*****************************************************************************
  393.  * Demux:
  394.  *****************************************************************************/
  395. static int Demux( demux_t *p_demux )
  396. {
  397.     demux_sys_t *p_sys = p_demux->p_sys;
  398.     block_t *p_block = GrabVideo( p_demux );
  399.     if( !p_block )
  400.     {
  401.         msleep( 10000 ); /* Unfortunately v4l doesn't allow polling */
  402.         return 1;
  403.     }
  404.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  405.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  406.     return 1;
  407. }
  408. /*****************************************************************************
  409.  * ParseMRL: parse the options contained in the MRL
  410.  *****************************************************************************/
  411. static void ParseMRL( demux_t *p_demux )
  412. {
  413.     demux_sys_t *p_sys = p_demux->p_sys;
  414.     char *psz_dup = strdup( p_demux->psz_path );
  415.     char *psz_parser = psz_dup;
  416.     while( *psz_parser && *psz_parser != ':' )
  417.     {
  418.         psz_parser++;
  419.     }
  420.     if( *psz_parser == ':' )
  421.     {
  422.         /* read options */
  423.         for( ;; )
  424.         {
  425.             *psz_parser++ = '';
  426.             if( !strncmp( psz_parser, "channel=", strlen( "channel=" ) ) )
  427.             {
  428.                 p_sys->i_channel = strtol( psz_parser + strlen( "channel=" ),
  429.                                            &psz_parser, 0 );
  430.             }
  431.             else if( !strncmp( psz_parser, "norm=", strlen( "norm=" ) ) )
  432.             {
  433.                 psz_parser += strlen( "norm=" );
  434.                 if( !strncmp( psz_parser, "pal", strlen( "pal" ) ) )
  435.                 {
  436.                     p_sys->i_norm = VIDEO_MODE_PAL;
  437.                     psz_parser += strlen( "pal" );
  438.                 }
  439.                 else if( !strncmp( psz_parser, "ntsc", strlen( "ntsc" ) ) )
  440.                 {
  441.                     p_sys->i_norm = VIDEO_MODE_NTSC;
  442.                     psz_parser += strlen( "ntsc" );
  443.                 }
  444.                 else if( !strncmp( psz_parser, "secam", strlen( "secam" ) ) )
  445.                 {
  446.                     p_sys->i_norm = VIDEO_MODE_SECAM;
  447.                     psz_parser += strlen( "secam" );
  448.                 }
  449.                 else if( !strncmp( psz_parser, "auto", strlen( "auto" ) ) )
  450.                 {
  451.                     p_sys->i_norm = VIDEO_MODE_AUTO;
  452.                     psz_parser += strlen( "auto" );
  453.                 }
  454.                 else
  455.                 {
  456.                     p_sys->i_norm = strtol( psz_parser, &psz_parser, 0 );
  457.                 }
  458.             }
  459.             else if( !strncmp( psz_parser, "frequency=",
  460.                                strlen( "frequency=" ) ) )
  461.             {
  462.                 p_sys->i_frequency =
  463.                     strtol( psz_parser + strlen( "frequency=" ),
  464.                             &psz_parser, 0 );
  465.                 if( p_sys->i_frequency < 30000 )
  466.                 {
  467.                     msg_Warn( p_demux, "v4l syntax has changed : "
  468.                               "'frequency' is now channel frequency in kHz");
  469.                 }
  470.             }
  471.             else if( !strncmp( psz_parser, "audio=", strlen( "audio=" ) ) )
  472.             {
  473.                 p_sys->i_audio = strtol( psz_parser + strlen( "audio=" ),
  474.                                          &psz_parser, 0 );
  475.             }
  476.             else if( !strncmp( psz_parser, "size=", strlen( "size=" ) ) )
  477.             {
  478.                 psz_parser += strlen( "size=" );
  479.                 if( !strncmp( psz_parser, "subqcif", strlen( "subqcif" ) ) )
  480.                 {
  481.                     p_sys->i_width  = 128;
  482.                     p_sys->i_height = 96;
  483.                 }
  484.                 else if( !strncmp( psz_parser, "qsif", strlen( "qsif" ) ) )
  485.                 {
  486.                     p_sys->i_width  = 160;
  487.                     p_sys->i_height = 120;
  488.                 }
  489.                 else if( !strncmp( psz_parser, "qcif", strlen( "qcif" ) ) )
  490.                 {
  491.                     p_sys->i_width  = 176;
  492.                     p_sys->i_height = 144;
  493.                 }
  494.                 else if( !strncmp( psz_parser, "sif", strlen( "sif" ) ) )
  495.                 {
  496.                     p_sys->i_width  = 320;
  497.                     p_sys->i_height = 244;
  498.                 }
  499.                 else if( !strncmp( psz_parser, "cif", strlen( "cif" ) ) )
  500.                 {
  501.                     p_sys->i_width  = 352;
  502.                     p_sys->i_height = 288;
  503.                 }
  504.                 else if( !strncmp( psz_parser, "vga", strlen( "vga" ) ) )
  505.                 {
  506.                     p_sys->i_width  = 640;
  507.                     p_sys->i_height = 480;
  508.                 }
  509.                 else
  510.                 {
  511.                     /* widthxheight */
  512.                     p_sys->i_width = strtol( psz_parser, &psz_parser, 0 );
  513.                     if( *psz_parser == 'x' || *psz_parser == 'X')
  514.                     {
  515.                         p_sys->i_height = strtol( psz_parser + 1,
  516.                                                   &psz_parser, 0 );
  517.                     }
  518.                     msg_Dbg( p_demux, "WxH %dx%d", p_sys->i_width,
  519.                              p_sys->i_height );
  520.                 }
  521.             }
  522.             else if( !strncmp( psz_parser, "brightness=", strlen( "brightness=" ) ) )
  523.             {
  524.                 p_sys->i_brightness = strtol( psz_parser + strlen( "brightness=" ),
  525.                                               &psz_parser, 0 );
  526.             }
  527.             else if( !strncmp( psz_parser, "colour=", strlen( "colour=" ) ) )
  528.             {
  529.                 p_sys->i_colour = strtol( psz_parser + strlen( "colour=" ),
  530.                                           &psz_parser, 0 );
  531.             }
  532.             else if( !strncmp( psz_parser, "hue=", strlen( "hue=" ) ) )
  533.             {
  534.                 p_sys->i_hue = strtol( psz_parser + strlen( "hue=" ),
  535.                                        &psz_parser, 0 );
  536.             }
  537.             else if( !strncmp( psz_parser, "contrast=", strlen( "contrast=" ) ) )
  538.             {
  539.                 p_sys->i_contrast = strtol( psz_parser + strlen( "contrast=" ),
  540.                                             &psz_parser, 0 );
  541.             }
  542.             else if( !strncmp( psz_parser, "tuner=", strlen( "tuner=" ) ) )
  543.             {
  544.                 p_sys->i_tuner = strtol( psz_parser + strlen( "tuner=" ),
  545.                                          &psz_parser, 0 );
  546.             }
  547.             else if( !strncmp( psz_parser, "mjpeg", strlen( "mjpeg" ) ) )
  548.             {
  549.                 psz_parser += strlen( "mjpeg" );
  550.                 p_sys->b_mjpeg = true;
  551.             }
  552.             else if( !strncmp( psz_parser, "decimation=",
  553.                         strlen( "decimation=" ) ) )
  554.             {
  555.                 p_sys->i_decimation =
  556.                     strtol( psz_parser + strlen( "decimation=" ),
  557.                             &psz_parser, 0 );
  558.             }
  559.             else if( !strncmp( psz_parser, "quality=",
  560.                         strlen( "quality=" ) ) )
  561.             {
  562.                 p_sys->i_quality =
  563.                     strtol( psz_parser + strlen( "quality=" ),
  564.                             &psz_parser, 0 );
  565.             }
  566.             else if( !strncmp( psz_parser, "fps=", strlen( "fps=" ) ) )
  567.             {
  568.                 p_sys->f_fps = us_strtof( psz_parser + strlen( "fps=" ),
  569.                                           &psz_parser );
  570.             }
  571.             else if( !strncmp( psz_parser, "adev=", strlen( "adev=" ) )
  572.              || !strncmp( psz_parser, "samplerate=", strlen( "samplerate=" ) )
  573.              || !strncmp( psz_parser, "stereo", strlen( "stereo" ) )
  574.              || !strncmp( psz_parser, "mono", strlen( "mono" ) ) )
  575.             {
  576.                 if( strchr( psz_parser, ':' ) )
  577.                     psz_parser = strchr( psz_parser, ':' );
  578.                 else
  579.                     psz_parser += strlen( psz_parser );
  580.                 msg_Err( p_demux, AUDIO_DEPRECATED_ERROR );
  581.             }
  582.             else
  583.             {
  584.                 msg_Warn( p_demux, "unknown option" );
  585.             }
  586.             while( *psz_parser && *psz_parser != ':' )
  587.             {
  588.                 psz_parser++;
  589.             }
  590.             if( *psz_parser == '' )
  591.             {
  592.                 break;
  593.             }
  594.         }
  595.     }
  596.     if( *psz_dup )
  597.         p_sys->psz_device = strdup( psz_dup );
  598.     else
  599.         p_sys->psz_device = strdup( V4L_DEFAULT );
  600.     free( psz_dup );
  601. }
  602. /*****************************************************************************
  603.  * OpenVideoDev:
  604.  *****************************************************************************/
  605. static int OpenVideoDev( demux_t *p_demux, char *psz_device )
  606. {
  607.     demux_sys_t *p_sys = p_demux->p_sys;
  608.     int i_fd;
  609.     struct video_channel vid_channel;
  610.     struct mjpeg_params mjpeg;
  611.     int i;
  612.     if( ( i_fd = open( psz_device, O_RDWR ) ) < 0 )
  613.     {
  614.         msg_Err( p_demux, "cannot open device (%m)" );
  615.         goto vdev_failed;
  616.     }
  617.     if( ioctl( i_fd, VIDIOCGCAP, &p_sys->vid_cap ) < 0 )
  618.     {
  619.         msg_Err( p_demux, "cannot get capabilities (%m)" );
  620.         goto vdev_failed;
  621.     }
  622.     msg_Dbg( p_demux,
  623.              "V4L device %s %d channels %d audios %d < w < %d %d < h < %d",
  624.              p_sys->vid_cap.name,
  625.              p_sys->vid_cap.channels,
  626.              p_sys->vid_cap.audios,
  627.              p_sys->vid_cap.minwidth,  p_sys->vid_cap.maxwidth,
  628.              p_sys->vid_cap.minheight, p_sys->vid_cap.maxheight );
  629.     if( p_sys->i_channel < 0 || p_sys->i_channel >= p_sys->vid_cap.channels )
  630.     {
  631.         msg_Dbg( p_demux, "invalid channel, falling back on channel 0" );
  632.         p_sys->i_channel = 0;
  633.     }
  634.     if( p_sys->vid_cap.audios && p_sys->i_audio >= p_sys->vid_cap.audios )
  635.     {
  636.         msg_Dbg( p_demux, "invalid audio, falling back with no audio" );
  637.         p_sys->i_audio = -1;
  638.     }
  639.     if( p_sys->i_width < p_sys->vid_cap.minwidth ||
  640.         p_sys->i_width > p_sys->vid_cap.maxwidth )
  641.     {
  642.         msg_Dbg( p_demux, "invalid width %i", p_sys->i_width );
  643.         p_sys->i_width = 0;
  644.     }
  645.     if( p_sys->i_height < p_sys->vid_cap.minheight ||
  646.         p_sys->i_height > p_sys->vid_cap.maxheight )
  647.     {
  648.         msg_Dbg( p_demux, "invalid height %i", p_sys->i_height );
  649.         p_sys->i_height = 0;
  650.     }
  651.     if( !( p_sys->vid_cap.type & VID_TYPE_CAPTURE ) )
  652.     {
  653.         msg_Err( p_demux, "cannot grab" );
  654.         goto vdev_failed;
  655.     }
  656.     vid_channel.channel = p_sys->i_channel;
  657.     if( ioctl( i_fd, VIDIOCGCHAN, &vid_channel ) < 0 )
  658.     {
  659.         msg_Err( p_demux, "cannot get channel infos (%m)" );
  660.         goto vdev_failed;
  661.     }
  662.     msg_Dbg( p_demux,
  663.              "setting channel %s(%d) %d tuners flags=0x%x type=0x%x norm=0x%x",
  664.              vid_channel.name, vid_channel.channel, vid_channel.tuners,
  665.              vid_channel.flags, vid_channel.type, vid_channel.norm );
  666.     if( p_sys->i_tuner >= vid_channel.tuners )
  667.     {
  668.         msg_Dbg( p_demux, "invalid tuner, falling back on tuner 0" );
  669.         p_sys->i_tuner = 0;
  670.     }
  671.     vid_channel.norm = p_sys->i_norm;
  672.     if( ioctl( i_fd, VIDIOCSCHAN, &vid_channel ) < 0 )
  673.     {
  674.         msg_Err( p_demux, "cannot set channel (%m)" );
  675.         goto vdev_failed;
  676.     }
  677.     if( vid_channel.flags & VIDEO_VC_TUNER )
  678.     {
  679.         /* set tuner */
  680. #if 0
  681.         struct video_tuner vid_tuner;
  682.         if( p_sys->i_tuner >= 0 )
  683.         {
  684.             vid_tuner.tuner = p_sys->i_tuner;
  685.             if( ioctl( i_fd, VIDIOCGTUNER, &vid_tuner ) < 0 )
  686.             {
  687.                 msg_Err( p_demux, "cannot get tuner (%m)" );
  688.                 goto vdev_failed;
  689.             }
  690.             msg_Dbg( p_demux, "tuner %s low=%d high=%d, flags=0x%x "
  691.                      "mode=0x%x signal=0x%x",
  692.                      vid_tuner.name, vid_tuner.rangelow, vid_tuner.rangehigh,
  693.                      vid_tuner.flags, vid_tuner.mode, vid_tuner.signal );
  694.             msg_Dbg( p_demux, "setting tuner %s (%d)",
  695.                      vid_tuner.name, vid_tuner.tuner );
  696.             /* FIXME FIXME to be checked FIXME FIXME */
  697.             //vid_tuner.mode = p_sys->i_norm;
  698.             if( ioctl( i_fd, VIDIOCSTUNER, &vid_tuner ) < 0 )
  699.             {
  700.                 msg_Err( p_demux, "cannot set tuner (%m)" );
  701.                 goto vdev_failed;
  702.             }
  703.         }
  704. #endif
  705.         /* Show a warning if frequency is < than 30000.
  706.          * User is certainly usint old syntax. */
  707.         /* set frequency */
  708.         if( p_sys->i_frequency >= 0 )
  709.         {
  710.             int driver_frequency = p_sys->i_frequency * 16 /1000;
  711.             if( ioctl( i_fd, VIDIOCSFREQ, &driver_frequency ) < 0 )
  712.             {
  713.                 msg_Err( p_demux, "cannot set frequency (%m)" );
  714.                 goto vdev_failed;
  715.             }
  716.             msg_Dbg( p_demux, "frequency %d (%d)", p_sys->i_frequency,
  717.                                                    driver_frequency );
  718.         }
  719.     }
  720.     /* set audio */
  721.     if( vid_channel.flags & VIDEO_VC_AUDIO )
  722.     {
  723.         struct video_audio      vid_audio;
  724.         /* XXX TODO volume, balance, ... */
  725.         if( p_sys->i_audio >= 0 )
  726.         {
  727.             vid_audio.audio = p_sys->i_audio;
  728.             if( ioctl( i_fd, VIDIOCGAUDIO, &vid_audio ) < 0 )
  729.             {
  730.                 msg_Err( p_demux, "cannot get audio (%m)" );
  731.                 goto vdev_failed;
  732.             }
  733.             /* unmute audio */
  734.             vid_audio.flags &= ~VIDEO_AUDIO_MUTE;
  735.             if( ioctl( i_fd, VIDIOCSAUDIO, &vid_audio ) < 0 )
  736.             {
  737.                 msg_Err( p_demux, "cannot set audio (%m)" );
  738.                 goto vdev_failed;
  739.             }
  740.         }
  741.     }
  742.     /* establish basic params with input and norm before feeling width
  743.      * or height */
  744.     if( p_sys->b_mjpeg )
  745.     {
  746.         struct quicktime_mjpeg_app1 *p_app1;
  747.         int32_t i_offset;
  748.         if( ioctl( i_fd, MJPIOC_G_PARAMS, &mjpeg ) < 0 )
  749.         {
  750.             msg_Err( p_demux, "cannot get mjpeg params (%m)" );
  751.             goto vdev_failed;
  752.         }
  753.         mjpeg.input = p_sys->i_channel;
  754.         mjpeg.norm  = p_sys->i_norm;
  755.         mjpeg.decimation = p_sys->i_decimation;
  756.         if( p_sys->i_width )
  757.             mjpeg.img_width = p_sys->i_width / p_sys->i_decimation;
  758.         if( p_sys->i_height )
  759.             mjpeg.img_height = p_sys->i_height / p_sys->i_decimation;
  760.         /* establish Quicktime APP1 marker while we are here */
  761.         mjpeg.APPn = 1;
  762.         mjpeg.APP_len = 40;
  763.         /* aligned */
  764.         p_app1 = (struct quicktime_mjpeg_app1 *)mjpeg.APP_data;
  765.         p_app1->i_reserved = 0;
  766.         p_app1->i_tag = VLC_FOURCC( 'm','j','p','g' );
  767.         p_app1->i_field_size = 0;
  768.         p_app1->i_padded_field_size = 0;
  769.         p_app1->i_next_field = 0;
  770.         /* XXX WARNING XXX */
  771.         /* these's nothing magic about these values.  We are dangerously
  772.          * assuming the encoder card is encoding mjpeg-a and is not throwing
  773.          * in marker tags we aren't expecting.  It's bad enough we have to
  774.          * search through the jpeg output for every frame we grab just to
  775.          * find the first field's end marker, so we take this risk to boost
  776.          * performance.
  777.          * This is really something the driver could do for us because this
  778.          * does conform to standards outside of Apple Quicktime.
  779.          */
  780.         i_offset = 0x2e;
  781.         p_app1->i_DQT_offset = hton32( i_offset );
  782.         i_offset = 0xb4;
  783.         p_app1->i_DHT_offset = hton32( i_offset );
  784.         i_offset = 0x258;
  785.         p_app1->i_SOF_offset = hton32( i_offset );
  786.         i_offset = 0x26b;
  787.         p_app1->i_SOS_offset = hton32( i_offset );
  788.         i_offset = 0x279;
  789.         p_app1->i_data_offset = hton32( i_offset );
  790.         /* SOF and SOS aren't specified by the mjpeg API because they aren't
  791.          * optional.  They will be present in the output. */
  792.         mjpeg.jpeg_markers = JPEG_MARKER_DHT | JPEG_MARKER_DQT;
  793.         if( ioctl( i_fd, MJPIOC_S_PARAMS, &mjpeg ) < 0 )
  794.         {
  795.             msg_Err( p_demux, "cannot set mjpeg params (%m)" );
  796.             goto vdev_failed;
  797.         }
  798.         p_sys->i_width = mjpeg.img_width * mjpeg.HorDcm;
  799.         p_sys->i_height = mjpeg.img_height * mjpeg.VerDcm *
  800.             mjpeg.field_per_buff;
  801.     }
  802.     /* fix width/height */
  803.     if( !p_sys->b_mjpeg && ( p_sys->i_width == 0 || p_sys->i_height == 0 ) )
  804.     {
  805.         struct video_window vid_win;
  806.         if( ioctl( i_fd, VIDIOCGWIN, &vid_win ) < 0 )
  807.         {
  808.             msg_Err( p_demux, "cannot get win (%m)" );
  809.             goto vdev_failed;
  810.         }
  811.         p_sys->i_width  = vid_win.width;
  812.         p_sys->i_height = vid_win.height;
  813.         if( !p_sys->i_width || !p_sys->i_height )
  814.         {
  815.             p_sys->i_width = p_sys->vid_cap.maxwidth;
  816.             p_sys->i_height = p_sys->vid_cap.maxheight;
  817.         }
  818.         if( !p_sys->i_width || !p_sys->i_height )
  819.         {
  820.             msg_Err( p_demux, "invalid video size (%ix%i)",
  821.                      p_sys->i_width, p_sys->i_height );
  822.             goto vdev_failed;
  823.         }
  824.         msg_Dbg( p_demux, "will use %dx%d", p_sys->i_width, p_sys->i_height );
  825.     }
  826.     if( !p_sys->b_mjpeg )
  827.     {
  828.         /* set hue/color/.. */
  829.         if( ioctl( i_fd, VIDIOCGPICT, &p_sys->vid_picture ) == 0 )
  830.         {
  831.             struct video_picture vid_picture = p_sys->vid_picture;
  832.             if( p_sys->i_brightness >= 0 && p_sys->i_brightness < 65536 )
  833.             {
  834.                 vid_picture.brightness = p_sys->i_brightness;
  835.             }
  836.             if( p_sys->i_colour >= 0 && p_sys->i_colour < 65536 )
  837.             {
  838.                 vid_picture.colour = p_sys->i_colour;
  839.             }
  840.             if( p_sys->i_hue >= 0 && p_sys->i_hue < 65536 )
  841.             {
  842.                 vid_picture.hue = p_sys->i_hue;
  843.             }
  844.             if( p_sys->i_contrast  >= 0 && p_sys->i_contrast < 65536 )
  845.             {
  846.                 vid_picture.contrast = p_sys->i_contrast;
  847.             }
  848.             if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
  849.             {
  850.                 msg_Dbg( p_demux, "v4l device uses brightness: %d",
  851.                          vid_picture.brightness );
  852.                 msg_Dbg( p_demux, "v4l device uses colour: %d",
  853.                          vid_picture.colour );
  854.                 msg_Dbg( p_demux, "v4l device uses hue: %d", vid_picture.hue );
  855.                 msg_Dbg( p_demux, "v4l device uses contrast: %d",
  856.                          vid_picture.contrast );
  857.                 p_sys->vid_picture = vid_picture;
  858.             }
  859.         }
  860.         /* Find out video format used by device */
  861.         if( ioctl( i_fd, VIDIOCGPICT, &p_sys->vid_picture ) == 0 )
  862.         {
  863.             struct video_picture vid_picture = p_sys->vid_picture;
  864.             char *psz;
  865.             int i;
  866.             p_sys->i_fourcc = 0;
  867.             psz = var_CreateGetString( p_demux, "v4l-chroma" );
  868.             if( strlen( psz ) >= 4 )
  869.             {
  870.                 vid_picture.palette = 0;
  871.                 int i_chroma = VLC_FOURCC( psz[0], psz[1], psz[2], psz[3] );
  872.                 /* Find out v4l chroma code */
  873.                 for( i = 0; v4lchroma_to_fourcc[i].i_v4l != 0; i++ )
  874.                 {
  875.                     if( v4lchroma_to_fourcc[i].i_fourcc == i_chroma )
  876.                     {
  877.                         vid_picture.palette = v4lchroma_to_fourcc[i].i_v4l;
  878.                         break;
  879.                     }
  880.                 }
  881.             }
  882.             free( psz );
  883.             if( vid_picture.palette &&
  884.                 !ioctl( i_fd, VIDIOCSPICT, &vid_picture ) )
  885.             {
  886.                 p_sys->vid_picture = vid_picture;
  887.             }
  888.             else
  889.             {
  890.                 /* Try to set the format to something easy to encode */
  891.                 vid_picture.palette = VIDEO_PALETTE_YUV420P;
  892.                 if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
  893.                 {
  894.                     p_sys->vid_picture = vid_picture;
  895.                 }
  896.                 else
  897.                 {
  898.                     vid_picture.palette = VIDEO_PALETTE_YUV422P;
  899.                     if( ioctl( i_fd, VIDIOCSPICT, &vid_picture ) == 0 )
  900.                     {
  901.                         p_sys->vid_picture = vid_picture;
  902.                     }
  903.                 }
  904.             }
  905.             /* Find out final format */
  906.             for( i = 0; v4lchroma_to_fourcc[i].i_v4l != 0; i++ )
  907.             {
  908.                 if( v4lchroma_to_fourcc[i].i_v4l == p_sys->vid_picture.palette)
  909.                 {
  910.                     p_sys->i_fourcc = v4lchroma_to_fourcc[i].i_fourcc;
  911.                     break;
  912.                 }
  913.             }
  914.         }
  915.         else
  916.         {
  917.             msg_Err( p_demux, "ioctl VIDIOCGPICT failed" );
  918.             goto vdev_failed;
  919.         }
  920.     }
  921.     if( p_sys->b_mjpeg )
  922.     {
  923.         int i;
  924.         p_sys->mjpeg_buffers.count = 8;
  925.         p_sys->mjpeg_buffers.size = MJPEG_BUFFER_SIZE;
  926.         if( ioctl( i_fd, MJPIOC_REQBUFS, &p_sys->mjpeg_buffers ) < 0 )
  927.         {
  928.             msg_Err( p_demux, "mmap unsupported" );
  929.             goto vdev_failed;
  930.         }
  931.         p_sys->p_video_mmap = mmap( 0,
  932.                 p_sys->mjpeg_buffers.size * p_sys->mjpeg_buffers.count,
  933.                 PROT_READ | PROT_WRITE, MAP_SHARED, i_fd, 0 );
  934.         if( p_sys->p_video_mmap == MAP_FAILED )
  935.         {
  936.             msg_Err( p_demux, "mmap failed" );
  937.             goto vdev_failed;
  938.         }
  939.         p_sys->i_fourcc  = VLC_FOURCC( 'm','j','p','g' );
  940.         p_sys->i_frame_pos = -1;
  941.         /* queue up all the frames */
  942.         for( i = 0; i < (int)p_sys->mjpeg_buffers.count; i++ )
  943.         {
  944.             if( ioctl( i_fd, MJPIOC_QBUF_CAPT, &i ) < 0 )
  945.             {
  946.                 msg_Err( p_demux, "unable to queue frame" );
  947.                 goto vdev_failed;
  948.             }
  949.         }
  950.     }
  951.     else
  952.     {
  953.         /* Fill in picture_t fields */
  954.         vout_InitPicture( VLC_OBJECT(p_demux), &p_sys->pic, p_sys->i_fourcc,
  955.                           p_sys->i_width, p_sys->i_height, p_sys->i_width *
  956.                           VOUT_ASPECT_FACTOR / p_sys->i_height );
  957.         if( !p_sys->pic.i_planes )
  958.         {
  959.             msg_Err( p_demux, "unsupported chroma" );
  960.             goto vdev_failed;
  961.         }
  962.         p_sys->i_video_frame_size = 0;
  963.         for( i = 0; i < p_sys->pic.i_planes; i++ )
  964.         {
  965.             p_sys->i_video_frame_size += p_sys->pic.p[i].i_visible_lines *
  966.               p_sys->pic.p[i].i_visible_pitch;
  967.         }
  968.         msg_Dbg( p_demux, "v4l device uses frame size: %i",
  969.                  p_sys->i_video_frame_size );
  970.         msg_Dbg( p_demux, "v4l device uses chroma: %4.4s",
  971.                 (char*)&p_sys->i_fourcc );
  972.         /* Allocate mmap buffer */
  973.         if( ioctl( i_fd, VIDIOCGMBUF, &p_sys->vid_mbuf ) < 0 )
  974.         {
  975.             msg_Err( p_demux, "mmap unsupported" );
  976.             goto vdev_failed;
  977.         }
  978.         p_sys->p_video_mmap = mmap( 0, p_sys->vid_mbuf.size,
  979.                                     PROT_READ|PROT_WRITE, MAP_SHARED,
  980.                                     i_fd, 0 );
  981.         if( p_sys->p_video_mmap == MAP_FAILED )
  982.         {
  983.             /* FIXME -> normal read */
  984.             msg_Err( p_demux, "mmap failed" );
  985.             goto vdev_failed;
  986.         }
  987.         /* init grabbing */
  988.         p_sys->vid_mmap.frame  = 0;
  989.         p_sys->vid_mmap.width  = p_sys->i_width;
  990.         p_sys->vid_mmap.height = p_sys->i_height;
  991.         p_sys->vid_mmap.format = p_sys->vid_picture.palette;
  992.         if( ioctl( i_fd, VIDIOCMCAPTURE, &p_sys->vid_mmap ) < 0 )
  993.         {
  994.             msg_Warn( p_demux, "%4.4s refused", (char*)&p_sys->i_fourcc );
  995.             msg_Err( p_demux, "chroma selection failed" );
  996.             goto vdev_failed;
  997.         }
  998.     }
  999.     return i_fd;
  1000. vdev_failed:
  1001.     if( i_fd >= 0 ) close( i_fd );
  1002.     return -1;
  1003. }
  1004. /*****************************************************************************
  1005.  * GrabVideo:
  1006.  *****************************************************************************/
  1007. static uint8_t *GrabCapture( demux_t *p_demux )
  1008. {
  1009.     demux_sys_t *p_sys = p_demux->p_sys;
  1010.     int i_captured_frame = p_sys->i_frame_pos;
  1011.     p_sys->vid_mmap.frame = (p_sys->i_frame_pos + 1) % p_sys->vid_mbuf.frames;
  1012.     while( ioctl( p_sys->i_fd, VIDIOCMCAPTURE, &p_sys->vid_mmap ) < 0 )
  1013.     {
  1014.         if( errno != EAGAIN )
  1015.         {
  1016.             msg_Err( p_demux, "failed capturing new frame" );
  1017.             return NULL;
  1018.         }
  1019.         if( !vlc_object_alive (p_demux) )
  1020.         {
  1021.             return NULL;
  1022.         }
  1023.         msg_Dbg( p_demux, "grab failed, trying again" );
  1024.     }
  1025.     while( ioctl(p_sys->i_fd, VIDIOCSYNC, &p_sys->i_frame_pos) < 0 )
  1026.     {
  1027.         if( errno != EAGAIN && errno != EINTR )
  1028.         {
  1029.             msg_Err( p_demux, "failed syncing new frame" );
  1030.             return NULL;
  1031.         }
  1032.     }
  1033.     p_sys->i_frame_pos = p_sys->vid_mmap.frame;
  1034.     /* leave i_video_frame_size alone */
  1035.     return p_sys->p_video_mmap + p_sys->vid_mbuf.offsets[i_captured_frame];
  1036. }
  1037. static uint8_t *GrabMJPEG( demux_t *p_demux )
  1038. {
  1039.     demux_sys_t *p_sys = p_demux->p_sys;
  1040.     struct mjpeg_sync sync;
  1041.     uint8_t *p_frame, *p_field, *p;
  1042.     uint16_t tag;
  1043.     uint32_t i_size;
  1044.     struct quicktime_mjpeg_app1 *p_app1 = NULL;
  1045.     /* re-queue the last frame we sync'd */
  1046.     if( p_sys->i_frame_pos != -1 )
  1047.     {
  1048.         while( ioctl( p_sys->i_fd, MJPIOC_QBUF_CAPT,
  1049.                                        &p_sys->i_frame_pos ) < 0 )
  1050.         {
  1051.             if( errno != EAGAIN && errno != EINTR )
  1052.             {
  1053.                 msg_Err( p_demux, "failed capturing new frame" );
  1054.                 return NULL;
  1055.             }
  1056.         }
  1057.     }
  1058.     /* sync on the next frame */
  1059.     while( ioctl( p_sys->i_fd, MJPIOC_SYNC, &sync ) < 0 )
  1060.     {
  1061.         if( errno != EAGAIN && errno != EINTR )
  1062.         {
  1063.             msg_Err( p_demux, "failed syncing new frame" );
  1064.             return NULL;
  1065.         }
  1066.     }
  1067.     p_sys->i_frame_pos = sync.frame;
  1068.     p_frame = p_sys->p_video_mmap + p_sys->mjpeg_buffers.size * sync.frame;
  1069.     /* p_frame now points to the data.  fix up the Quicktime APP1 marker */
  1070.     tag = 0xffd9;
  1071.     tag = hton16( tag );
  1072.     p_field = p_frame;
  1073.     /* look for EOI */
  1074.     p = memmem( p_field, sync.length, &tag, 2 );
  1075.     if( p )
  1076.     {
  1077.         p += 2; /* data immediately following EOI */
  1078.         /* UNALIGNED! */
  1079.         p_app1 = (struct quicktime_mjpeg_app1 *)(p_field + 6);
  1080.         i_size = ((uint32_t)(p - p_field));
  1081.         i_size = hton32( i_size );
  1082.         memcpy( &p_app1->i_field_size, &i_size, 4 );
  1083.         while( *p == 0xff && *(p+1) == 0xff )
  1084.             p++;
  1085.         i_size = ((uint32_t)(p - p_field));
  1086.         i_size = hton32( i_size );
  1087.         memcpy( &p_app1->i_padded_field_size, &i_size, 4 );
  1088.     }
  1089.     tag = 0xffd8;
  1090.     tag = hton16( tag );
  1091.     p_field = memmem( p, sync.length - (size_t)(p - p_frame), &tag, 2 );
  1092.     if( p_field )
  1093.     {
  1094.         i_size = (uint32_t)(p_field - p_frame);
  1095.         i_size = hton32( i_size );
  1096.         memcpy( &p_app1->i_next_field, &i_size, 4 );
  1097.         /* UNALIGNED! */
  1098.         p_app1 = (struct quicktime_mjpeg_app1 *)(p_field + 6);
  1099.         tag = 0xffd9;
  1100.         tag = hton16( tag );
  1101.         p = memmem( p_field, sync.length - (size_t)(p_field - p_frame),
  1102.                 &tag, 2 );
  1103.         if( !p )
  1104.         {
  1105.             /* sometimes the second field doesn't have the EOI.  just put it
  1106.              * there
  1107.              */
  1108.             p = p_frame + sync.length;
  1109.             memcpy( p, &tag, 2 );
  1110.             sync.length += 2;
  1111.         }
  1112.         p += 2;
  1113.         i_size = (uint32_t)(p - p_field);
  1114.         i_size = hton32( i_size );
  1115.         memcpy( &p_app1->i_field_size, &i_size, 4 );
  1116.         i_size = (uint32_t)(sync.length - (uint32_t)(p_field - p_frame));
  1117.         i_size = hton32( i_size );
  1118.         memcpy( &p_app1->i_padded_field_size, &i_size, 4 );
  1119.     }
  1120.     p_sys->i_video_frame_size = sync.length;
  1121.     return p_frame;
  1122. }
  1123. static block_t *GrabVideo( demux_t *p_demux )
  1124. {
  1125.     demux_sys_t *p_sys = p_demux->p_sys;
  1126.     uint8_t     *p_frame;
  1127.     block_t     *p_block;
  1128.     if( p_sys->f_fps >= 0.1 && p_sys->i_video_pts > 0 )
  1129.     {
  1130.         mtime_t i_dur = (mtime_t)((double)1000000 / (double)p_sys->f_fps);
  1131.         /* Did we wait long enough ? (frame rate reduction) */
  1132.         if( p_sys->i_video_pts + i_dur > mdate() ) return 0;
  1133.     }
  1134.     if( p_sys->b_mjpeg ) p_frame = GrabMJPEG( p_demux );
  1135.     else p_frame = GrabCapture( p_demux );
  1136.     if( !p_frame ) return 0;
  1137.     if( !( p_block = block_New( p_demux, p_sys->i_video_frame_size ) ) )
  1138.     {
  1139.         msg_Warn( p_demux, "cannot get block" );
  1140.         return 0;
  1141.     }
  1142.     memcpy( p_block->p_buffer, p_frame, p_sys->i_video_frame_size );
  1143.     p_sys->i_video_pts = p_block->i_pts = p_block->i_dts = mdate();
  1144.     return p_block;
  1145. }