]> git.sesse.net Git - vlc/blob - modules/video_filter/bluescreen.c
Invert lines (cosmetic change only)
[vlc] / modules / video_filter / bluescreen.c
1 /*****************************************************************************
2  * bluescreen.c : Bluescreen (weather channel like) video filter for vlc
3  *****************************************************************************
4  * Copyright (C) 2005-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea at videolan tod org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc_vout.h>
32
33 #include "vlc_filter.h"
34
35 #define BLUESCREEN_HELP N_( \
36     "This effect, also known as \"greenscreen\" or \"chroma key\" blends " \
37     "the \"blue parts\" of the foreground image of the mosaic on the " \
38     "background (like weather forcasts). You can choose the \"key\" " \
39     "color for blending (blyyue by default)." )
40
41 #define BLUESCREENU_TEXT N_("Bluescreen U value")
42 #define BLUESCREENU_LONGTEXT N_( \
43         "\"U\" value for the bluescreen key color " \
44         "(in YUV values). From 0 to 255. Defaults to 120 for blue." )
45 #define BLUESCREENV_TEXT N_("Bluescreen V value")
46 #define BLUESCREENV_LONGTEXT N_( \
47         "\"V\" value for the bluescreen key color " \
48         "(in YUV values). From 0 to 255. Defaults to 90 for blue." )
49 #define BLUESCREENUTOL_TEXT N_("Bluescreen U tolerance")
50 #define BLUESCREENUTOL_LONGTEXT N_( \
51         "Tolerance of the bluescreen blender " \
52         "on color variations for the U plane. A value between 10 and 20 " \
53         "seems sensible." )
54 #define BLUESCREENVTOL_TEXT N_("Bluescreen V tolerance")
55 #define BLUESCREENVTOL_LONGTEXT N_( \
56         "Tolerance of the bluescreen blender " \
57         "on color variations for the V plane. A value between 10 and 20 " \
58         "seems sensible." )
59
60 #define CFG_PREFIX "bluescreen-"
61
62 /*****************************************************************************
63  * Local prototypes
64  *****************************************************************************/
65 static int  Create      ( vlc_object_t * );
66 static void Destroy     ( vlc_object_t * );
67
68 static picture_t *Filter( filter_t *, picture_t * );
69 static int BluescreenCallback( vlc_object_t *, char const *,
70                                vlc_value_t, vlc_value_t, void * );
71
72 /*****************************************************************************
73  * Module descriptor
74  *****************************************************************************/
75 vlc_module_begin();
76     set_description( _("Bluescreen video filter") );
77     set_shortname( _("Bluescreen" ));
78     set_help( BLUESCREEN_HELP );
79     set_category( CAT_VIDEO );
80     set_subcategory( SUBCAT_VIDEO_VFILTER );
81     set_capability( "video filter2", 0 );
82     add_shortcut( "bluescreen" );
83     set_callbacks( Create, Destroy );
84
85     add_integer_with_range( CFG_PREFIX "u", 120, 0, 255, NULL,
86                             BLUESCREENU_TEXT, BLUESCREENU_LONGTEXT, VLC_FALSE );
87     add_integer_with_range( CFG_PREFIX "v", 90, 0, 255, NULL,
88                             BLUESCREENV_TEXT, BLUESCREENV_LONGTEXT, VLC_FALSE );
89     add_integer_with_range( CFG_PREFIX "ut", 17, 0, 255, NULL,
90                             BLUESCREENUTOL_TEXT, BLUESCREENUTOL_LONGTEXT,
91                             VLC_FALSE );
92     add_integer_with_range( CFG_PREFIX "vt", 17, 0, 255, NULL,
93                             BLUESCREENVTOL_TEXT, BLUESCREENVTOL_LONGTEXT,
94                             VLC_FALSE );
95 vlc_module_end();
96
97 static const char *ppsz_filter_options[] = {
98     "u", "v", "ut", "vt", NULL
99 };
100
101 struct filter_sys_t
102 {
103     int i_u, i_v, i_ut, i_vt;
104     uint8_t *p_at;
105 };
106
107 static int Create( vlc_object_t *p_this )
108 {
109     filter_t *p_filter = (filter_t *)p_this;
110     filter_sys_t *p_sys;
111
112     if( p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','A') )
113     {
114         msg_Err( p_filter,
115                  "Unsupported input chroma \"%4s\". "
116                  "Bluescreen can only use \"YUVA\".",
117                  (char*)&p_filter->fmt_in.video.i_chroma );
118         return VLC_EGENERIC;
119     }
120
121     /* Allocate structure */
122     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
123     if( p_filter->p_sys == NULL )
124     {
125         msg_Err( p_filter, "out of memory" );
126         return VLC_ENOMEM;
127     }
128     p_sys = p_filter->p_sys;
129
130     config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,
131                        p_filter->p_cfg );
132
133 #define GET_VAR( name, min, max )                                           \
134     p_sys->i_##name = __MIN( max, __MAX( min,                               \
135         var_CreateGetIntegerCommand( p_filter, CFG_PREFIX #name ) ) );      \
136     var_AddCallback( p_filter, CFG_PREFIX #name, BluescreenCallback, p_sys );
137
138     GET_VAR( u, 0x00, 0xff );
139     GET_VAR( v, 0x00, 0xff );
140     GET_VAR( ut, 0x00, 0xff );
141     GET_VAR( vt, 0x00, 0xff );
142     p_sys->p_at = NULL;
143
144     p_filter->pf_video_filter = Filter;
145
146     return VLC_SUCCESS;
147 }
148
149 static void Destroy( vlc_object_t *p_this )
150 {
151     filter_t *p_filter = (filter_t *)p_this;
152
153     free( p_filter->p_sys->p_at );
154     free( p_filter->p_sys );
155 }
156
157 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
158 {
159     filter_sys_t *p_sys = p_filter->p_sys;
160
161     int i,j;
162     int i_lines = p_pic->p[ A_PLANE ].i_lines;
163     int i_pitch = p_pic->p[ A_PLANE ].i_pitch;
164     uint8_t *p_a = p_pic->p[ A_PLANE ].p_pixels;
165     uint8_t *p_at;
166     uint8_t *p_u = p_pic->p[ U_PLANE ].p_pixels;
167     uint8_t *p_v = p_pic->p[ V_PLANE ].p_pixels;
168     uint8_t umin, umax, vmin, vmax;
169
170     if( p_pic->format.i_chroma != VLC_FOURCC('Y','U','V','A') )
171     {
172         msg_Err( p_filter,
173                  "Unsupported input chroma \"%4s\". "
174                  "Bluescreen can only use \"YUVA\".",
175                  (char*)&p_pic->format.i_chroma );
176         return NULL;
177     }
178
179     p_sys->p_at = realloc( p_sys->p_at, i_lines * i_pitch * sizeof( uint8_t ) );
180     p_at = p_sys->p_at;
181
182     umin = p_sys->i_u - p_sys->i_ut >= 0x00 ? p_sys->i_u - p_sys->i_ut : 0x00;
183     umax = p_sys->i_u + p_sys->i_ut <= 0xff ? p_sys->i_u + p_sys->i_ut : 0xff;
184     vmin = p_sys->i_v - p_sys->i_vt >= 0x00 ? p_sys->i_v - p_sys->i_vt : 0x00;
185     vmax = p_sys->i_v + p_sys->i_vt <= 0xff ? p_sys->i_v + p_sys->i_vt : 0xff;
186
187     for( i = 0; i < i_lines*i_pitch; i++ )
188     {
189         if(    p_u[i] < umax && p_u[i] > umin
190             && p_v[i] < vmax && p_v[i] > vmin )
191         {
192             p_at[i] = 0x00;
193         }
194         else
195         {
196             p_at[i] = 0xff;
197         }
198     }
199     /* Gaussian convolution to make it look cleaner */
200     p_filter->p_libvlc->pf_memset( p_a, 0, 2 * i_pitch );
201     for( i = 2; i < i_lines - 2; i++ )
202     {
203         p_a[i*i_pitch] = 0x00;
204         p_a[i*i_pitch+1] = 0x00;
205         for( j = 2; j < i_pitch - 2; j ++ )
206         {
207             p_a[i*i_pitch+j] = (uint8_t)((
208               /* 2 rows up */
209                 ( p_at[(i-2)*i_pitch+j-2]<<1 )
210               + ( p_at[(i-2)*i_pitch+j-1]<<2 )
211               + ( p_at[(i-2)*i_pitch+j]<<2 )
212               + ( p_at[(i-2)*i_pitch+j+1]<<2 )
213               + ( p_at[(i-2)*i_pitch+j+2]<<1 )
214               /* 1 row up */
215               + ( p_at[(i-1)*i_pitch+j-2]<<2 )
216               + ( p_at[(i-1)*i_pitch+j-1]<<3 )
217               + ( p_at[(i-1)*i_pitch+j]*12 )
218               + ( p_at[(i-1)*i_pitch+j+1]<<3 )
219               + ( p_at[(i-1)*i_pitch+j+2]<<2 )
220               /* */
221               + ( p_at[i*i_pitch+j-2]<<2 )
222               + ( p_at[i*i_pitch+j-1]*12 )
223               + ( p_at[i*i_pitch+j]<<4 )
224               + ( p_at[i*i_pitch+j+1]*12 )
225               + ( p_at[i*i_pitch+j+2]<<2 )
226               /* 1 row down */
227               + ( p_at[(i+1)*i_pitch+j-2]<<2 )
228               + ( p_at[(i+1)*i_pitch+j-1]<<3 )
229               + ( p_at[(i+1)*i_pitch+j]*12 )
230               + ( p_at[(i+1)*i_pitch+j+1]<<3 )
231               + ( p_at[(i+1)*i_pitch+j+2]<<2 )
232               /* 2 rows down */
233               + ( p_at[(i+2)*i_pitch+j-2]<<1 )
234               + ( p_at[(i+2)*i_pitch+j-1]<<2 )
235               + ( p_at[(i+2)*i_pitch+j]<<2 )
236               + ( p_at[(i+2)*i_pitch+j+1]<<2 )
237               + ( p_at[(i+2)*i_pitch+j+2]<<1 )
238               )/152);
239               if( p_a[i*i_pitch+j] < 0xbf ) p_a[i*i_pitch+j] = 0x00;
240         }
241     }
242     return p_pic;
243 }
244
245 /*****************************************************************************
246 * Callback to update params on the fly
247 *****************************************************************************/
248 static int BluescreenCallback( vlc_object_t *p_this, char const *psz_var,
249                                vlc_value_t oldval, vlc_value_t newval,
250                                void *p_data )
251 {
252     filter_sys_t *p_sys = (filter_sys_t *) p_data;
253
254 #define VAR_IS( a ) !strcmp( psz_var, CFG_PREFIX a )
255     if( VAR_IS( "u" ) )
256     {
257         p_sys->i_u = __MAX( 0, __MIN( 255, newval.i_int ) );
258     }
259     else if( VAR_IS( "v" ) )
260     {
261         p_sys->i_v = __MAX( 0, __MIN( 255, newval.i_int ) );
262     }
263     else if( VAR_IS( "ut" ) )
264     {
265         p_sys->i_ut = __MAX( 0, __MIN( 255, newval.i_int ) );
266     }
267     else if( VAR_IS( "vt" ) )
268     {
269         p_sys->i_vt = __MAX( 0, __MIN( 255, newval.i_int ) );
270     }
271
272     return VLC_SUCCESS;
273 }