X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvideo_filter%2Fpsychedelic.c;h=8c6d34da8723f39bfe58778a76629167d9b2168b;hb=180c722e1eb51f1ae6f59545b3d8dcb312e9ea5f;hp=8be202a2182fc5a40c61cb517fde5d4f786f0c74;hpb=42bb236284b09355d8bfde47fb4915dd1f07aa68;p=vlc diff --git a/modules/video_filter/psychedelic.c b/modules/video_filter/psychedelic.c index 8be202a218..8c6d34da87 100644 --- a/modules/video_filter/psychedelic.c +++ b/modules/video_filter/psychedelic.c @@ -26,17 +26,17 @@ * Preamble *****************************************************************************/ -#include /* sin(), cos() */ - #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include /* sin(), cos() */ + #include #include -#include "vlc_filter.h" -#include "vlc_image.h" +#include +#include #include "filter_picture.h" /***************************************************************************** @@ -50,19 +50,19 @@ 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 ); +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(); + add_shortcut( "psychedelic" ) + set_callbacks( Create, Destroy ) +vlc_module_end () /***************************************************************************** - * vout_sys_t: Distort video output method descriptor + * filter_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. @@ -142,12 +142,10 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ) if( !p_pic ) return NULL; - p_outpic = p_filter->pf_vout_buffer_new( p_filter ); + p_outpic = filter_NewPicture( p_filter ); if( !p_outpic ) { - msg_Warn( p_filter, "can't get output picture" ); - if( p_pic->pf_release ) - p_pic->pf_release( p_pic ); + picture_Release( p_pic ); return NULL; } @@ -189,25 +187,25 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ) if( p_converted ) { #define copyimage( plane, b ) \ - for( y=0; yp[plane].i_visible_lines; y++) { \ - for( x=0; xp[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 ); + for( y=0; yp[plane].i_visible_lines; y++) { \ + for( x=0; xp[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 - p_converted->pf_release( p_converted ); + picture_Release( p_converted ); } else {