⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 erase.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * erase.c : logo erase video filter ***************************************************************************** * Copyright (C) 2007 the VideoLAN team * $Id$ * * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <vlc_plugin.h>#include <vlc_sout.h>#include <vlc_vout.h>#include "vlc_image.h"#include "vlc_filter.h"#include "filter_picture.h"/***************************************************************************** * Local prototypes *****************************************************************************/static int  Create    ( vlc_object_t * );static void Destroy   ( vlc_object_t * );static picture_t *Filter( filter_t *, picture_t * );static void FilterErase( filter_t *, picture_t *, picture_t * );static int EraseCallback( vlc_object_t *, char const *,                          vlc_value_t, vlc_value_t, void * );/***************************************************************************** * Module descriptor *****************************************************************************/#define MASK_TEXT N_("Image mask")#define MASK_LONGTEXT N_("Image mask. Pixels with an alpha value greater than 50% will be erased.")#define POSX_TEXT N_("X coordinate")#define POSX_LONGTEXT N_("X coordinate of the mask.")#define POSY_TEXT N_("Y coordinate")#define POSY_LONGTEXT N_("Y coordinate of the mask.")#define CFG_PREFIX "erase-"vlc_module_begin();    set_description( N_("Erase video filter") );    set_shortname( N_( "Erase" ));    set_capability( "video filter2", 0 );    set_category( CAT_VIDEO );    set_subcategory( SUBCAT_VIDEO_VFILTER );    add_file( CFG_PREFIX "mask", NULL, NULL,              MASK_TEXT, MASK_LONGTEXT, false );    add_integer( CFG_PREFIX "x", 0, NULL, POSX_TEXT, POSX_LONGTEXT, false );    add_integer( CFG_PREFIX "y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, false );    add_shortcut( "erase" );    set_callbacks( Create, Destroy );vlc_module_end();static const char *const ppsz_filter_options[] = {    "mask", "x", "y", NULL};/***************************************************************************** * filter_sys_t *****************************************************************************/struct filter_sys_t{    int i_x;    int i_y;    picture_t *p_mask;    vlc_mutex_t lock;};static void LoadMask( filter_t *p_filter, const char *psz_filename ){    image_handler_t *p_image;    video_format_t fmt_in, fmt_out;    picture_t *p_old_mask = p_filter->p_sys->p_mask;    memset( &fmt_in, 0, sizeof( video_format_t ) );    memset( &fmt_out, 0, sizeof( video_format_t ) );    fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A');    p_image = image_HandlerCreate( p_filter );    p_filter->p_sys->p_mask =        image_ReadUrl( p_image, psz_filename, &fmt_in, &fmt_out );    if( p_filter->p_sys->p_mask )    {        if( p_old_mask )            picture_Release( p_old_mask );    }    else if( p_old_mask )    {        p_filter->p_sys->p_mask = p_old_mask;        msg_Err( p_filter, "Error while loading new mask. Keeping old mask." );    }    image_HandlerDelete( p_image );}/***************************************************************************** * Create *****************************************************************************/static int Create( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    filter_sys_t *p_sys;    char *psz_filename;    switch( p_filter->fmt_in.video.i_chroma )    {        case VLC_FOURCC('I','4','2','0'):        case VLC_FOURCC('I','Y','U','V'):        case VLC_FOURCC('J','4','2','0'):        case VLC_FOURCC('Y','V','1','2'):        case VLC_FOURCC('I','4','2','2'):        case VLC_FOURCC('J','4','2','2'):            break;        default:            msg_Err( p_filter, "Unsupported input chroma (%4s)",                     (char*)&(p_filter->fmt_in.video.i_chroma) );            return VLC_EGENERIC;    }    /* Allocate structure */    p_filter->p_sys = malloc( sizeof( filter_sys_t ) );    if( p_filter->p_sys == NULL )        return VLC_ENOMEM;    p_sys = p_filter->p_sys;    p_filter->pf_video_filter = Filter;    config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,                       p_filter->p_cfg );    psz_filename =        var_CreateGetNonEmptyStringCommand( p_filter, CFG_PREFIX "mask" );    if( !psz_filename )    {        msg_Err( p_filter, "Missing 'mask' option value." );        return VLC_EGENERIC;    }    p_sys->p_mask = NULL;    LoadMask( p_filter, psz_filename );    free( psz_filename );    p_sys->i_x = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "x" );    p_sys->i_y = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "y" );    var_AddCallback( p_filter, CFG_PREFIX "x", EraseCallback, p_sys );    var_AddCallback( p_filter, CFG_PREFIX "y", EraseCallback, p_sys );    var_AddCallback( p_filter, CFG_PREFIX "mask", EraseCallback, p_sys );    vlc_mutex_init( &p_sys->lock );    return VLC_SUCCESS;}/***************************************************************************** * Destroy *****************************************************************************/static void Destroy( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    filter_sys_t *p_sys = p_filter->p_sys;    if( p_sys->p_mask )        picture_Release( p_sys->p_mask );    vlc_mutex_destroy( &p_sys->lock );    free( p_filter->p_sys );}/***************************************************************************** * Filter *****************************************************************************/static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ){    picture_t *p_outpic;    if( !p_pic ) return NULL;    p_outpic = filter_NewPicture( p_filter );    if( !p_outpic )    {        picture_Release( p_pic );        return NULL;    }    /* Here */    FilterErase( p_filter, p_pic, p_outpic );    return CopyInfoAndRelease( p_outpic, p_pic );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -