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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * yuv.c : yuv video output
  3.  *****************************************************************************
  4.  * Copyright (C) 2008, M2X BV
  5.  * $Id: cd73fb8645b595e3db0945e9f215b3decb07fd34 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_vout.h>
  32. #include <vlc_charset.h>
  33. /*****************************************************************************
  34.  * Local prototypes
  35.  *****************************************************************************/
  36. static int  Create    ( vlc_object_t * );
  37. static void Destroy   ( vlc_object_t * );
  38. static int  Init      ( vout_thread_t * );
  39. static void End       ( vout_thread_t *p_vout );
  40. static void Display   ( vout_thread_t *, picture_t * );
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. #define YUV_FILE_TEXT N_("device, fifo or filename")
  45. #define YUV_FILE_LONGTEXT N_("device, fifo or filename to write yuv frames too." )
  46. #define CHROMA_TEXT N_("Chroma used.")
  47. #define CHROMA_LONGTEXT N_( 
  48.     "Force use of a specific chroma for output. Default is I420." )
  49. #define YUV4MPEG2_TEXT N_( "YUV4MPEG2 header (default disabled)" )
  50. #define YUV4MPEG2_LONGTEXT N_( "The YUV4MPEG2 header is compatible " 
  51.     "with mplayer yuv video ouput and requires YV12/I420 fourcc. By default "
  52.     "vlc writes the fourcc of the picture frame into the output destination." )
  53. #define CFG_PREFIX "yuv-"
  54. vlc_module_begin ()
  55.     set_shortname( N_( "YUV output" ) )
  56.     set_description( N_( "YUV video output" ) )
  57.     set_category( CAT_VIDEO )
  58.     set_subcategory( SUBCAT_VIDEO_VOUT )
  59.     set_capability( "video output", 0 )
  60.     add_string( CFG_PREFIX "file", "stream.yuv", NULL,
  61.                 YUV_FILE_TEXT, YUV_FILE_LONGTEXT, false )
  62.     add_string( CFG_PREFIX "chroma", NULL, NULL,
  63.                 CHROMA_TEXT, CHROMA_LONGTEXT, true )
  64.     add_bool  ( CFG_PREFIX "yuv4mpeg2", false, NULL,
  65.                 YUV4MPEG2_TEXT, YUV4MPEG2_LONGTEXT, true )
  66.     set_callbacks( Create, Destroy )
  67. vlc_module_end ()
  68. static const char *const ppsz_vout_options[] = {
  69.     "file", "chroma", "yuv4mpeg2", NULL
  70. };
  71. static void WriteYUV( vout_thread_t *p_vout, video_format_t fmt,
  72.                       picture_t *p_pic );
  73. /*****************************************************************************
  74.  * vout_sys_t: video output descriptor
  75.  *****************************************************************************/
  76. struct vout_sys_t
  77. {
  78.     char *psz_file;
  79.     FILE *p_fd;
  80.     bool  b_header;
  81.     bool  b_yuv4mpeg2;
  82.     vlc_fourcc_t i_chroma;
  83. };
  84. /*****************************************************************************
  85.  * Create: allocates video thread
  86.  *****************************************************************************
  87.  * This function allocates and initializes a vout method.
  88.  *****************************************************************************/
  89. static int Create( vlc_object_t *p_this )
  90. {
  91.     vout_thread_t *p_vout = ( vout_thread_t * )p_this;
  92.     vout_sys_t *p_sys;
  93.     char *psz_fcc;
  94.     config_ChainParse( p_vout, CFG_PREFIX, ppsz_vout_options,
  95.                        p_vout->p_cfg );
  96.     /* Allocate instance and initialize some members */
  97.     p_vout->p_sys = p_sys = malloc( sizeof( vout_sys_t ) );
  98.     if( !p_vout->p_sys )
  99.         return VLC_ENOMEM;
  100.     p_sys->b_header = false;
  101.     p_sys->p_fd = NULL;
  102.     p_sys->b_yuv4mpeg2 = var_CreateGetBool( p_this, CFG_PREFIX "yuv4mpeg2" );
  103.     p_sys->i_chroma = VLC_FOURCC('I','4','2','0');
  104.     p_sys->psz_file =
  105.             var_CreateGetString( p_this, CFG_PREFIX "file" );
  106.     p_sys->p_fd = utf8_fopen( p_sys->psz_file, "wb" );
  107.     if( !p_sys->p_fd )
  108.     {
  109.         free( p_sys->psz_file );
  110.         free( p_sys );
  111.         return VLC_EGENERIC;
  112.     }
  113.     psz_fcc = var_CreateGetNonEmptyString( p_this, CFG_PREFIX "chroma" );
  114.     if( psz_fcc && (strlen( psz_fcc ) == 4) )
  115.     {
  116.         p_sys->i_chroma = VLC_FOURCC( psz_fcc[0], psz_fcc[1],
  117.                                       psz_fcc[2], psz_fcc[3] );
  118.     }
  119.     free( psz_fcc );
  120.     if( p_sys->b_yuv4mpeg2 )
  121.     {
  122.         switch( p_sys->i_chroma )
  123.         {
  124.             case VLC_FOURCC('Y','V','1','2'):
  125.             case VLC_FOURCC('I','4','2','0'):
  126.             case VLC_FOURCC('I','Y','U','V'):
  127.             case VLC_FOURCC('J','4','2','0'):
  128.                 break;
  129.             default:
  130.                 msg_Err( p_this,
  131.                     "YUV4MPEG2 mode needs chroma YV12 not %4s as requested",
  132.                     (char *)&(p_sys->i_chroma) );
  133.                 fclose( p_vout->p_sys->p_fd );
  134.                 free( p_vout->p_sys->psz_file );
  135.                 free( p_vout->p_sys );
  136.                 return VLC_EGENERIC;
  137.         }
  138.     }
  139.     msg_Dbg( p_this, "using chroma %4s", (char *)&(p_sys->i_chroma) );
  140.     p_vout->pf_init = Init;
  141.     p_vout->pf_end = End;
  142.     p_vout->pf_manage = NULL;
  143.     p_vout->pf_render = NULL;
  144.     p_vout->pf_display = Display;
  145.     return VLC_SUCCESS;
  146. }
  147. /*****************************************************************************
  148.  * Init: initialize video thread
  149.  *****************************************************************************/
  150. static int Init( vout_thread_t *p_vout )
  151. {
  152.     vout_sys_t *p_sys = (vout_sys_t *) p_vout->p_sys;
  153.     int i_index;
  154.     picture_t *p_pic;
  155.     /* Initialize the output structure */
  156.     if( p_vout->render.i_chroma != p_sys->i_chroma )
  157.         p_vout->output.i_chroma = p_vout->fmt_out.i_chroma = p_sys->i_chroma;
  158.     else
  159.        p_vout->output.i_chroma = p_vout->render.i_chroma;
  160.     p_vout->output.pf_setpalette = NULL;
  161.     p_vout->output.i_width = p_vout->render.i_width;
  162.     p_vout->output.i_height = p_vout->render.i_height;
  163.     p_vout->output.i_aspect = p_vout->output.i_width
  164.                                * VOUT_ASPECT_FACTOR / p_vout->output.i_height;
  165.     p_vout->output.i_rmask = 0xff0000;
  166.     p_vout->output.i_gmask = 0x00ff00;
  167.     p_vout->output.i_bmask = 0x0000ff;
  168.     /* Try to initialize 1 direct buffer */
  169.     p_pic = NULL;
  170.     /* Find an empty picture slot */
  171.     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
  172.     {
  173.         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
  174.         {
  175.             p_pic = p_vout->p_picture + i_index;
  176.             break;
  177.         }
  178.     }
  179.     /* Allocate the picture */
  180.     if( p_pic == NULL )
  181.         return VLC_EGENERIC;
  182.     vout_AllocatePicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
  183.                           p_vout->output.i_width, p_vout->output.i_height,
  184.                           p_vout->output.i_aspect );
  185.     if( p_pic->i_planes == 0 )
  186.     {
  187.         return VLC_EGENERIC;
  188.     }
  189.     p_pic->i_status = DESTROYED_PICTURE;
  190.     p_pic->i_type   = DIRECT_PICTURE;
  191.     PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
  192.     I_OUTPUTPICTURES++;
  193.     return VLC_SUCCESS;
  194. }
  195. /*****************************************************************************
  196.  * Destroy: destroy video thread
  197.  *****************************************************************************
  198.  * Terminate an output method created by Create
  199.  *****************************************************************************/
  200. static void Destroy( vlc_object_t *p_this )
  201. {
  202.     int i_index;
  203.     vout_thread_t *p_vout = ( vout_thread_t * )p_this;
  204.     for( i_index = I_OUTPUTPICTURES-1; i_index >= 0; i_index-- )
  205.     {
  206.         free( PP_OUTPUTPICTURE[ i_index ]->p_data );
  207.     }
  208.     /* Destroy structure */
  209.     fclose( p_vout->p_sys->p_fd );
  210.     free( p_vout->p_sys->psz_file );
  211.     free( p_vout->p_sys );
  212. }
  213. /*****************************************************************************
  214.  * Display: displays previously rendered output
  215.  *****************************************************************************
  216.  * This function copies the rendered picture into our circular buffer.
  217.  *****************************************************************************/
  218. static void Display( vout_thread_t *p_vout, picture_t *p_pic )
  219. {
  220.     video_format_t fmt_in;
  221.     memset( &fmt_in, 0, sizeof( fmt_in ) );
  222.     video_format_Copy( &fmt_in, &p_pic->format );
  223.     /* assume square pixels if i_sar_num = 0 */
  224.     if( p_pic->format.i_sar_num == 0 )
  225.         fmt_in.i_sar_num = fmt_in.i_sar_den = 1;
  226.     WriteYUV( p_vout, fmt_in, p_pic );
  227.     video_format_Clean( &fmt_in );
  228.     return;
  229. }
  230. static void End( vout_thread_t *p_vout )
  231. {
  232.     VLC_UNUSED(p_vout);
  233. }
  234. static void WriteYUV( vout_thread_t *p_vout, video_format_t fmt,
  235.                       picture_t *p_pic )
  236. {
  237.     vout_sys_t *p_sys = p_vout->p_sys;
  238.     if( !p_pic || !p_sys ) return;
  239. #if 0
  240.     msg_Dbg( p_vout, "writing %d bytes of fourcc %4s",
  241.              i_bytes, (char *)&fmt.i_chroma );
  242. #endif
  243.     if( !p_sys->b_header )
  244.     {
  245.         const char *p_hdr = "";
  246.         if( p_sys->b_yuv4mpeg2 )
  247.         {
  248.             /* MPlayer compatible header, unfortunately it doesn't tell you
  249.              * the exact fourcc used. */
  250.             p_hdr = "YUV4MPEG2";
  251.         }
  252.         else
  253.         {
  254.             p_hdr = (const char*)&fmt.i_chroma;
  255.         }
  256.         fprintf( p_sys->p_fd, "%4s W%d H%d F%d:%d I%c A%d:%dn",
  257.                  p_hdr,
  258.                  fmt.i_width, fmt.i_height,
  259.                  fmt.i_frame_rate, fmt.i_frame_rate_base,
  260.                  (p_pic->b_progressive ? 'p' :
  261.                          (p_pic->b_top_field_first ? 't' : 'b')),
  262.                  fmt.i_sar_num, fmt.i_sar_den );
  263.         fflush( p_sys->p_fd );
  264.         p_sys->b_header = true;
  265.     }
  266.     fprintf( p_sys->p_fd, "FRAMEn" );
  267.     if( p_pic->b_progressive )
  268.     {
  269.         size_t i_bytes = (fmt.i_width * fmt.i_height * fmt.i_bits_per_pixel) >> 3;
  270.         size_t i_written = 0;
  271.         i_written = fwrite( p_pic->p_data, 1, i_bytes, p_sys->p_fd );
  272.         if( i_written != i_bytes )
  273.         {
  274.             msg_Warn( p_vout, "only %d of %d bytes written",
  275.                       i_written, i_bytes );
  276.         }
  277.     }
  278.     else
  279.     {
  280.         msg_Warn( p_vout, "only progressive frames are supported, "
  281.                           "use a deinterlace filter" );
  282.     }
  283.     fflush( p_sys->p_fd );
  284. }