]> git.sesse.net Git - vlc/blob - modules/video_filter/psychedelic.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / psychedelic.c
1 /*****************************************************************************
2  * Psychedelic.c : Psychedelic video effect plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Antoine Cellerier <dionoea -at- videolan -dot- org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #include <math.h>                                            /* sin(), cos() */
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37
38 #include "vlc_filter.h"
39 #include "vlc_image.h"
40 #include "filter_picture.h"
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int  Create    ( vlc_object_t * );
46 static void Destroy   ( vlc_object_t * );
47
48 static picture_t *Filter( filter_t *, picture_t * );
49
50 /*****************************************************************************
51  * Module descriptor
52  *****************************************************************************/
53 vlc_module_begin();
54     set_description( N_("Psychedelic video filter") );
55     set_shortname( N_( "Psychedelic" ));
56     set_capability( "video filter2", 0 );
57     set_category( CAT_VIDEO );
58     set_subcategory( SUBCAT_VIDEO_VFILTER );
59
60     add_shortcut( "psychedelic" );
61     set_callbacks( Create, Destroy );
62 vlc_module_end();
63
64 /*****************************************************************************
65  * vout_sys_t: Distort video output method descriptor
66  *****************************************************************************
67  * This structure is part of the video output thread descriptor.
68  * It describes the Distort specific properties of an output thread.
69  *****************************************************************************/
70 struct filter_sys_t
71 {
72     image_handler_t *p_image;
73     unsigned int x, y, scale;
74     int xinc, yinc, scaleinc;
75     uint8_t u,v;
76 };
77
78 /*****************************************************************************
79  * Create: allocates Distort video thread output method
80  *****************************************************************************
81  * This function allocates and initializes a Distort vout method.
82  *****************************************************************************/
83 static int Create( vlc_object_t *p_this )
84 {
85     filter_t *p_filter = (filter_t *)p_this;
86
87     /* Allocate structure */
88     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
89     if( p_filter->p_sys == NULL )
90         return VLC_ENOMEM;
91
92     p_filter->pf_video_filter = Filter;
93
94     p_filter->p_sys->x = 10;
95     p_filter->p_sys->y = 10;
96     p_filter->p_sys->scale = 1;
97     p_filter->p_sys->xinc = 1;
98     p_filter->p_sys->yinc = 1;
99     p_filter->p_sys->scaleinc = 1;
100     p_filter->p_sys->u = 0;
101     p_filter->p_sys->v = 0;
102     p_filter->p_sys->p_image = NULL;
103
104     return VLC_SUCCESS;
105 }
106
107 /*****************************************************************************
108  * Destroy: destroy Distort video thread output method
109  *****************************************************************************
110  * Terminate an output method created by DistortCreateOutputMethod
111  *****************************************************************************/
112 static void Destroy( vlc_object_t *p_this )
113 {
114     filter_t *p_filter = (filter_t *)p_this;
115
116     if( p_filter->p_sys->p_image )
117         image_HandlerDelete( p_filter->p_sys->p_image );
118     p_filter->p_sys->p_image = NULL;
119
120     free( p_filter->p_sys );
121 }
122
123 /*****************************************************************************
124  * Render: displays previously rendered output
125  *****************************************************************************
126  * This function send the currently rendered image to Distort image, waits
127  * until it is displayed and switch the two rendering buffers, preparing next
128  * frame.
129  *****************************************************************************/
130 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
131 {
132     picture_t *p_outpic;
133
134     unsigned int w, h;
135     int x,y;
136     uint8_t u,v;
137
138     picture_t *p_converted;
139     video_format_t fmt_out;
140     memset( &fmt_out, 0, sizeof(video_format_t) );
141     fmt_out.p_palette = NULL;
142
143     if( !p_pic ) return NULL;
144
145     p_outpic = p_filter->pf_vout_buffer_new( p_filter );
146     if( !p_outpic )
147     {
148         msg_Warn( p_filter, "can't get output picture" );
149         if( p_pic->pf_release )
150             p_pic->pf_release( p_pic );
151         return NULL;
152     }
153
154     if( !p_filter->p_sys->p_image )
155         p_filter->p_sys->p_image = image_HandlerCreate( p_filter );
156
157     /* chrominance */
158     u = p_filter->p_sys->u;
159     v = p_filter->p_sys->v;
160     for( y = 0; y<p_outpic->p[U_PLANE].i_lines; y++)
161     {
162         vlc_memset(
163                 p_outpic->p[U_PLANE].p_pixels+y*p_outpic->p[U_PLANE].i_pitch,
164                 u, p_outpic->p[U_PLANE].i_pitch );
165         vlc_memset(
166                 p_outpic->p[V_PLANE].p_pixels+y*p_outpic->p[V_PLANE].i_pitch,
167                 v, p_outpic->p[V_PLANE].i_pitch );
168         if( v == 0 && u != 0 )
169             u --;
170         else if( u == 0xff )
171             v --;
172         else if( v == 0xff )
173             u ++;
174         else if( u == 0 )
175             v ++;
176     }
177
178     /* luminance */
179     vlc_memcpy( p_outpic->p[Y_PLANE].p_pixels, p_pic->p[Y_PLANE].p_pixels,
180                 p_outpic->p[Y_PLANE].i_lines * p_outpic->p[Y_PLANE].i_pitch );
181
182     /* image visualization */
183     fmt_out = p_filter->fmt_out.video;
184     fmt_out.i_width = p_filter->fmt_out.video.i_width*p_filter->p_sys->scale/150;
185     fmt_out.i_height = p_filter->fmt_out.video.i_height*p_filter->p_sys->scale/150;
186     p_converted = image_Convert( p_filter->p_sys->p_image, p_pic,
187                                  &(p_pic->format), &fmt_out );
188
189     if( p_converted )
190     {
191 #define copyimage( plane, b ) \
192     for( y=0; y<p_converted->p[plane].i_visible_lines; y++) { \
193     for( x=0; x<p_converted->p[plane].i_visible_pitch; x++) { \
194         int nx, ny; \
195         if( p_filter->p_sys->yinc == 1 ) \
196             ny= y; \
197         else \
198             ny = p_converted->p[plane].i_visible_lines-y; \
199         if( p_filter->p_sys->xinc == 1 ) \
200             nx = x; \
201         else \
202             nx = p_converted->p[plane].i_visible_pitch-x; \
203         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]; \
204     } }
205     copyimage( Y_PLANE, 2 );
206     copyimage( U_PLANE, 1 );
207     copyimage( V_PLANE, 1 );
208 #undef copyimage
209
210     p_converted->pf_release( p_converted );
211     }
212     else
213     {
214         msg_Err( p_filter, "Image scaling failed miserably." );
215     }
216
217     p_filter->p_sys->x += p_filter->p_sys->xinc;
218     p_filter->p_sys->y += p_filter->p_sys->yinc;
219
220     p_filter->p_sys->scale += p_filter->p_sys->scaleinc;
221     if( p_filter->p_sys->scale >= 50 ) p_filter->p_sys->scaleinc = -1;
222     if( p_filter->p_sys->scale <= 1 ) p_filter->p_sys->scaleinc = 1;
223
224     w = p_filter->fmt_out.video.i_width*p_filter->p_sys->scale/150;
225     h = p_filter->fmt_out.video.i_height*p_filter->p_sys->scale/150;
226     if( p_filter->p_sys->x*2 + w >= p_filter->fmt_out.video.i_width )
227         p_filter->p_sys->xinc = -1;
228     if( p_filter->p_sys->x <= 0 )
229         p_filter->p_sys->xinc = 1;
230
231     if( p_filter->p_sys->x*2 + w >= p_filter->fmt_out.video.i_width )
232         p_filter->p_sys->x = (p_filter->fmt_out.video.i_width-w)/2;
233     if( p_filter->p_sys->y*2 + h >= p_filter->fmt_out.video.i_height )
234         p_filter->p_sys->y = (p_filter->fmt_out.video.i_height-h)/2;
235
236     if( p_filter->p_sys->y*2 + h >= p_filter->fmt_out.video.i_height )
237         p_filter->p_sys->yinc = -1;
238     if( p_filter->p_sys->y <= 0 )
239         p_filter->p_sys->yinc = 1;
240
241     for( y = 0; y< 16; y++ )
242     {
243         if( p_filter->p_sys->v == 0 && p_filter->p_sys->u != 0 )
244             p_filter->p_sys->u -= 1;
245         else if( p_filter->p_sys->u == 0xff )
246             p_filter->p_sys->v -= 1;
247         else if( p_filter->p_sys->v == 0xff )
248             p_filter->p_sys->u += 1;
249         else if( p_filter->p_sys->u == 0 )
250             p_filter->p_sys->v += 1;
251     }
252
253     return CopyInfoAndRelease( p_outpic, p_pic );
254 }