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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * rawvid.c : raw video input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: 22ded17b8e4ce979880fc7cdc50781fbc172f88c $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *          Antoine Cellerier <dionoea at videolan d.t org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_demux.h>
  33. #include <vlc_vout.h>                                     /* vout_InitFormat */
  34. #include <assert.h>
  35. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. static int  Open ( vlc_object_t * );
  39. static void Close( vlc_object_t * );
  40. #define FPS_TEXT N_("Frames per Second")
  41. #define FPS_LONGTEXT N_("This is the desired frame rate when " 
  42.     "playing raw video streams.  In the form 30000/1001 or 29.97")
  43. #define WIDTH_TEXT N_("Width")
  44. #define WIDTH_LONGTEXT N_("This specifies the width in pixels of the raw " 
  45.     "video stream.")
  46. #define HEIGHT_TEXT N_("Height")
  47. #define HEIGHT_LONGTEXT N_("This specifies the height in pixels of the raw " 
  48.     "video stream.")
  49. #define CHROMA_TEXT N_("Force chroma (Use carefully)")
  50. #define CHROMA_LONGTEXT N_("Force chroma. This is a four character string.")
  51. #define ASPECT_RATIO_TEXT N_("Aspect ratio")
  52. #define ASPECT_RATIO_LONGTEXT N_( 
  53.     "Aspect ratio (4:3, 16:9). Default assumes square pixels." )
  54. vlc_module_begin ()
  55.     set_shortname( "Raw Video" )
  56.     set_description( N_("Raw video demuxer") )
  57.     set_capability( "demux", 10 )
  58.     set_category( CAT_INPUT )
  59.     set_subcategory( SUBCAT_INPUT_DEMUX )
  60.     set_callbacks( Open, Close )
  61.     add_shortcut( "rawvideo" )
  62.     add_string( "rawvid-fps", NULL, NULL, FPS_TEXT, FPS_LONGTEXT, false )
  63.     add_integer( "rawvid-width", 0, 0, WIDTH_TEXT, WIDTH_LONGTEXT, 0 )
  64.     add_integer( "rawvid-height", 0, 0, HEIGHT_TEXT, HEIGHT_LONGTEXT, 0 )
  65.     add_string( "rawvid-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
  66.                 true )
  67.     add_string( "rawvid-aspect-ratio", NULL, NULL,
  68.                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, true )
  69. vlc_module_end ()
  70. /*****************************************************************************
  71.  * Definitions of structures used by this plugin
  72.  *****************************************************************************/
  73. struct demux_sys_t
  74. {
  75.     int    frame_size;
  76.     es_out_id_t *p_es_video;
  77.     es_format_t  fmt_video;
  78.     date_t pcr;
  79.     bool b_y4m;
  80. };
  81. /*****************************************************************************
  82.  * Local prototypes
  83.  *****************************************************************************/
  84. static int Demux( demux_t * );
  85. static int Control( demux_t *, int i_query, va_list args );
  86. struct preset_t
  87. {
  88.     const char *psz_ext;
  89.     int i_width;
  90.     int i_height;
  91.     unsigned u_fps_num;
  92.     unsigned u_fps_den;
  93.     unsigned u_ar_num;
  94.     unsigned u_ar_den;
  95.     vlc_fourcc_t i_chroma;
  96. };
  97. static const struct preset_t p_presets[] =
  98. {
  99.     { "sqcif", 128, 96, 30000, 1001, 4,3, VLC_FOURCC('Y','V','1','2') },
  100.     { "qcif", 176, 144, 30000, 1001, 4,3, VLC_FOURCC('Y','V','1','2') },
  101.     { "cif", 352, 288, 30000, 1001, 4,3, VLC_FOURCC('Y','V','1','2') },
  102.     { "4cif", 704, 576, 30000, 1001, 4,3, VLC_FOURCC('Y','V','1','2') },
  103.     { "16cif", 1408, 1152, 30000, 1001, 4,3, VLC_FOURCC('Y','V','1','2') },
  104.     { "yuv", 176, 144, 25, 1, 4,3, VLC_FOURCC('Y','V','1','2') },
  105.     { NULL, 0, 0, 0, 0, 0,0, 0 }
  106. };
  107. /*****************************************************************************
  108.  * Open: initializes raw DV demux structures
  109.  *****************************************************************************/
  110. static int Open( vlc_object_t * p_this )
  111. {
  112.     demux_t     *p_demux = (demux_t*)p_this;
  113.     demux_sys_t *p_sys;
  114.     int i_width=-1, i_height=-1;
  115.     unsigned u_fps_num=0, u_fps_den=1;
  116.     char *psz_ext;
  117.     vlc_fourcc_t i_chroma;
  118.     unsigned int i_aspect = 0;
  119.     const struct preset_t *p_preset = NULL;
  120.     const uint8_t *p_peek;
  121.     bool b_valid = false;
  122.     bool b_y4m = false;
  123.     if( stream_Peek( p_demux->s, &p_peek, 9 ) == 9 )
  124.     {
  125.         /* http://wiki.multimedia.cx/index.php?title=YUV4MPEG2 */
  126.         if( !strncmp( (char *)p_peek, "YUV4MPEG2", 9 ) )
  127.         {
  128.             b_valid = true;
  129.             b_y4m = true;
  130.         }
  131.     }
  132.     /* guess preset based on file extension */
  133.     psz_ext = strrchr( p_demux->psz_path, '.' );
  134.     if( psz_ext )
  135.     {
  136.         psz_ext++;
  137.         for( int i = 0; p_presets[i].psz_ext ; i++ )
  138.         {
  139.             if( !strcasecmp( psz_ext, p_presets[i].psz_ext ) )
  140.             {
  141.                 p_preset = &p_presets[i];
  142.                 b_valid = true;
  143.                 break;
  144.             }
  145.         }
  146.     }
  147.     if( !b_valid && !p_demux->b_force )
  148.         return VLC_EGENERIC;
  149.     /* Set p_input field */
  150.     p_demux->pf_demux   = Demux;
  151.     p_demux->pf_control = Control;
  152.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  153.     if( !p_sys )
  154.         return VLC_ENOMEM;
  155.     p_sys->b_y4m = b_y4m;
  156.     /* guess the parameters based on the preset */
  157.     if( p_preset )
  158.     {
  159.         i_width = p_preset->i_width;
  160.         i_height = p_preset->i_height;
  161.         u_fps_num = p_preset->u_fps_num;
  162.         u_fps_den = p_preset->u_fps_den;
  163.         i_aspect = VOUT_ASPECT_FACTOR * p_preset->u_ar_num / p_preset->u_ar_den;
  164.         i_chroma = p_preset->i_chroma;
  165.     }
  166.     /* override presets if yuv4mpeg2 */
  167.     if( b_y4m )
  168.     {
  169.         char *psz = stream_ReadLine( p_demux->s );
  170.         char *psz_buf;
  171.         int a = 1;
  172.         int b = 1;
  173.         /* The string will start with "YUV4MPEG2" */
  174.         assert( strlen(psz) >= 9 );
  175.         /* NB, it is not possible to handle interlaced here, since the
  176.          * interlaced picture flags are in picture_t not block_t */
  177. #define READ_FRAC( key, num, den ) do { 
  178.         psz_buf = strstr( psz+9, key );
  179.         if( psz_buf )
  180.         {
  181.             char *end = strchr( psz_buf+1, ' ' );
  182.             char *sep;
  183.             if( end ) *end = '';
  184.             sep = strchr( psz_buf+1, ':' );
  185.             if( sep )
  186.             {
  187.                 *sep = '';
  188.                 den = atoi( sep+1 );
  189.             }
  190.             else
  191.             {
  192.                 den = 1;
  193.             }
  194.             num = atoi( psz_buf+2 );
  195.             if( sep ) *sep = ':';
  196.             if( end ) *end = ' ';
  197.         } } while(0)
  198.         READ_FRAC( " W", i_width, a );
  199.         READ_FRAC( " H", i_height, a );
  200.         READ_FRAC( " F", u_fps_num, u_fps_den );
  201.         READ_FRAC( " A", a, b );
  202. #undef READ_FRAC
  203.         /* Try to calculate aspect ratio here, rather than store ratio
  204.          * in u_ar_{num,den}, since width may be overridden by then.
  205.          * Plus, a:b is sar. */
  206.         if( b != 0 )
  207.             i_aspect = VOUT_ASPECT_FACTOR * a * i_width / (b * i_height);
  208.         psz_buf = strstr( psz+9, " C" );
  209.         if( psz_buf )
  210.         {
  211.             static const struct { const char *psz_name; vlc_fourcc_t i_fcc; } formats[] =
  212.             {
  213.                 { "420jpeg",    VLC_FOURCC('I','4','2','0') },
  214.                 { "420paldv",   VLC_FOURCC('I','4','2','0') },
  215.                 { "420",        VLC_FOURCC('I','4','2','0') },
  216.                 { "422",        VLC_FOURCC('I','4','2','2') },
  217.                 { "444",        VLC_FOURCC('I','4','4','4') },
  218.                 { "mono",       VLC_FOURCC('G','R','E','Y') },
  219.                 { NULL, 0 }
  220.             };
  221.             bool b_found = false;
  222.             char *psz_end = strchr( psz_buf+1, ' ' );
  223.             if( psz_end )
  224.                 *psz_end = '';
  225.             psz_buf += 2;
  226.             for( int i = 0; formats[i].psz_name != NULL; i++ )
  227.             {
  228.                 if( !strncmp( psz_buf, formats[i].psz_name, strlen(formats[i].psz_name) ) )
  229.                 {
  230.                     i_chroma = formats[i].i_fcc;
  231.                     b_found = true;
  232.                     break;
  233.                 }
  234.             }
  235.             if( !b_found )
  236.                 msg_Warn( p_demux, "Unknown YUV4MPEG2 chroma type "%s"", psz_buf );
  237.             if( psz_end )
  238.                 *psz_end = ' ';
  239.         }
  240.         free( psz );
  241.     }
  242.     /* allow the user to override anything guessed from the input */
  243.     int i_tmp;
  244.     i_tmp = var_CreateGetInteger( p_demux, "rawvid-width" );
  245.     if( i_tmp ) i_width = i_tmp;
  246.     i_tmp = var_CreateGetInteger( p_demux, "rawvid-height" );
  247.     if( i_tmp ) i_height = i_tmp;
  248.     char *psz_tmp;
  249.     psz_tmp = var_CreateGetNonEmptyString( p_demux, "rawvid-chroma" );
  250.     if( psz_tmp )
  251.     {
  252.         if( strlen( psz_tmp ) != 4 )
  253.         {
  254.             msg_Err( p_demux, "Invalid fourcc format/chroma specification %s"
  255.                      " expecting four characters eg, UYVY", psz_tmp );
  256.             free( psz_tmp );
  257.             goto error;
  258.         }
  259.         memcpy( &i_chroma, psz_tmp, 4 );
  260.         msg_Dbg( p_demux, "Forcing chroma to 0x%.8x (%4.4s)", i_chroma, (char*)&i_chroma );
  261.         free( psz_tmp );
  262.     }
  263.     psz_tmp = var_CreateGetNonEmptyString( p_demux, "rawvid-fps" );
  264.     if( psz_tmp )
  265.     {
  266.         char *p_ptr;
  267.         /* fps can either be n/d or q.f
  268.          * for accuracy, avoid representation in float */
  269.         u_fps_num = strtol( psz_tmp, &p_ptr, 10 );
  270.         if( *p_ptr == '/' )
  271.         {
  272.             p_ptr++;
  273.             u_fps_den = strtol( p_ptr, NULL, 10 );
  274.         }
  275.         else if( *p_ptr == '.' )
  276.         {
  277.             char *p_end;
  278.             p_ptr++;
  279.             int i_frac =  strtol( p_ptr, &p_end, 10 );
  280.             u_fps_den = (p_end - p_ptr) * 10;
  281.             if( !u_fps_den )
  282.                 u_fps_den = 1;
  283.             u_fps_num = u_fps_num * u_fps_den + i_frac;
  284.         }
  285.         else if( *p_ptr == '')
  286.         {
  287.             u_fps_den = 1;
  288.         }
  289.         free( psz_tmp );
  290.     }
  291.     psz_tmp = var_CreateGetNonEmptyString( p_demux, "rawvid-aspect-ratio" );
  292.     if( psz_tmp )
  293.     {
  294.         char *psz_denominator = strchr( psz_tmp, ':' );
  295.         if( psz_denominator )
  296.         {
  297.             *psz_denominator++ = '';
  298.             i_aspect = atoi( psz_tmp ) * VOUT_ASPECT_FACTOR
  299.                      / atoi( psz_denominator );
  300.         }
  301.         free( psz_tmp );
  302.     }
  303.     /* moan about anything wrong */
  304.     if( i_width <= 0 || i_height <= 0 )
  305.     {
  306.         msg_Err( p_demux, "width and height must be strictly positive." );
  307.         goto error;
  308.     }
  309.     if( !u_fps_num || !u_fps_den )
  310.     {
  311.         msg_Err( p_demux, "invalid or no framerate specified." );
  312.         goto error;
  313.     }
  314.     /* fixup anything missing with sensible assumptions */
  315.     if( !i_aspect )
  316.     {
  317.         /* assume 1:1 sar */
  318.         i_aspect = i_width * VOUT_ASPECT_FACTOR / i_height;
  319.     }
  320.     es_format_Init( &p_sys->fmt_video, VIDEO_ES, i_chroma );
  321.     vout_InitFormat( &p_sys->fmt_video.video, i_chroma, i_width, i_height,
  322.                      i_aspect );
  323.     vlc_ureduce( &p_sys->fmt_video.video.i_frame_rate,
  324.                  &p_sys->fmt_video.video.i_frame_rate_base,
  325.                  u_fps_num, u_fps_den, 0);
  326.     date_Init( &p_sys->pcr, p_sys->fmt_video.video.i_frame_rate,
  327.                p_sys->fmt_video.video.i_frame_rate_base );
  328.     date_Set( &p_sys->pcr, 1 );
  329.     if( !p_sys->fmt_video.video.i_bits_per_pixel )
  330.     {
  331.         msg_Err( p_demux, "Unsupported chroma 0x%.8x (%4.4s)", i_chroma,
  332.                  (char*)&i_chroma );
  333.         goto error;
  334.     }
  335.     p_sys->frame_size = i_width * i_height
  336.                         * p_sys->fmt_video.video.i_bits_per_pixel / 8;
  337.     p_sys->p_es_video = es_out_Add( p_demux->out, &p_sys->fmt_video );
  338.     return VLC_SUCCESS;
  339. error:
  340.     free( p_sys );
  341.     return VLC_EGENERIC;
  342. }
  343. /*****************************************************************************
  344.  * Close: frees unused data
  345.  *****************************************************************************/
  346. static void Close( vlc_object_t *p_this )
  347. {
  348.     demux_t     *p_demux = (demux_t*)p_this;
  349.     demux_sys_t *p_sys  = p_demux->p_sys;
  350.     free( p_sys );
  351. }
  352. /*****************************************************************************
  353.  * Demux: reads and demuxes data packets
  354.  *****************************************************************************
  355.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  356.  *****************************************************************************/
  357. static int Demux( demux_t *p_demux )
  358. {
  359.     demux_sys_t *p_sys  = p_demux->p_sys;
  360.     block_t     *p_block;
  361.     mtime_t i_pcr = date_Get( &p_sys->pcr );
  362.     /* Call the pace control */
  363.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_pcr );
  364.     if( p_sys->b_y4m )
  365.     {
  366.         /* Skip the frame header */
  367.         /* Skip "FRAME" */
  368.         if( stream_Read( p_demux->s, NULL, 5 ) < 5 )
  369.             return 0;
  370.         /* Find n */
  371.         for( ;; )
  372.         {
  373.             uint8_t b;
  374.             if( stream_Read( p_demux->s, &b, 1 ) < 1 )
  375.                 return 0;
  376.             if( b == 0x0a )
  377.                 break;
  378.         }
  379.     }
  380.     if( ( p_block = stream_Block( p_demux->s, p_sys->frame_size ) ) == NULL )
  381.     {
  382.         /* EOF */
  383.         return 0;
  384.     }
  385.     p_block->i_dts = p_block->i_pts = i_pcr;
  386.     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
  387.     date_Increment( &p_sys->pcr, 1 );
  388.     return 1;
  389. }
  390. /*****************************************************************************
  391.  * Control:
  392.  *****************************************************************************/
  393. static int Control( demux_t *p_demux, int i_query, va_list args )
  394. {
  395.     demux_sys_t *p_sys  = p_demux->p_sys;
  396.      /* (2**31)-1 is insufficient to store 1080p50 4:4:4. */
  397.     const int64_t i_bps = 8LL * p_sys->frame_size * p_sys->pcr.i_divider_num /
  398.                                                     p_sys->pcr.i_divider_den;
  399.     /* XXX: DEMUX_SET_TIME is precise here */
  400.     return demux_vaControlHelper( p_demux->s, 0, -1, i_bps,
  401.                                    p_sys->frame_size, i_query, args );
  402. }