psychedelic.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * Psychedelic.c : Psychedelic video effect plugin for vlc
- *****************************************************************************
- * Copyright (C) 2000-2006 the VideoLAN team
- * $Id: 2e1c53c36acbb924206f16db2b97e675cdcd2ae7 $
- *
- * 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
- *****************************************************************************/
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <math.h> /* sin(), cos() */
- #include <vlc_common.h>
- #include <vlc_plugin.h>
- #include "vlc_filter.h"
- #include "vlc_image.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 * );
- /*****************************************************************************
- * Module descriptor
- *****************************************************************************/
- vlc_module_begin ()
- set_description( N_("Psychedelic video filter") )
- set_shortname( N_( "Psychedelic" ))
- set_capability( "video filter2", 0 )
- set_category( CAT_VIDEO )
- set_subcategory( SUBCAT_VIDEO_VFILTER )
- add_shortcut( "psychedelic" )
- 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 filter_sys_t
- {
- image_handler_t *p_image;
- unsigned int x, y, scale;
- int xinc, yinc, scaleinc;
- uint8_t u,v;
- };
- /*****************************************************************************
- * Create: allocates Distort video thread output method
- *****************************************************************************
- * This function allocates and initializes a Distort vout method.
- *****************************************************************************/
- static int Create( vlc_object_t *p_this )
- {
- filter_t *p_filter = (filter_t *)p_this;
- /* Allocate structure */
- p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
- if( p_filter->p_sys == NULL )
- return VLC_ENOMEM;
- p_filter->pf_video_filter = Filter;
- p_filter->p_sys->x = 10;
- p_filter->p_sys->y = 10;
- p_filter->p_sys->scale = 1;
- p_filter->p_sys->xinc = 1;
- p_filter->p_sys->yinc = 1;
- p_filter->p_sys->scaleinc = 1;
- p_filter->p_sys->u = 0;
- p_filter->p_sys->v = 0;
- p_filter->p_sys->p_image = NULL;
- return VLC_SUCCESS;
- }
- /*****************************************************************************
- * Destroy: destroy Distort video thread output method
- *****************************************************************************
- * Terminate an output method created by DistortCreateOutputMethod
- *****************************************************************************/
- static void Destroy( vlc_object_t *p_this )
- {
- filter_t *p_filter = (filter_t *)p_this;
- if( p_filter->p_sys->p_image )
- image_HandlerDelete( p_filter->p_sys->p_image );
- p_filter->p_sys->p_image = NULL;
- free( p_filter->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 picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
- {
- picture_t *p_outpic;
- unsigned int w, h;
- int x,y;
- uint8_t u,v;
- picture_t *p_converted;
- video_format_t fmt_out;
- memset( &fmt_out, 0, sizeof(video_format_t) );
- fmt_out.p_palette = NULL;
- if( !p_pic ) return NULL;
- p_outpic = filter_NewPicture( p_filter );
- if( !p_outpic )
- {
- picture_Release( p_pic );
- return NULL;
- }
- if( !p_filter->p_sys->p_image )
- p_filter->p_sys->p_image = image_HandlerCreate( p_filter );
- /* chrominance */
- u = p_filter->p_sys->u;
- v = p_filter->p_sys->v;
- for( y = 0; y<p_outpic->p[U_PLANE].i_lines; y++)
- {
- vlc_memset(
- p_outpic->p[U_PLANE].p_pixels+y*p_outpic->p[U_PLANE].i_pitch,
- u, p_outpic->p[U_PLANE].i_pitch );
- vlc_memset(
- p_outpic->p[V_PLANE].p_pixels+y*p_outpic->p[V_PLANE].i_pitch,
- v, p_outpic->p[V_PLANE].i_pitch );
- if( v == 0 && u != 0 )
- u --;
- else if( u == 0xff )
- v --;
- else if( v == 0xff )
- u ++;
- else if( u == 0 )
- v ++;
- }
- /* luminance */
- vlc_memcpy( p_outpic->p[Y_PLANE].p_pixels, p_pic->p[Y_PLANE].p_pixels,
- p_outpic->p[Y_PLANE].i_lines * p_outpic->p[Y_PLANE].i_pitch );
- /* image visualization */
- fmt_out = p_filter->fmt_out.video;
- fmt_out.i_width = p_filter->fmt_out.video.i_width*p_filter->p_sys->scale/150;
- fmt_out.i_height = p_filter->fmt_out.video.i_height*p_filter->p_sys->scale/150;
- p_converted = image_Convert( p_filter->p_sys->p_image, p_pic,
- &(p_pic->format), &fmt_out );
- if( p_converted )
- {
- #define copyimage( plane, b )
- for( y=0; y<p_converted->p[plane].i_visible_lines; y++) {
- for( x=0; x<p_converted->p[plane].i_visible_pitch; x++) {
- int nx, ny;
- if( p_filter->p_sys->yinc == 1 )
- ny= y;
- else
- ny = p_converted->p[plane].i_visible_lines-y;
- if( p_filter->p_sys->xinc == 1 )
- nx = x;
- else
- nx = p_converted->p[plane].i_visible_pitch-x;
- p_outpic->p[plane].p_pixels[(p_filter->p_sys->x*b+nx)+(ny+p_filter->p_sys->y*b)*p_outpic->p[plane].i_pitch ] = p_converted->p[plane].p_pixels[y*p_converted->p[plane].i_pitch+x];
- } }
- copyimage( Y_PLANE, 2 );
- copyimage( U_PLANE, 1 );
- copyimage( V_PLANE, 1 );
- #undef copyimage
- picture_Release( p_converted );
- }
- else
- {
- msg_Err( p_filter, "Image scaling failed miserably." );
- }
- p_filter->p_sys->x += p_filter->p_sys->xinc;
- p_filter->p_sys->y += p_filter->p_sys->yinc;
- p_filter->p_sys->scale += p_filter->p_sys->scaleinc;
- if( p_filter->p_sys->scale >= 50 ) p_filter->p_sys->scaleinc = -1;
- if( p_filter->p_sys->scale <= 1 ) p_filter->p_sys->scaleinc = 1;
- w = p_filter->fmt_out.video.i_width*p_filter->p_sys->scale/150;
- h = p_filter->fmt_out.video.i_height*p_filter->p_sys->scale/150;
- if( p_filter->p_sys->x*2 + w >= p_filter->fmt_out.video.i_width )
- p_filter->p_sys->xinc = -1;
- if( p_filter->p_sys->x <= 0 )
- p_filter->p_sys->xinc = 1;
- if( p_filter->p_sys->x*2 + w >= p_filter->fmt_out.video.i_width )
- p_filter->p_sys->x = (p_filter->fmt_out.video.i_width-w)/2;
- if( p_filter->p_sys->y*2 + h >= p_filter->fmt_out.video.i_height )
- p_filter->p_sys->y = (p_filter->fmt_out.video.i_height-h)/2;
- if( p_filter->p_sys->y*2 + h >= p_filter->fmt_out.video.i_height )
- p_filter->p_sys->yinc = -1;
- if( p_filter->p_sys->y <= 0 )
- p_filter->p_sys->yinc = 1;
- for( y = 0; y< 16; y++ )
- {
- if( p_filter->p_sys->v == 0 && p_filter->p_sys->u != 0 )
- p_filter->p_sys->u -= 1;
- else if( p_filter->p_sys->u == 0xff )
- p_filter->p_sys->v -= 1;
- else if( p_filter->p_sys->v == 0xff )
- p_filter->p_sys->u += 1;
- else if( p_filter->p_sys->u == 0 )
- p_filter->p_sys->v += 1;
- }
- return CopyInfoAndRelease( p_outpic, p_pic );
- }