]> git.sesse.net Git - mlt/blob - src/modules/oldfilm/filter_oldfilm.c
Massive refactoring of image conversion.
[mlt] / src / modules / oldfilm / filter_oldfilm.c
1 /*
2  * filter_oldfilm.c -- oldfilm 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
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <math.h>
26
27
28 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
29 {
30
31         mlt_filter filter = mlt_frame_pop_service( this );
32         *format = mlt_image_yuv422;
33         int error = mlt_frame_get_image( this, image, format, width, height, 1 );
34         
35         if (  error == 0 && *image )
36         {
37                 int h = *height;
38                 int w = *width;
39
40                 int x=0;
41                 int y=0;
42                 
43                 mlt_position in = mlt_filter_get_in( filter );
44                 mlt_position out = mlt_filter_get_out( filter );
45                 mlt_position time = mlt_frame_get_position( this );
46                 double position = ( double )( time - in ) / ( double )( out - in + 1 );
47                 srand(position*10000);
48                 
49                 int delta = mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "delta" );
50                 int every = mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "every" );
51                 
52                 int bdu = mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "brightnessdelta_up" );
53                 int bdd = mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "brightnessdelta_down" );
54                 int bevery = mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "brightnessdelta_every" );
55                         
56                 int diffpic=0;
57                 if (delta)
58                         diffpic=rand()%delta*2-delta;
59                 
60                 int brightdelta=0;
61                 if ((bdu+bdd)!=0)
62                          brightdelta=rand()%(bdu+bdd)-bdd;
63                 if (rand()%100>every)
64                         diffpic=0;
65                 if (rand()%100>bevery)
66                         brightdelta=0;
67                 int yend,ydiff;
68                 if (diffpic<=0){
69                         y=h;
70                         yend=0;
71                         ydiff=-1;
72                 }else{
73                         y=0;
74                         yend=h;
75                         ydiff=1;
76                 }
77
78                 while(y!=yend){
79                         //int newy=y+diffpic;
80                         for (x=0;x<w;x++){
81                                         uint8_t* pic=(*image+y*w*2+x*2);
82                                         int newy=y+diffpic;
83                                         if (newy>0 && newy<h ){
84                                                 uint8_t oldval=*(pic+diffpic*w*2);
85                                                 /* frame around
86                                                 int randx=(x<=frameborder)?x:(x+frameborder>w)?w-x:-1;
87                                                 int randy=((newy)<=frameborder)?(newy):((newy)+frameborder>h)?h-(y+diffpic):-1;
88                                                 if (randx>=0 ){
89                                                         oldval=oldval*pow(((double)randx/(double)frameborder),1.5);
90                                                 }
91                                                 if (randy>=0 ){
92                                                         oldval=oldval*pow(((double)randy/(double)frameborder),1.5);
93                                                 }
94                                                 if (randx>=0 && randy>=0){
95                                                         //oldval=oldval*(randx*randy)/500.0;
96                                                 }
97                                                 */
98                                                 if ( ((int) oldval + brightdelta ) >255)
99                                                         *pic=255;
100                                                 else if ( ( (int) oldval+brightdelta )  <0){
101                                                         *pic=0;
102                                                 }else
103                                                         *pic=oldval+brightdelta;
104                                                 *(pic+1)=*(pic+diffpic*w*2+1);
105
106                                         }else{
107                                                 *pic=0;
108                                                 //*(pic-1)=127; 
109                                         }
110                                         
111                         }
112                         y+=ydiff;
113                 }
114         }
115
116         return error;
117 }
118
119 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
120 {
121
122         mlt_frame_push_service( frame, this );
123         mlt_frame_push_get_image( frame, filter_get_image );
124         return frame;
125 }
126
127 mlt_filter filter_oldfilm_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
128 {
129         mlt_filter this = mlt_filter_new( );
130         if ( this != NULL )
131         {
132                 this->process = filter_process;
133                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "delta", "14" );
134                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "every", "20" );
135                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "brightnessdelta_up" , "20" );
136                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "brightnessdelta_down" , "30" );
137                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "brightnessdelta_every" , "70" );
138         }
139         return this;
140 }
141