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

📄 rotate.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * rotate.c : video rotation filter ***************************************************************************** * Copyright (C) 2000-2008 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 <math.h>                                            /* sin(), cos() */#include <vlc_common.h>#include <vlc_plugin.h>#include <vlc_vout.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 picture_t *FilterPacked( filter_t *, picture_t * );static int RotateCallback( vlc_object_t *p_this, char const *psz_var,                           vlc_value_t oldval, vlc_value_t newval,                           void *p_data );static int PreciseRotateCallback( vlc_object_t *p_this, char const *psz_var,                           vlc_value_t oldval, vlc_value_t newval,                           void *p_data );#define ANGLE_TEXT N_("Angle in degrees")#define ANGLE_LONGTEXT N_("Angle in degrees (0 to 359)")#define FILTER_PREFIX "rotate-"/***************************************************************************** * Module descriptor *****************************************************************************/vlc_module_begin();    set_description( N_("Rotate video filter") );    set_shortname( N_( "Rotate" ));    set_capability( "video filter2", 0 );    set_category( CAT_VIDEO );    set_subcategory( SUBCAT_VIDEO_VFILTER );    add_integer_with_range( FILTER_PREFIX "angle", 30, 0, 359, NULL,        ANGLE_TEXT, ANGLE_LONGTEXT, false );    add_shortcut( "rotate" );    set_callbacks( Create, Destroy );vlc_module_end();static const char *const ppsz_filter_options[] = {    "angle", NULL};/***************************************************************************** * filter_sys_t *****************************************************************************/struct filter_sys_t{    int     i_angle;    int     i_cos;    int     i_sin;};static inline void cache_trigo( int i_angle, int *i_sin, int *i_cos ){    const double f_angle = (((double)i_angle)*M_PI)/1800.;    *i_sin = (int)(sin( f_angle )*4096.);    *i_cos = (int)(cos( f_angle )*4096.);}/***************************************************************************** * Create: allocates Distort video filter *****************************************************************************/static int Create( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    filter_sys_t *p_sys;    if( p_filter->fmt_in.video.i_chroma != p_filter->fmt_out.video.i_chroma )    {        msg_Err( p_filter, "Input and output chromas don't match" );        return VLC_EGENERIC;    }    switch( p_filter->fmt_in.video.i_chroma )    {        CASE_PLANAR_YUV            p_filter->pf_video_filter = Filter;            break;        CASE_PACKED_YUV_422            p_filter->pf_video_filter = FilterPacked;            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;    config_ChainParse( p_filter, FILTER_PREFIX, ppsz_filter_options,                       p_filter->p_cfg );    p_sys->i_angle = var_CreateGetIntegerCommand( p_filter,                                                  FILTER_PREFIX "angle" ) * 10;    var_Create( p_filter, FILTER_PREFIX "deciangle",                VLC_VAR_INTEGER|VLC_VAR_ISCOMMAND );    var_AddCallback( p_filter, FILTER_PREFIX "angle", RotateCallback, p_sys );    var_AddCallback( p_filter, FILTER_PREFIX "deciangle",                     PreciseRotateCallback, p_sys );    cache_trigo( p_sys->i_angle, &p_sys->i_sin, &p_sys->i_cos );    return VLC_SUCCESS;}/***************************************************************************** * Destroy: destroy Distort filter *****************************************************************************/static void Destroy( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    free( p_filter->p_sys );}/***************************************************************************** * *****************************************************************************/static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ){    picture_t *p_outpic;    filter_sys_t *p_sys = p_filter->p_sys;    int i_plane;    const int i_sin = p_sys->i_sin, i_cos = p_sys->i_cos;    if( !p_pic ) return NULL;    p_outpic = filter_NewPicture( p_filter );    if( !p_outpic )    {        picture_Release( p_pic );        return NULL;    }    for( i_plane = 0 ; i_plane < p_pic->i_planes ; i_plane++ )    {        const int i_visible_lines = p_pic->p[i_plane].i_visible_lines;        const int i_visible_pitch = p_pic->p[i_plane].i_visible_pitch;        const int i_pitch         = p_pic->p[i_plane].i_pitch;        const int i_hidden_pitch  = i_pitch - i_visible_pitch;        const int i_aspect = ( i_visible_lines * p_pic->p[Y_PLANE].i_visible_pitch ) / ( p_pic->p[Y_PLANE].i_visible_lines * i_visible_pitch );        /* = 2 for U and V planes in YUV 4:2:2, = 1 otherwise */        const int i_line_center = i_visible_lines>>1;        const int i_col_center  = i_visible_pitch>>1;        const uint8_t *p_in = p_pic->p[i_plane].p_pixels;        uint8_t *p_out = p_outpic->p[i_plane].p_pixels;        uint8_t *p_outendline = p_out + i_visible_pitch;        const uint8_t *p_outend = p_out + i_visible_lines * i_pitch;        const uint8_t black_pixel = ( i_plane == Y_PLANE ) ? 0x00 : 0x80;        const int i_line_next =  i_cos / i_aspect -i_sin*i_visible_pitch;        const int i_col_next  = -i_sin / i_aspect -i_cos*i_visible_pitch;        int i_line_orig0 = ( - i_cos * i_line_center / i_aspect

⌨️ 快捷键说明

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