]> git.sesse.net Git - mlt/blob - src/modules/core/filter_brightness.c
Refactor to mlt_filter_get_progress().
[mlt] / src / modules / core / filter_brightness.c
1 /*
2  * filter_brightness.c -- gamma filter
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <framework/mlt_filter.h>
22 #include <framework/mlt_frame.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <math.h>
27
28 #define CLAMP( x, min, max ) (x) < (min) ? (min) : (x) > (max) ? (max) : (x)
29
30 /** Do it :-).
31 */
32
33 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
34 {
35         // Get the image
36         *format = mlt_image_yuv422;
37         int error = mlt_frame_get_image( this, image, format, width, height, 1 );
38
39         // Only process if we have no error and a valid colour space
40         if ( error == 0 )
41         {
42                 // Get the brightness level
43                 double level = mlt_properties_get_double( MLT_FRAME_PROPERTIES( this ), "brightness" );
44
45                 // Only process if level is something other than 1
46                 if ( level != 1.0 )
47                 {
48                         int i = *width * *height + 1;
49                         uint8_t *p = *image;
50                         int32_t m = level * ( 1 << 16 );
51                         int32_t n = 128 * ( ( 1 << 16 ) - m );
52
53                         while ( --i )
54                         {
55                                 p[0] = CLAMP( (p[0] * m) >> 16, 16, 235 );
56                                 p[1] = CLAMP( (p[1] * m + n) >> 16, 16, 240 );
57                                 p += 2;
58                         }
59                 }
60         }
61
62         return error;
63 }
64
65 /** Filter processing.
66 */
67
68 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
69 {
70         // Get the starting brightness level
71         double level = fabs( mlt_properties_get_double( MLT_FILTER_PROPERTIES( this ), "start" ) );
72
73         // If there is an end adjust gain to the range
74         if ( mlt_properties_get( MLT_FILTER_PROPERTIES( this ), "end" ) != NULL )
75         {
76                 // Determine the time position of this frame in the transition duration
77                 double end = fabs( mlt_properties_get_double( MLT_FILTER_PROPERTIES( this ), "end" ) );
78                 level += ( end - level ) * mlt_filter_get_progress( this, frame );
79         }
80
81         // Push the frame filter
82         mlt_properties_set_double( MLT_FRAME_PROPERTIES( frame ), "brightness", level );
83         mlt_frame_push_get_image( frame, filter_get_image );
84
85         return frame;
86 }
87
88 /** Constructor for the filter.
89 */
90
91 mlt_filter filter_brightness_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
92 {
93         mlt_filter this = mlt_filter_new( );
94         if ( this != NULL )
95         {
96                 this->process = filter_process;
97                 mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "start", arg == NULL ? "1" : arg );
98         }
99         return this;
100 }
101