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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * blendbench.c : blending benchmark plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: d60bb20616d2e5fd06c2d9a00a5eeef20efd46f8 $
  6.  *
  7.  * Author: Søren Bøg <avacore@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_sout.h>
  32. #include <vlc_vout.h>
  33. #include "vlc_filter.h"
  34. #include "vlc_image.h"
  35. /*****************************************************************************
  36.  * Local prototypes
  37.  *****************************************************************************/
  38. static int Create( vlc_object_t * );
  39. static void Destroy( vlc_object_t * );
  40. static picture_t *Filter( filter_t *, picture_t * );
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. #define LOOPS_TEXT N_("Number of time to blend")
  45. #define LOOPS_LONGTEXT N_("The number of time the blend will be performed")
  46. #define ALPHA_TEXT N_("Alpha of the blended image")
  47. #define ALPHA_LONGTEXT N_("Alpha with which the blend image is blended")
  48. #define BASE_IMAGE_TEXT N_("Image to be blended onto")
  49. #define BASE_IMAGE_LONGTEXT N_("The image which will be used to blend onto")
  50. #define BASE_CHROMA_TEXT N_("Chroma for the base image")
  51. #define BASE_CHROMA_LONGTEXT N_("Chroma which the base image will be loaded in")
  52. #define BLEND_IMAGE_TEXT N_("Image which will be blended.")
  53. #define BLEND_IMAGE_LONGTEXT N_("The image blended onto the base image")
  54. #define BLEND_CHROMA_TEXT N_("Chroma for the blend image")
  55. #define BLEND_CHROMA_LONGTEXT N_("Chroma which the blend image will be loaded" 
  56.                                  "in")
  57. #define CFG_PREFIX "blendbench-"
  58. vlc_module_begin ()
  59.     set_description( N_("Blending benchmark filter") )
  60.     set_shortname( N_("Blendbench" ))
  61.     set_category( CAT_VIDEO )
  62.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  63.     set_capability( "video filter2", 0 )
  64.     set_section( N_("Benchmarking"), NULL )
  65.     add_integer( CFG_PREFIX "loops", 1000, NULL, LOOPS_TEXT,
  66.               LOOPS_LONGTEXT, false )
  67.     add_integer_with_range( CFG_PREFIX "alpha", 128, 0, 255, NULL, ALPHA_TEXT,
  68.               ALPHA_LONGTEXT, false )
  69.     set_section( N_("Base image"), NULL )
  70.     add_file( CFG_PREFIX "base-image", NULL, NULL, BASE_IMAGE_TEXT,
  71.               BASE_IMAGE_LONGTEXT, false )
  72.     add_string( CFG_PREFIX "base-chroma", "I420", NULL, BASE_CHROMA_TEXT,
  73.               BASE_CHROMA_LONGTEXT, false )
  74.     set_section( N_("Blend image"), NULL )
  75.     add_file( CFG_PREFIX "blend-image", NULL, NULL, BLEND_IMAGE_TEXT,
  76.               BLEND_IMAGE_LONGTEXT, false )
  77.     add_string( CFG_PREFIX "blend-chroma", "YUVA", NULL, BLEND_CHROMA_TEXT,
  78.               BLEND_CHROMA_LONGTEXT, false )
  79.     set_callbacks( Create, Destroy )
  80. vlc_module_end ()
  81. static const char *const ppsz_filter_options[] = {
  82.     "loops", "alpha", "base-image", "base-chroma", "blend-image",
  83.     "blend-chroma", NULL
  84. };
  85. /*****************************************************************************
  86.  * filter_sys_t: filter method descriptor
  87.  *****************************************************************************/
  88. struct filter_sys_t
  89. {
  90.     bool b_done;
  91.     int i_loops, i_alpha;
  92.     picture_t *p_base_image;
  93.     picture_t *p_blend_image;
  94.     vlc_fourcc_t i_base_chroma;
  95.     vlc_fourcc_t i_blend_chroma;
  96. };
  97. static int blendbench_LoadImage( vlc_object_t *p_this, picture_t **pp_pic,
  98.                                  vlc_fourcc_t i_chroma, char *psz_file, const char *psz_name )
  99. {
  100.     image_handler_t *p_image;
  101.     video_format_t fmt_in, fmt_out;
  102.     memset( &fmt_in, 0, sizeof(video_format_t) );
  103.     memset( &fmt_out, 0, sizeof(video_format_t) );
  104.     fmt_out.i_chroma = i_chroma;
  105.     p_image = image_HandlerCreate( p_this );
  106.     *pp_pic = image_ReadUrl( p_image, psz_file, &fmt_in, &fmt_out );
  107.     image_HandlerDelete( p_image );
  108.     if( *pp_pic == NULL )
  109.     {
  110.         msg_Err( p_this, "Unable to load %s image", psz_name );
  111.         return VLC_EGENERIC;
  112.     }
  113.     msg_Dbg( p_this, "%s image has dim %d x %d (Y plane)", psz_name,
  114.              (*pp_pic)->p[Y_PLANE].i_visible_pitch,
  115.              (*pp_pic)->p[Y_PLANE].i_visible_lines );
  116.     return VLC_SUCCESS;
  117. }
  118. /*****************************************************************************
  119.  * Create: allocates video thread output method
  120.  *****************************************************************************/
  121. static int Create( vlc_object_t *p_this )
  122. {
  123.     filter_t *p_filter = (filter_t *)p_this;
  124.     filter_sys_t *p_sys;
  125.     char *psz_temp, *psz_cmd;
  126.     /* Allocate structure */
  127.     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  128.     if( p_filter->p_sys == NULL )
  129.         return VLC_ENOMEM;
  130.     p_sys = p_filter->p_sys;
  131.     p_sys->b_done = false;
  132.     p_filter->pf_video_filter = Filter;
  133.     /* needed to get options passed in transcode using the
  134.      * adjust{name=value} syntax */
  135.     config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,
  136.                        p_filter->p_cfg );
  137.     p_sys->i_loops = var_CreateGetIntegerCommand( p_filter,
  138.                                                   CFG_PREFIX "loops" );
  139.     p_sys->i_alpha = var_CreateGetIntegerCommand( p_filter,
  140.                                                   CFG_PREFIX "alpha" );
  141.     psz_temp = var_CreateGetStringCommand( p_filter, CFG_PREFIX "base-chroma" );
  142.     p_sys->i_base_chroma = VLC_FOURCC( psz_temp[0], psz_temp[1],
  143.                                        psz_temp[2], psz_temp[3] );
  144.     psz_cmd = var_CreateGetStringCommand( p_filter, CFG_PREFIX "base-image" );
  145.     blendbench_LoadImage( p_this, &p_sys->p_base_image, p_sys->i_base_chroma,
  146.                           psz_cmd, "Base" );
  147.     free( psz_temp );
  148.     free( psz_cmd );
  149.     psz_temp = var_CreateGetStringCommand( p_filter,
  150.                                            CFG_PREFIX "blend-chroma" );
  151.     p_sys->i_blend_chroma = VLC_FOURCC( psz_temp[0], psz_temp[1],
  152.                                         psz_temp[2], psz_temp[3] );
  153.     psz_cmd = var_CreateGetStringCommand( p_filter, CFG_PREFIX "blend-image" );
  154.     blendbench_LoadImage( p_this, &p_sys->p_blend_image, p_sys->i_blend_chroma,
  155.                           psz_cmd, "Blend" );
  156.     free( psz_temp );
  157.     free( psz_cmd );
  158.     return VLC_SUCCESS;
  159. }
  160. /*****************************************************************************
  161.  * Destroy: destroy video thread output method
  162.  *****************************************************************************/
  163. static void Destroy( vlc_object_t *p_this )
  164. {
  165.     filter_t *p_filter = (filter_t *)p_this;
  166.     filter_sys_t *p_sys = p_filter->p_sys;
  167.     picture_Release( p_sys->p_base_image );
  168.     picture_Release( p_sys->p_blend_image );
  169. }
  170. /*****************************************************************************
  171.  * Render: displays previously rendered output
  172.  *****************************************************************************/
  173. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  174. {
  175.     filter_sys_t *p_sys = p_filter->p_sys;
  176.     filter_t *p_blend;
  177.     if( p_sys->b_done )
  178.         return p_pic;
  179.     p_blend = vlc_object_create( p_filter, sizeof(filter_t) );
  180.     if( !p_blend )
  181.     {
  182.         picture_Release( p_pic );
  183.         return NULL;
  184.     }
  185.     vlc_object_attach( p_blend, p_filter );
  186.     p_blend->fmt_out.video = p_sys->p_base_image->format;
  187.     p_blend->fmt_in.video = p_sys->p_blend_image->format;
  188.     p_blend->p_module = module_need( p_blend, "video blending", NULL, false );
  189.     if( !p_blend->p_module )
  190.     {
  191.         picture_Release( p_pic );
  192.         vlc_object_detach( p_blend );
  193.         vlc_object_release( p_blend );
  194.         return NULL;
  195.     }
  196.     mtime_t time = mdate();
  197.     for( int i_iter = 0; i_iter < p_sys->i_loops; ++i_iter )
  198.     {
  199.         p_blend->pf_video_blend( p_blend,
  200.                                  p_sys->p_base_image, p_sys->p_blend_image,
  201.                                  0, 0, p_sys->i_alpha );
  202.     }
  203.     time = mdate() - time;
  204.     msg_Info( p_filter, "Blended %d images in %f sec.", p_sys->i_loops,
  205.               time / 1000000.0f );
  206.     msg_Info( p_filter, "Speed is: %f images/second, %f pixels/second",
  207.               (float) p_sys->i_loops / time * 1000000,
  208.               (float) p_sys->i_loops / time * 1000000 *
  209.                   p_sys->p_blend_image->p[Y_PLANE].i_visible_pitch *
  210.                   p_sys->p_blend_image->p[Y_PLANE].i_visible_lines );
  211.     module_unneed( p_blend, p_blend->p_module );
  212.     vlc_object_detach( p_blend );
  213.     vlc_object_release( p_blend );
  214.     p_sys->b_done = true;
  215.     return p_pic;
  216. }