📄 distort.c
字号:
/***************************************************************************** * distort.c : Misc video effects plugin for vlc ***************************************************************************** * Copyright (C) 2000-2006 the VideoLAN team * $Id: distort.c 17012 2006-10-09 22:11:32Z xtophe $ * * Authors: Samuel Hocevar <sam@zoy.org> * 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 *****************************************************************************/#include <stdlib.h> /* malloc(), free() */#include <string.h>#include <math.h> /* sin(), cos() */#include <vlc/vlc.h>#include <vlc/vout.h>#include "filter_common.h"#include "vlc_image.h"enum { WAVE, RIPPLE, GRADIENT, EDGE, HOUGH, PSYCHEDELIC };/***************************************************************************** * Local prototypes *****************************************************************************/static int Create ( vlc_object_t * );static void Destroy ( vlc_object_t * );static int Init ( vout_thread_t * );static void End ( vout_thread_t * );static void Render ( vout_thread_t *, picture_t * );static void DistortWave ( vout_thread_t *, picture_t *, picture_t * );static void DistortRipple ( vout_thread_t *, picture_t *, picture_t * );static void DistortGradient( vout_thread_t *, picture_t *, picture_t * );static void DistortEdge ( vout_thread_t *, picture_t *, picture_t * );static void DistortHough ( vout_thread_t *, picture_t *, picture_t * );static void DistortPsychedelic( vout_thread_t *, picture_t *, picture_t * );static int SendEvents ( vlc_object_t *, char const *, vlc_value_t, vlc_value_t, void * );/***************************************************************************** * Module descriptor *****************************************************************************/#define MODE_TEXT N_("Distort mode")#define MODE_LONGTEXT N_("Distort mode, one of \"wave\", \"ripple\", \"gradient\", \"edge\", \"hough\" and \"psychedelic\".")#define GRADIENT_TEXT N_("Gradient image type")#define GRADIENT_LONGTEXT N_("Gradient image type (0 or 1). 0 will " \ "turn the image to white while 1 will keep colors." )#define CARTOON_TEXT N_("Apply cartoon effect")#define CARTOON_LONGTEXT N_("Apply cartoon effect. It is only used by " \ "\"gradient\" and \"edge\".")static char *mode_list[] = { "wave", "ripple", "gradient", "edge", "hough", "psychedelic" };static char *mode_list_text[] = { N_("Wave"), N_("Ripple"), N_("Gradient"), N_("Edge"), N_("Hough"), N_("Psychedelic") };vlc_module_begin(); set_description( _("Distort video filter") ); set_shortname( _( "Distortion" )); set_capability( "video filter", 0 ); set_category( CAT_VIDEO ); set_subcategory( SUBCAT_VIDEO_VFILTER ); add_string( "distort-mode", "wave", NULL, MODE_TEXT, MODE_LONGTEXT, VLC_FALSE ); change_string_list( mode_list, mode_list_text, 0 ); add_integer_with_range( "distort-gradient-type", 0, 0, 1, NULL, GRADIENT_TEXT, GRADIENT_LONGTEXT, VLC_FALSE ); add_bool( "distort-cartoon", 1, NULL, CARTOON_TEXT, CARTOON_LONGTEXT, VLC_FALSE ); add_shortcut( "distort" ); set_callbacks( Create, Destroy );vlc_module_end();/***************************************************************************** * vout_sys_t: Distort video output method descriptor ***************************************************************************** * This structure is part of the video output thread descriptor. * It describes the Distort specific properties of an output thread. *****************************************************************************/struct vout_sys_t{ int i_mode; vout_thread_t *p_vout; /* For the wave mode */ double f_angle; mtime_t last_date; /* For the gradient mode */ int i_gradient_type; vlc_bool_t b_cartoon; /* For pyschedelic mode */ image_handler_t *p_image; unsigned int x, y, scale; int xinc, yinc, scaleinc; uint8_t u,v; /* For hough mode */ int *p_pre_hough;};/***************************************************************************** * Control: control facility for the vout (forwards to child vout) *****************************************************************************/static int Control( vout_thread_t *p_vout, int i_query, va_list args ){ return vout_vaControl( p_vout->p_sys->p_vout, i_query, args );}/***************************************************************************** * Create: allocates Distort video thread output method ***************************************************************************** * This function allocates and initializes a Distort vout method. *****************************************************************************/static int Create( vlc_object_t *p_this ){ vout_thread_t *p_vout = (vout_thread_t *)p_this; char *psz_method, *psz_method_tmp; /* Allocate structure */ p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); if( p_vout->p_sys == NULL ) { msg_Err( p_vout, "out of memory" ); return VLC_ENOMEM; } p_vout->pf_init = Init; p_vout->pf_end = End; p_vout->pf_manage = NULL; p_vout->pf_render = Render; p_vout->pf_display = NULL; p_vout->pf_control = Control; p_vout->p_sys->i_mode = 0; p_vout->p_sys->p_pre_hough = NULL; if( !(psz_method = psz_method_tmp = config_GetPsz( p_vout, "distort-mode" )) ) { msg_Err( p_vout, "configuration variable %s empty, using 'wave'", "distort-mode" ); p_vout->p_sys->i_mode = WAVE; } else { if( !strcmp( psz_method, "wave" ) ) { p_vout->p_sys->i_mode = WAVE; } else if( !strcmp( psz_method, "ripple" ) ) { p_vout->p_sys->i_mode = RIPPLE; } else if( !strcmp( psz_method, "gradient" ) ) { p_vout->p_sys->i_mode = GRADIENT; } else if( !strcmp( psz_method, "edge" ) ) { p_vout->p_sys->i_mode = EDGE; } else if( !strcmp( psz_method, "hough" ) ) { p_vout->p_sys->i_mode = HOUGH; } else if( !strcmp( psz_method, "psychedelic" ) ) { p_vout->p_sys->i_mode = PSYCHEDELIC; p_vout->p_sys->x = 10; p_vout->p_sys->y = 10; p_vout->p_sys->scale = 1; p_vout->p_sys->xinc = 1; p_vout->p_sys->yinc = 1; p_vout->p_sys->scaleinc = 1; p_vout->p_sys->u = 0; p_vout->p_sys->v = 0; } else { msg_Err( p_vout, "no valid distort mode provided, using wave" ); p_vout->p_sys->i_mode = WAVE; } } free( psz_method_tmp ); p_vout->p_sys->i_gradient_type = config_GetInt( p_vout, "distort-gradient-type" ); p_vout->p_sys->b_cartoon = config_GetInt( p_vout, "distort-cartoon" ); return VLC_SUCCESS;}/***************************************************************************** * Init: initialize Distort video thread output method *****************************************************************************/static int Init( vout_thread_t *p_vout ){ int i_index; picture_t *p_pic; video_format_t fmt = {0}; I_OUTPUTPICTURES = 0; /* Initialize the output structure */ p_vout->output.i_chroma = p_vout->render.i_chroma; p_vout->output.i_width = p_vout->render.i_width; p_vout->output.i_height = p_vout->render.i_height; p_vout->output.i_aspect = p_vout->render.i_aspect; p_vout->fmt_out = p_vout->fmt_in; fmt = p_vout->fmt_out; /* Try to open the real video output */ msg_Dbg( p_vout, "spawning the real video output" ); p_vout->p_sys->p_vout = vout_Create( p_vout, &fmt ); /* Everything failed */ if( p_vout->p_sys->p_vout == NULL ) { msg_Err( p_vout, "cannot open vout, aborting" ); return VLC_EGENERIC; } ALLOCATE_DIRECTBUFFERS( VOUT_MAX_PICTURES ); ADD_CALLBACKS( p_vout->p_sys->p_vout, SendEvents ); ADD_PARENT_CALLBACKS( SendEventsToChild ); p_vout->p_sys->f_angle = 0.0; p_vout->p_sys->last_date = 0; p_vout->p_sys->p_image = NULL; return VLC_SUCCESS;}/***************************************************************************** * End: terminate Distort video thread output method *****************************************************************************/static void End( vout_thread_t *p_vout ){ int i_index; /* Free the fake output buffers we allocated */ for( i_index = I_OUTPUTPICTURES ; i_index ; ) { i_index--; free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig ); }}/***************************************************************************** * Destroy: destroy Distort video thread output method ***************************************************************************** * Terminate an output method created by DistortCreateOutputMethod *****************************************************************************/static void Destroy( vlc_object_t *p_this ){ vout_thread_t *p_vout = (vout_thread_t *)p_this; if( p_vout->p_sys->p_vout ) { DEL_CALLBACKS( p_vout->p_sys->p_vout, SendEvents ); vlc_object_detach( p_vout->p_sys->p_vout ); vout_Destroy( p_vout->p_sys->p_vout ); } DEL_PARENT_CALLBACKS( SendEventsToChild ); if(p_vout->p_sys->p_pre_hough) free(p_vout->p_sys->p_pre_hough); if( p_vout->p_sys->p_image ) image_HandlerDelete( p_vout->p_sys->p_image ); free( p_vout->p_sys );}/***************************************************************************** * Render: displays previously rendered output ***************************************************************************** * This function send the currently rendered image to Distort image, waits * until it is displayed and switch the two rendering buffers, preparing next * frame. *****************************************************************************/static void Render( vout_thread_t *p_vout, picture_t *p_pic ){ picture_t *p_outpic; /* This is a new frame. Get a structure from the video_output. */ while( ( p_outpic = vout_CreatePicture( p_vout->p_sys->p_vout, 0, 0, 0 ) ) == NULL ) { if( p_vout->b_die || p_vout->b_error ) { return; } msleep( VOUT_OUTMEM_SLEEP ); } vout_DatePicture( p_vout->p_sys->p_vout, p_outpic, p_pic->date ); switch( p_vout->p_sys->i_mode ) { case WAVE: DistortWave( p_vout, p_pic, p_outpic ); break; case RIPPLE: DistortRipple( p_vout, p_pic, p_outpic ); break; case EDGE: DistortEdge( p_vout, p_pic, p_outpic ); break; case GRADIENT: DistortGradient( p_vout, p_pic, p_outpic ); break; case HOUGH: DistortHough( p_vout, p_pic, p_outpic ); break; case PSYCHEDELIC: DistortPsychedelic( p_vout, p_pic, p_outpic ); break; default: break; } vout_DisplayPicture( p_vout->p_sys->p_vout, p_outpic );}/***************************************************************************** * DistortWave: draw a wave effect on the picture *****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -