]> git.sesse.net Git - mlt/blob - src/modules/kdenlive/producer_framebuffer.c
Framebuffer producer: Fix alpha handling (Kdenlive-2311).
[mlt] / src / modules / kdenlive / producer_framebuffer.c
1 /*
2  * producer_framebuffer.c -- create subspeed frames
3  * Copyright (C) 2007 Jean-Baptiste Mardelle <jb@ader.ch>
4  * Author: Jean-Baptiste Mardelle, based on the code of motion_est by Zachary Drew
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.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <math.h>
26 #include <string.h>
27 #include <sys/time.h>
28 #include <assert.h>
29
30 // Forward references.
31 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index );
32
33 /** Image stack(able) method
34 */
35
36 static int framebuffer_get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
37 {
38
39         // Get the filter object and properties
40         mlt_producer producer = mlt_frame_pop_service( frame );
41         int index = ( int )mlt_frame_pop_service( frame );
42         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
43
44         mlt_service_lock( MLT_PRODUCER_SERVICE( producer ) );
45
46         // Frame properties objects
47         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
48         mlt_frame first_frame = mlt_properties_get_data( properties, "first_frame", NULL );
49
50         // Get producer parameters
51         int strobe = mlt_properties_get_int( properties, "strobe" );
52         int freeze = mlt_properties_get_int( properties, "freeze" );
53         int freeze_after = mlt_properties_get_int( properties, "freeze_after" );
54         int freeze_before = mlt_properties_get_int( properties, "freeze_before" );
55
56         // Determine the position
57         mlt_position first_position = (first_frame != NULL) ? mlt_frame_get_position( first_frame ) : -1;
58         mlt_position need_first = freeze;
59
60         if ( !freeze || freeze_after || freeze_before )
61         {
62                 double prod_speed = mlt_properties_get_double( properties, "_speed" );
63                 double actual_position = prod_speed * (double) mlt_producer_position( producer );
64
65                 if ( mlt_properties_get_int( properties, "reverse" ) )
66                         actual_position = mlt_producer_get_playtime( producer ) - actual_position;
67
68                 if ( strobe < 2 )
69                 {
70                         need_first = floor( actual_position );
71                 }
72                 else
73                 {
74                         // Strobe effect wanted, calculate frame position
75                         need_first = floor( actual_position );
76                         need_first -= need_first % strobe;
77                 }
78                 if ( freeze )
79                 {
80                         if ( freeze_after && need_first > freeze ) need_first = freeze;
81                         else if ( freeze_before && need_first < freeze ) need_first = freeze;
82                 }
83         }
84         
85         // Determine output buffer size
86         *width = mlt_properties_get_int( frame_properties, "width" );
87         *height = mlt_properties_get_int( frame_properties, "height" );
88         int size = mlt_image_format_size( *format, *width, *height, NULL );
89
90         // Get output buffer
91         int buffersize = 0;
92         int alphasize = *width * *height;
93         uint8_t *output = mlt_properties_get_data( properties, "output_buffer", &buffersize );
94         uint8_t *output_alpha = mlt_properties_get_data( properties, "output_alpha", NULL );
95         if( buffersize == 0 || buffersize != size )
96         {
97                 // invalidate cached frame
98                 first_position = -1;
99         }
100
101         if ( need_first != first_position )
102         {
103                 // invalidate cached frame
104                 first_position = -1;
105                 
106                 // Bust the cached frame
107                 mlt_properties_set_data( properties, "first_frame", NULL, 0, NULL, NULL );
108                 first_frame = NULL;
109         }
110
111         if ( output && first_position != -1 ) {
112                 // Using the cached frame
113                 uint8_t *image_copy = mlt_pool_alloc( size );
114                 memcpy( image_copy, output, size );
115                 uint8_t *alpha_copy = mlt_pool_alloc( alphasize );
116                 memcpy( alpha_copy, output_alpha, alphasize );
117
118                 // Set the output image
119                 *image = image_copy;
120                 mlt_frame_set_image( frame, image_copy, size, mlt_pool_release );
121                 mlt_frame_set_alpha( frame, alpha_copy, alphasize, mlt_pool_release );
122
123                 *width = mlt_properties_get_int( properties, "_output_width" );
124                 *height = mlt_properties_get_int( properties, "_output_height" );
125                 *format = mlt_properties_get_int( properties, "_output_format" );
126
127                 mlt_service_unlock( MLT_PRODUCER_SERVICE( producer ) );
128                 return 0;
129         }
130
131         // Get the cached frame
132         if ( first_frame == NULL )
133         {
134                 // Get the frame to cache from the real producer
135                 mlt_producer real_producer = mlt_properties_get_data( properties, "producer", NULL );
136
137                 // Seek the producer to the correct place
138                 mlt_producer_seek( real_producer, need_first );
139
140                 // Get the frame
141                 mlt_service_get_frame( MLT_PRODUCER_SERVICE( real_producer ), &first_frame, index );
142
143                 // Cache the frame
144                 mlt_properties_set_data( properties, "first_frame", first_frame, 0, ( mlt_destructor )mlt_frame_close, NULL );
145         }
146         mlt_properties first_frame_properties = MLT_FRAME_PROPERTIES( first_frame );
147         
148
149         // Which frames are buffered?
150         uint8_t *first_image = mlt_properties_get_data( first_frame_properties, "image", NULL );
151         uint8_t *first_alpha = mlt_properties_get_data( first_frame_properties, "alpha", NULL );
152         if ( !first_image )
153         {
154                 mlt_properties_set_double( first_frame_properties, "consumer_aspect_ratio", mlt_properties_get_double( frame_properties, "consumer_aspect_ratio" ) );
155                 mlt_properties_set( first_frame_properties, "rescale.interp", mlt_properties_get( frame_properties, "rescale.interp" ) );
156
157                 int error = mlt_frame_get_image( first_frame, &first_image, format, width, height, writable );
158
159                 if ( error != 0 ) {
160                         mlt_log_error( MLT_PRODUCER_SERVICE( producer ), "first_image == NULL get image died\n" );
161                         mlt_service_unlock( MLT_PRODUCER_SERVICE( producer ) );
162                         return error;
163                 }
164                 output = mlt_pool_alloc( size );
165                 memcpy( output, first_image, size );
166                 // Let someone else clean up
167                 mlt_properties_set_data( properties, "output_buffer", output, size, mlt_pool_release, NULL ); 
168                 mlt_properties_set_int( properties, "_output_width", *width );
169                 mlt_properties_set_int( properties, "_output_height", *height );
170                 mlt_properties_set_int( properties, "_output_format", *format );
171         
172         }
173
174         if ( !first_alpha )
175         {
176                 alphasize = *width * *height;
177                 first_alpha = mlt_frame_get_alpha_mask( first_frame );
178                 output_alpha = mlt_pool_alloc( alphasize );
179                 memcpy( output_alpha, first_alpha, alphasize );
180                 mlt_properties_set_data( properties, "output_alpha", output_alpha, alphasize, mlt_pool_release, NULL ); 
181         }
182
183         mlt_service_unlock( MLT_PRODUCER_SERVICE( producer ) );
184
185         // Create a copy
186         uint8_t *image_copy = mlt_pool_alloc( size );
187         memcpy( image_copy, first_image, size );
188         uint8_t *alpha_copy = mlt_pool_alloc( alphasize );
189         memcpy( alpha_copy, first_alpha, alphasize );
190
191         // Set the output image
192         *image = image_copy;
193         mlt_frame_set_image( frame, *image, size, mlt_pool_release );
194
195         mlt_frame_set_alpha( frame, alpha_copy, alphasize, mlt_pool_release );
196
197         return 0;
198 }
199
200 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
201 {
202         // Construct a new frame
203         *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
204         if( frame != NULL )
205         {
206                 // Stack the producer and producer's get image
207                 mlt_frame_push_service( *frame, (void*) index );
208                 mlt_frame_push_service( *frame, producer );
209                 mlt_frame_push_service( *frame, framebuffer_get_image );
210
211                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
212                 mlt_properties frame_properties = MLT_FRAME_PROPERTIES(*frame);
213                 
214                 double force_aspect_ratio = mlt_properties_get_double( properties, "force_aspect_ratio" );
215                 if ( force_aspect_ratio <= 0.0 ) force_aspect_ratio = mlt_properties_get_double( properties, "aspect_ratio" );
216                 mlt_properties_set_double( frame_properties, "aspect_ratio", force_aspect_ratio );
217                 
218                 // Give the returned frame temporal identity
219                 mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
220
221                 mlt_properties_set_int( frame_properties, "real_width", mlt_properties_get_int( properties, "width" ) );
222                 mlt_properties_set_int( frame_properties, "real_height", mlt_properties_get_int( properties, "height" ) );
223                 mlt_properties_pass_list( frame_properties, properties, "width, height" );
224         }
225
226         return 0;
227 }
228
229
230 mlt_producer producer_framebuffer_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
231 {
232         if ( !arg ) return NULL;
233         mlt_producer producer = NULL;
234         producer = calloc( 1, sizeof( struct mlt_producer_s ) );
235         mlt_producer_init( producer, NULL );
236
237         // Wrap loader
238         mlt_producer real_producer;
239         
240         // Check if a speed was specified.
241         /** 
242
243         * Speed must be appended to the filename with '?'. To play your video at 50%:
244          melt framebuffer:my_video.mpg?0.5
245
246         * Stroboscope effect can be obtained by adding a stobe=x parameter, where
247          x is the number of frames that will be ignored.
248
249         * You can play the movie backwards by adding reverse=1
250
251         * You can freeze the clip at a determined position by adding freeze=frame_pos
252           add freeze_after=1 to freeze only paste position or freeze_before to freeze before it
253
254         **/
255
256         double speed = 0.0;
257         char *props = strdup( arg );
258         char *ptr = strrchr( props, '?' );
259         
260         if ( ptr )
261         {
262                 speed = atof( ptr + 1 );
263                 if ( speed != 0.0 )
264                         // If speed was valid, then strip it and the delimiter.
265                         // Otherwise, an invalid speed probably means this '?' was not a delimiter.
266                         *ptr = '\0';
267         }
268                 
269         real_producer = mlt_factory_producer( profile, "abnormal", props );
270         free( props );
271
272         if (speed == 0.0) speed = 1.0;
273
274         if ( producer != NULL && real_producer != NULL)
275         {
276                 // Get the properties of this producer
277                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
278
279                 mlt_properties_set( properties, "resource", arg);
280
281                 // Store the producer and fitler
282                 mlt_properties_set_data( properties, "producer", real_producer, 0, ( mlt_destructor )mlt_producer_close, NULL );
283
284                 // Grab some stuff from the real_producer
285                 mlt_properties_pass_list( properties, MLT_PRODUCER_PROPERTIES( real_producer ), "length, width, height, aspect_ratio" );
286
287                 if ( speed < 0 )
288                 {
289                         speed = -speed;
290                         mlt_properties_set_int( properties, "reverse", 1 );
291                 }
292
293                 if ( speed != 1.0 )
294                 {
295                         double real_length = ( (double)  mlt_producer_get_length( real_producer ) ) / speed;
296                         mlt_properties_set_position( properties, "length", real_length );
297                 }
298                 mlt_properties_set_position( properties, "out", mlt_producer_get_length( producer ) - 1 );
299
300                 // Since we control the seeking, prevent it from seeking on its own
301                 mlt_producer_set_speed( real_producer, 0 );
302                 mlt_producer_set_speed( producer, speed );
303
304                 // Override the get_frame method
305                 producer->get_frame = producer_get_frame;
306         }
307         else
308         {
309                 if ( producer )
310                         mlt_producer_close( producer );
311                 if ( real_producer )
312                         mlt_producer_close( real_producer );
313
314                 producer = NULL;
315         }
316         return producer;
317 }