]> git.sesse.net Git - mlt/blob - src/modules/core/filter_luma.c
28b2d6ee6573d5f17d74dfd041f7f82d23060253
[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         char *name = mlt_properties_get( properties, "_unique_id" );
47         mlt_position position = mlt_properties_get_position( MLT_FRAME_PROPERTIES(this), name );
48
49         out = out? out + 1 : 25;
50         if ( cycle )
51                 out = cycle;
52         if ( duration < 1 || duration > out )
53                 duration = out;
54         *format = mlt_image_yuv422;
55
56         if ( b_frame == NULL || mlt_properties_get_int( b_frame_props, "width" ) != *width || mlt_properties_get_int( b_frame_props, "height" ) != *height )
57         {
58                 b_frame = mlt_frame_init( MLT_FILTER_SERVICE( filter ) );
59                 mlt_properties_set_data( properties, "frame", b_frame, 0, ( mlt_destructor )mlt_frame_close, NULL );
60         }
61
62         if ( luma == NULL )
63         {
64                 char *resource = mlt_properties_get( properties, "resource" );
65                 mlt_profile profile = mlt_service_profile( MLT_FILTER_SERVICE( filter ) );
66                 luma = mlt_factory_transition( profile, "luma", resource );
67                 if ( luma != NULL )
68                 {
69                         mlt_properties luma_properties = MLT_TRANSITION_PROPERTIES( luma );
70                         mlt_properties_set_int( luma_properties, "in", 0 );
71                         mlt_properties_set_int( luma_properties, "out", duration - 1 );
72                         mlt_properties_set_int( luma_properties, "reverse", 1 );
73                         mlt_properties_set_data( properties, "luma", luma, 0, ( mlt_destructor )mlt_transition_close, NULL );
74                 }
75         }
76
77         mlt_position modulo_pos = position % out;
78         mlt_log_debug( MLT_FILTER_SERVICE(filter), "pos %d mod period %d\n", position, modulo_pos );
79         if ( luma != NULL &&
80              ( mlt_properties_get( properties, "blur" ) != NULL ||
81                    ( position >= duration && modulo_pos < duration - 1 ) ) )
82         {
83                 mlt_properties luma_properties = MLT_TRANSITION_PROPERTIES( luma );
84                 mlt_properties_pass( luma_properties, properties, "luma." );
85                 int in = position / out * out + mlt_frame_get_position( this ) - position;
86                 mlt_properties_set_int( luma_properties, "in", in );
87                 mlt_properties_set_int( luma_properties, "out", in + duration - 1 );
88                 mlt_transition_process( luma, this, b_frame );
89         }
90
91         error = mlt_frame_get_image( this, image, format, width, height, 1 );
92
93         // We only need a copy of the last frame in the cycle, but we could miss it
94         // with realtime frame-dropping, so we copy the last several frames of the cycle.
95         if ( error == 0 && modulo_pos > out - duration )
96         {
97                 mlt_properties a_props = MLT_FRAME_PROPERTIES( this );
98                 int size = 0;
99                 uint8_t *src = mlt_properties_get_data( a_props, "image", &size );
100                 uint8_t *dst = mlt_pool_alloc( size );
101
102                 if ( dst != NULL )
103                 {
104                         mlt_log_debug( MLT_FILTER_SERVICE(filter), "copying frame %d\n", modulo_pos );
105                         mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
106                         memcpy( dst, src, size );
107                         mlt_properties_set_data( b_props, "image", dst, size, mlt_pool_release, NULL );
108                         mlt_properties_set_int( b_props, "width", *width );
109                         mlt_properties_set_int( b_props, "height", *height );
110                         mlt_properties_set_int( b_props, "format", *format );
111                 }
112         }
113
114         return error;
115 }
116
117 /** Filter processing.
118 */
119
120 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
121 {
122         // Get a unique name to store the frame position
123         char *name = mlt_properties_get( MLT_FILTER_PROPERTIES( this ), "_unique_id" );
124
125         // Assign the current position to the name
126         mlt_properties_set_position( MLT_FRAME_PROPERTIES( frame ), name, mlt_frame_get_position( frame ) );
127
128         // Push the filter on to the stack
129         mlt_frame_push_service( frame, this );
130
131         // Push the get_image on to the stack
132         mlt_frame_push_get_image( frame, filter_get_image );
133
134         return frame;
135 }
136
137 /** Constructor for the filter.
138 */
139
140 mlt_filter filter_luma_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
141 {
142         mlt_filter this = mlt_filter_new( );
143         if ( this != NULL )
144         {
145                 mlt_properties properties = MLT_FILTER_PROPERTIES( this );
146                 this->process = filter_process;
147                 if ( arg != NULL )
148                         mlt_properties_set( properties, "resource", arg );
149         }
150         return this;
151 }