]> git.sesse.net Git - mlt/blob - src/modules/core/filter_luma.c
Enhance luma filter to work with animated filters.
[mlt] / src / modules / core / filter_luma.c
1 /*
2  * filter_luma.c -- luma 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_factory.h>
23 #include <framework/mlt_frame.h>
24 #include <framework/mlt_producer.h>
25 #include <framework/mlt_transition.h>
26 #include <framework/mlt_log.h>
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 /** Do it :-).
33 */
34
35 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
36 {
37         int error = 0;
38         mlt_filter filter = mlt_frame_pop_service( this );
39         mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
40         mlt_transition luma = mlt_properties_get_data( properties, "luma", NULL );
41         mlt_frame b_frame = mlt_properties_get_data( properties, "frame", NULL );
42         mlt_properties b_frame_props = b_frame ? MLT_FRAME_PROPERTIES( b_frame ) : NULL;
43         int out = mlt_properties_get_int( properties, "period" );
44         int cycle = mlt_properties_get_int( properties, "cycle" );
45         int duration = mlt_properties_get_int( properties, "duration" );
46
47         out = out? out + 1 : 25;
48         if ( cycle )
49                 out = cycle;
50         if ( duration < 1 || duration > out )
51                 duration = out;
52         *format = mlt_image_yuv422;
53
54         if ( b_frame == NULL || mlt_properties_get_int( b_frame_props, "width" ) != *width || mlt_properties_get_int( b_frame_props, "height" ) != *height )
55         {
56                 b_frame = mlt_frame_init( MLT_FILTER_SERVICE( filter ) );
57                 mlt_properties_set_data( properties, "frame", b_frame, 0, ( mlt_destructor )mlt_frame_close, NULL );
58         }
59
60         if ( luma == NULL )
61         {
62                 char *resource = mlt_properties_get( properties, "resource" );
63                 mlt_profile profile = mlt_service_profile( MLT_FILTER_SERVICE( filter ) );
64                 luma = mlt_factory_transition( profile, "luma", resource );
65                 if ( luma != NULL )
66                 {
67                         mlt_properties luma_properties = MLT_TRANSITION_PROPERTIES( luma );
68                         mlt_properties_set_int( luma_properties, "in", 0 );
69                         mlt_properties_set_int( luma_properties, "out", duration - 1 );
70                         mlt_properties_set_int( luma_properties, "reverse", 1 );
71                         mlt_properties_set_data( properties, "luma", luma, 0, ( mlt_destructor )mlt_transition_close, NULL );
72                 }
73         }
74
75         mlt_position relative_pos = mlt_frame_get_position( this ) % out;
76         mlt_log_debug( MLT_FILTER_SERVICE(filter), "pos %d mod period %d\n", mlt_frame_get_position( this ),
77                                          relative_pos );
78         if ( luma != NULL &&
79              ( mlt_properties_get( properties, "blur" ) != NULL ||
80                ( mlt_frame_get_position( this ) >= duration && relative_pos < duration - 1 ) ) )
81         {
82                 mlt_properties luma_properties = MLT_TRANSITION_PROPERTIES( luma );
83                 mlt_properties_pass( luma_properties, properties, "luma." );
84                 mlt_transition_process( luma, this, b_frame );
85         }
86
87         error = mlt_frame_get_image( this, image, format, width, height, 1 );
88
89         // We only need a copy of the last frame in the cycle, but we could miss it
90         // with realtime frame-dropping, so we copy the last several frames of the cycle.
91         if ( error == 0 && relative_pos > out - duration )
92         {
93                 mlt_properties a_props = MLT_FRAME_PROPERTIES( this );
94                 int size = 0;
95                 uint8_t *src = mlt_properties_get_data( a_props, "image", &size );
96                 uint8_t *dst = mlt_pool_alloc( size );
97
98                 if ( dst != NULL )
99                 {
100                         mlt_log_debug( MLT_FILTER_SERVICE(filter), "copying frame %d\n", relative_pos );
101                         mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
102                         memcpy( dst, src, size );
103                         mlt_properties_set_data( b_props, "image", dst, size, mlt_pool_release, NULL );
104                         mlt_properties_set_int( b_props, "width", *width );
105                         mlt_properties_set_int( b_props, "height", *height );
106                         mlt_properties_set_int( b_props, "format", *format );
107                 }
108         }
109
110         return error;
111 }
112
113 /** Filter processing.
114 */
115
116 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
117 {
118         // Push the filter on to the stack
119         mlt_frame_push_service( frame, this );
120
121         // Push the get_image on to the stack
122         mlt_frame_push_get_image( frame, filter_get_image );
123
124         return frame;
125 }
126
127 /** Constructor for the filter.
128 */
129
130 mlt_filter filter_luma_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
131 {
132         mlt_filter this = mlt_filter_new( );
133         if ( this != NULL )
134         {
135                 mlt_properties properties = MLT_FILTER_PROPERTIES( this );
136                 this->process = filter_process;
137                 if ( arg != NULL )
138                         mlt_properties_set( properties, "resource", arg );
139         }
140         return this;
141 }