]> git.sesse.net Git - mlt/blob - src/modules/oldfilm/filter_vignette.c
use extra paramters for vignette settings
[mlt] / src / modules / oldfilm / filter_vignette.c
1 /*
2  * filter_vignette.c -- vignette filter
3  * Copyright (c) 2007 Marco Gittler <g.marco@freenet.de>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <framework/mlt_filter.h>
21 #include <framework/mlt_frame.h>
22 #include <framework/mlt_geometry.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <math.h>
27 #define MIN(a,b) (a<b?a:b)
28 #define MAX(a,b) (a<b?b:a)
29
30 #define SIGMOD_STEPS 1000
31 #define POSITION_VALUE(p,s,e) (s+((double)(e-s)*p ))
32 //static double pow2[SIGMOD_STEPS];
33 static float geometry_to_float(char *val, mlt_position pos )
34 {
35     float ret=0.0;
36     struct mlt_geometry_item_s item;
37
38         mlt_geometry geom=mlt_geometry_init();
39     mlt_geometry_parse(geom,val,-1,-1,-1);
40     mlt_geometry_fetch(geom,&item , pos );
41     ret=item.x;
42     mlt_geometry_close(geom);
43
44     return ret;
45 }
46
47 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
48 {
49         
50         mlt_filter filter = mlt_frame_pop_service( this );
51         *format = mlt_image_yuv422;
52         int error = mlt_frame_get_image( this, image, format, width, height, 1 );
53
54         if ( error == 0 && *image )
55         {
56                 mlt_position in = mlt_filter_get_in( filter );
57                 //mlt_position out = mlt_filter_get_out( filter );
58                 mlt_position time = mlt_frame_get_position( this );
59                 
60                 float smooth, radius, cx, cy, opac;
61         mlt_position pos = time - in;
62         mlt_properties filter_props = MLT_FILTER_PROPERTIES( filter ) ;
63                 smooth = geometry_to_float ( mlt_properties_get( filter_props , "smooth" ) , pos );
64         radius = geometry_to_float ( mlt_properties_get( filter_props , "radius" ) , pos );
65                 cx = geometry_to_float ( mlt_properties_get( filter_props , "x" ) , pos );
66                 cy = geometry_to_float ( mlt_properties_get( filter_props , "y" ) , pos );
67                 opac = geometry_to_float ( mlt_properties_get( filter_props , "opacity" ) , pos );
68                 
69                 int video_width = *width;
70                 int video_height = *height;
71                 
72                 int x,y;
73                 int w2=cx,h2=cy;
74                 double delta=1.0;
75                 double max_opac=opac/100.0;
76
77                 for (y=0;y<video_height;y++){
78                         int h2_pow2=pow(y-h2,2.0);
79                         for (x=0;x<video_width;x++){
80                                 uint8_t *pix=(*image+y*video_width*2+x*2);
81                                 int dx=sqrt(h2_pow2+pow(x-w2,2.0));
82                                 
83                                 if (radius-smooth>dx){  //center, make not darker
84                                         continue;
85                                 }
86                                 else if (radius+smooth<=dx){//max dark after smooth area
87                                         delta=0.0;
88                                 }else{
89                                         //double sigx=5.0-10.0*(double)(dx-radius+smooth)/(2.0*smooth);//smooth >10 inner area, <-10 in dark area
90                                         //delta=pow2[((int)((sigx+10.0)*SIGMOD_STEPS/20.0))];//sigmoidal
91                                         delta = ((double)(radius+smooth-dx)/(2.0*smooth));//linear
92                                 }
93                                 delta=MAX(max_opac,delta);
94                                 *pix=(double)(*pix)*delta;
95                                 *(pix+1)=((double)(*(pix+1)-127.0)*delta)+127.0;
96                         }
97                 }
98                 // short a, short b, short c, short d
99                 // a= gray val pix 1
100                 // b: +=blue, -=yellow
101                 // c: =gray pix 2
102                 // d: +=red,-=green
103         }
104         
105         return error;
106 }
107
108 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
109 {
110         
111         mlt_frame_push_service( frame, this );
112         mlt_frame_push_get_image( frame, filter_get_image );
113         return frame;
114 }
115
116
117 mlt_filter filter_vignette_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
118 {
119         mlt_filter this = mlt_filter_new( );
120         //int i=0;
121         if ( this != NULL )
122         {
123                 /*
124                 for (i=-SIGMOD_STEPS/2;i<SIGMOD_STEPS/2;i++){
125                         pow2[i+SIGMOD_STEPS/2]=1.0/(1.0+pow(2.0,-((double)i)/((double)SIGMOD_STEPS/20.0)));
126                 }
127                 */
128                 
129                 this->process = filter_process;
130                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "smooth", "80" );
131                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "radius", "50%" );
132                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "x", "50%" );
133                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "y", "50%" );
134                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "opacity", "0" );
135
136                 //mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "end", "" );
137
138         }
139         return this;
140 }
141
142