v4l.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:46k
源码类别:

多媒体

开发平台:

MultiPlatform

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