]> git.sesse.net Git - vlc/blob - modules/video_filter/wave.c
9fb782af3bfcede850aaf60fe5e1b0326719f82d
[vlc] / modules / video_filter / wave.c
1 /*****************************************************************************
2  * wave.c : Wave 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/vlc.h>
36 #include <vlc_vout.h>
37
38 #include "vlc_filter.h"
39
40 /*****************************************************************************
41  * Local prototypes
42  *****************************************************************************/
43 static int  Create    ( vlc_object_t * );
44 static void Destroy   ( vlc_object_t * );
45
46 static picture_t *Filter( filter_t *, picture_t * );
47
48 /*****************************************************************************
49  * Module descriptor
50  *****************************************************************************/
51 vlc_module_begin();
52     set_description( _("Wave video filter") );
53     set_shortname( _( "Wave" ));
54     set_capability( "video filter2", 0 );
55     set_category( CAT_VIDEO );
56     set_subcategory( SUBCAT_VIDEO_VFILTER );
57
58     add_shortcut( "wave" );
59     set_callbacks( Create, Destroy );
60 vlc_module_end();
61
62 /*****************************************************************************
63  * vout_sys_t: Distort video output method descriptor
64  *****************************************************************************
65  * This structure is part of the video output thread descriptor.
66  * It describes the Distort specific properties of an output thread.
67  *****************************************************************************/
68 struct filter_sys_t
69 {
70     double  f_angle;
71     mtime_t last_date;
72 };
73
74 /*****************************************************************************
75  * Create: allocates Distort video thread output method
76  *****************************************************************************
77  * This function allocates and initializes a Distort vout method.
78  *****************************************************************************/
79 static int Create( vlc_object_t *p_this )
80 {
81     filter_t *p_filter = (filter_t *)p_this;
82
83     /* Allocate structure */
84     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
85     if( p_filter->p_sys == NULL )
86     {
87         msg_Err( p_filter, "out of memory" );
88         return VLC_ENOMEM;
89     }
90
91     p_filter->pf_video_filter = Filter;
92
93     p_filter->p_sys->f_angle = 0.0;
94     p_filter->p_sys->last_date = 0;
95
96     return VLC_SUCCESS;
97 }
98
99 /*****************************************************************************
100  * Destroy: destroy Distort video thread output method
101  *****************************************************************************
102  * Terminate an output method created by DistortCreateOutputMethod
103  *****************************************************************************/
104 static void Destroy( vlc_object_t *p_this )
105 {
106     filter_t *p_filter = (filter_t *)p_this;
107     free( p_filter->p_sys );
108 }
109
110 /*****************************************************************************
111  * Render: displays previously rendered output
112  *****************************************************************************
113  * This function send the currently rendered image to Distort image, waits
114  * until it is displayed and switch the two rendering buffers, preparing next
115  * frame.
116  *****************************************************************************/
117 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
118 {
119     picture_t *p_outpic;
120     int i_index;
121     double f_angle;
122     mtime_t new_date = mdate();
123
124     if( !p_pic ) return NULL;
125
126     p_outpic = p_filter->pf_vout_buffer_new( p_filter );
127     if( !p_outpic )
128     {
129         msg_Warn( p_filter, "can't get output picture" );
130         if( p_pic->pf_release )
131             p_pic->pf_release( p_pic );
132         return NULL;
133     }
134
135     p_filter->p_sys->f_angle += (new_date - p_filter->p_sys->last_date) / 200000.0;
136     p_filter->p_sys->last_date = new_date;
137     f_angle = p_filter->p_sys->f_angle;
138
139     for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
140     {
141         int i_line, i_num_lines, i_visible_pitch, i_pixel_pitch, i_offset,
142             i_visible_pixels;
143         uint8_t black_pixel;
144         uint8_t *p_in, *p_out;
145
146         p_in = p_pic->p[i_index].p_pixels;
147         p_out = p_outpic->p[i_index].p_pixels;
148
149         i_num_lines = p_pic->p[i_index].i_visible_lines;
150         i_visible_pitch = p_pic->p[i_index].i_visible_pitch;
151         i_pixel_pitch = p_pic->p[i_index].i_pixel_pitch;
152         i_visible_pixels = i_visible_pitch/i_pixel_pitch;
153
154         black_pixel = ( i_index == Y_PLANE ) ? 0x00 : 0x80;
155
156         /* Ok, we do 3 times the sin() calculation for each line. So what ? */
157         for( i_line = 0 ; i_line < i_num_lines ; i_line++ )
158         {
159             /* Calculate today's offset, don't go above 1/20th of the screen */
160             i_offset = (int)( (double)(i_visible_pixels)
161                          * sin( f_angle + 10.0 * (double)i_line
162                                                / (double)i_num_lines )
163                          / 20.0 )*i_pixel_pitch;
164
165             if( i_offset )
166             {
167                 if( i_offset < 0 )
168                 {
169                     vlc_memcpy( p_out, p_in - i_offset,
170                                 i_visible_pitch + i_offset );
171                     p_in += p_pic->p[i_index].i_pitch;
172                     p_out += p_outpic->p[i_index].i_pitch;
173                     vlc_memset( p_out + i_offset, black_pixel, -i_offset );
174                 }
175                 else
176                 {
177                     vlc_memcpy( p_out + i_offset, p_in,
178                                 i_visible_pitch - i_offset );
179                     vlc_memset( p_out, black_pixel, i_offset );
180                     p_in += p_pic->p[i_index].i_pitch;
181                     p_out += p_outpic->p[i_index].i_pitch;
182                 }
183             }
184             else
185             {
186                 vlc_memcpy( p_out, p_in, i_visible_pitch );
187                 p_in += p_pic->p[i_index].i_pitch;
188                 p_out += p_outpic->p[i_index].i_pitch;
189             }
190
191         }
192     }
193
194     p_outpic->date = p_pic->date;
195     p_outpic->b_force = p_pic->b_force;
196     p_outpic->i_nb_fields = p_pic->i_nb_fields;
197     p_outpic->b_progressive = p_pic->b_progressive;
198     p_outpic->b_top_field_first = p_pic->b_top_field_first;
199
200     if( p_pic->pf_release )
201         p_pic->pf_release( p_pic );
202
203     return p_outpic;
204 }