forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathripple.c
207 lines (180 loc) · 7.89 KB
/
ripple.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*****************************************************************************
* ripple.c : Ripple video effect plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2006 VLC authors and VideoLAN
*
* Authors: Samuel Hocevar <[email protected]>
* 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 Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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_picture.h>
#include "filter_picture.h"
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static int Create ( filter_t * );
VIDEO_FILTER_WRAPPER(Filter)
/*****************************************************************************
* Module descriptor
*****************************************************************************/
vlc_module_begin ()
set_description( N_("Ripple video filter") )
set_shortname( N_( "Ripple" ))
set_subcategory( SUBCAT_VIDEO_VFILTER )
add_shortcut( "ripple" )
set_callback_video_filter( Create )
vlc_module_end ()
/*****************************************************************************
* 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.
*****************************************************************************/
typedef struct
{
double f_angle;
vlc_tick_t last_date;
} filter_sys_t;
/*****************************************************************************
* Create: allocates Distort video thread output method
*****************************************************************************
* This function allocates and initializes a Distort vout method.
*****************************************************************************/
static int Create( filter_t *p_filter )
{
const vlc_chroma_description_t *p_chroma =
vlc_fourcc_GetChromaDescription( p_filter->fmt_in.video.i_chroma );
assert( p_chroma != NULL );
if( p_chroma->plane_count == 0 )
return VLC_EGENERIC;
/* Allocate structure */
filter_sys_t *p_sys = vlc_obj_malloc( VLC_OBJECT(p_filter), sizeof( filter_sys_t ) );
if( unlikely(p_sys == NULL) )
return VLC_ENOMEM;
p_filter->p_sys = p_sys;
p_filter->ops = &Filter_ops;
p_sys->f_angle = 0.0;
p_sys->last_date = 0;
return VLC_SUCCESS;
}
/*****************************************************************************
* 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 void Filter( filter_t *p_filter, picture_t *p_pic, picture_t *p_outpic )
{
double f_angle;
vlc_tick_t new_date = vlc_tick_now();
filter_sys_t *p_sys = p_filter->p_sys;
p_sys->f_angle -= 10.0f * secf_from_vlc_tick(p_sys->last_date - new_date);
p_sys->last_date = new_date;
f_angle = p_sys->f_angle;
for( int i_index = 0; i_index < p_pic->i_planes; i_index++ )
{
int i_first_line, i_visible_pitch, i_num_lines, i_offset, i_pixel_pitch,
i_visible_pixels;
uint16_t black_pixel;
uint8_t *p_in, *p_out;
black_pixel = ( p_pic->i_planes > 1 && i_index == Y_PLANE ) ? 0x00
: 0x80;
i_num_lines = p_pic->p[i_index].i_visible_lines;
i_visible_pitch = p_pic->p[i_index].i_visible_pitch;
i_pixel_pitch = p_pic->p[i_index].i_pixel_pitch;
switch( p_filter->fmt_in.video.i_chroma )
{
CASE_PLANAR_YUV10
black_pixel = ( p_pic->i_planes > 1 && i_index == Y_PLANE ) ? 0x00
: 0x200;
break;
CASE_PACKED_YUV_422
// Quick hack to fix u/v inversion occurring with 2 byte pixel pitch
i_pixel_pitch *= 2;
/* fallthrough */
CASE_PLANAR_YUV
black_pixel = ( p_pic->i_planes > 1 && i_index == Y_PLANE ) ? 0x00
: 0x80;
break;
default:
black_pixel = 0x00;
}
i_visible_pixels = i_visible_pitch/i_pixel_pitch;
i_first_line = i_num_lines * 4 / 5;
p_in = p_pic->p[i_index].p_pixels;
p_out = p_outpic->p[i_index].p_pixels;
for( int i_line = 0; i_line < i_first_line; i_line++ )
{
memcpy( p_out, p_in, i_visible_pitch );
p_in += p_pic->p[i_index].i_pitch;
p_out += p_outpic->p[i_index].i_pitch;
}
/* Ok, we do 3 times the sin() calculation for each line. So what ? */
for( int i_line = i_first_line; i_line < i_num_lines; i_line++ )
{
/* Calculate today's offset, don't go above 1/20th of the screen */
i_offset = (int)( (double)(i_visible_pixels)
* sin( f_angle + 2.0 * (double)i_line
/ (double)( 1 + i_line
- i_first_line) )
* (double)(i_line - i_first_line)
/ (double)i_num_lines
/ 8.0 )*i_pixel_pitch;
if( i_offset )
{
void *p_black_out;
if( i_offset < 0 )
{
memcpy( p_out, p_in - i_offset,
i_visible_pitch + i_offset );
p_black_out = &p_out[i_visible_pitch + i_offset];
i_offset = -i_offset;
}
else
{
memcpy( p_out + i_offset, p_in,
i_visible_pitch - i_offset );
p_black_out = p_out;
}
if (black_pixel > 0xFF)
{
uint16_t *p_out16 = p_black_out;
for (int x = 0; x < i_offset; x += 2)
*p_out16++ = black_pixel;
}
else
memset( p_black_out, black_pixel, i_offset );
}
else
{
memcpy( p_out, p_in, i_visible_pitch );
}
p_in -= p_pic->p[i_index].i_pitch;
p_out += p_outpic->p[i_index].i_pitch;
}
}
}