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