]> git.sesse.net Git - mlt/blob - src/modules/gtk2/producer_pixbuf.c
Minor fixes
[mlt] / src / modules / gtk2 / producer_pixbuf.c
1 /*
2  * producer_pixbuf.c -- raster image loader based upon gdk-pixbuf
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program 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
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include "producer_pixbuf.h"
22 #include <framework/mlt_frame.h>
23 #include <gdk-pixbuf/gdk-pixbuf.h>
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <math.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <unistd.h>
32 #include <dirent.h>
33
34 typedef struct producer_pixbuf_s *producer_pixbuf;
35
36 struct producer_pixbuf_s
37 {
38         struct mlt_producer_s parent;
39
40         // File name list
41         char **filenames;
42         int count;
43         int image_idx;
44
45         int width;
46         int height;
47         uint8_t *image;
48         uint8_t *alpha;
49 };
50
51 static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index );
52 static void producer_close( mlt_producer parent );
53
54 static int filter_files( const struct dirent *de )
55 {
56         if ( de->d_name[ 0 ] != '.' )
57                 return 1;
58         else
59                 return 0;
60 }
61
62 mlt_producer producer_pixbuf_init( char *filename )
63 {
64         producer_pixbuf this = calloc( sizeof( struct producer_pixbuf_s ), 1 );
65         if ( this != NULL && mlt_producer_init( &this->parent, this ) == 0 )
66         {
67                 mlt_producer producer = &this->parent;
68
69                 // Get the properties interface
70                 mlt_properties properties = mlt_producer_properties( &this->parent );
71         
72                 // Callback registration
73                 producer->get_frame = producer_get_frame;
74                 producer->close = ( mlt_destructor )producer_close;
75
76                 // Set the default properties
77                 mlt_properties_set( properties, "resource", filename );
78                 mlt_properties_set_int( properties, "ttl", 25 );
79                 
80                 // Initialise gobject types
81                 g_type_init();
82
83                 return producer;
84         }
85         free( this );
86         return NULL;
87 }
88
89 static void refresh_image( mlt_frame frame, int width, int height )
90 {
91         // Pixbuf 
92         GdkPixbuf *pixbuf = NULL;
93         GError *error = NULL;
94
95         // Obtain properties of frame
96         mlt_properties properties = mlt_frame_properties( frame );
97
98         // Obtain the producer for this frame
99         producer_pixbuf this = mlt_properties_get_data( properties, "producer_pixbuf", NULL );
100
101         // Obtain the producer 
102         mlt_producer producer = &this->parent;
103
104         // Obtain properties of producer
105         mlt_properties producer_props = mlt_producer_properties( producer );
106
107         // Get the time to live for each frame
108         double ttl = mlt_properties_get_int( producer_props, "ttl" );
109
110         // Get the original position of this frame
111         mlt_position position = mlt_properties_get_position( properties, "pixbuf_position" );
112
113         // Image index
114         int image_idx = ( int )floor( ( double )position / ttl ) % this->count;
115
116     // optimization for subsequent iterations on single picture
117         if ( width != 0 && this->image != NULL && image_idx == this->image_idx )
118         {
119                 if ( width != this->width || height != this->height )
120                 {
121                         pixbuf = mlt_properties_get_data( producer_props, "pixbuf", NULL );
122                         mlt_pool_release( this->image );
123                         mlt_pool_release( this->alpha );
124                         this->image = NULL;
125                         this->alpha = NULL;
126                 }
127         }
128         else if ( this->image == NULL || image_idx != this->image_idx )
129         {
130                 mlt_pool_release( this->image );
131                 mlt_pool_release( this->alpha );
132                 this->image = NULL;
133                 this->alpha = NULL;
134
135                 this->image_idx = image_idx;
136                 pixbuf = gdk_pixbuf_new_from_file( this->filenames[ image_idx ], &error );
137
138                 if ( pixbuf != NULL )
139                 {
140                         // Register this pixbuf for destruction and reuse
141                         mlt_properties_set_data( producer_props, "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL );
142
143                         mlt_properties_set_int( producer_props, "real_width", gdk_pixbuf_get_width( pixbuf ) );
144                         mlt_properties_set_int( producer_props, "real_height", gdk_pixbuf_get_height( pixbuf ) );
145
146                         // Store the width/height of the pixbuf temporarily
147                         this->width = gdk_pixbuf_get_width( pixbuf );
148                         this->height = gdk_pixbuf_get_height( pixbuf );
149                 }
150         }
151
152         // If we have a pixbuf
153         if ( pixbuf && width > 0 )
154         {
155                 char *interps = mlt_properties_get( properties, "rescale.interp" );
156                 int interp = GDK_INTERP_BILINEAR;
157
158                 if ( strcmp( interps, "nearest" ) == 0 )
159                         interp = GDK_INTERP_NEAREST;
160                 else if ( strcmp( interps, "tiles" ) == 0 )
161                         interp = GDK_INTERP_TILES;
162                 else if ( strcmp( interps, "hyper" ) == 0 )
163                         interp = GDK_INTERP_HYPER;
164
165                 // Note - the original pixbuf is already safe and ready for destruction
166                 pixbuf = gdk_pixbuf_scale_simple( pixbuf, width, height, interp );
167
168                 // Store width and height
169                 this->width = width;
170                 this->height = height;
171                 
172                 // Allocate/define image
173                 this->image = mlt_pool_alloc( width * ( height + 1 ) * 2 );
174
175                 // Extract YUV422 and alpha
176                 if ( gdk_pixbuf_get_has_alpha( pixbuf ) )
177                 {
178                         // Allocate the alpha mask
179                         this->alpha = mlt_pool_alloc( this->width * this->height );
180
181                         // Convert the image
182                         mlt_convert_rgb24a_to_yuv422( gdk_pixbuf_get_pixels( pixbuf ),
183                                                                                   this->width, this->height,
184                                                                                   gdk_pixbuf_get_rowstride( pixbuf ),
185                                                                                   this->image, this->alpha );
186                 }
187                 else
188                 { 
189                         // No alpha to extract
190                         mlt_convert_rgb24_to_yuv422( gdk_pixbuf_get_pixels( pixbuf ),
191                                                                                  this->width, this->height,
192                                                                                  gdk_pixbuf_get_rowstride( pixbuf ),
193                                                                                  this->image );
194                 }
195
196                 // Finished with pixbuf now
197                 g_object_unref( pixbuf );
198         }
199
200         // Set width/height of frame
201         mlt_properties_set_int( properties, "width", this->width );
202         mlt_properties_set_int( properties, "height", this->height );
203         mlt_properties_set_int( properties, "real_width", mlt_properties_get_int( producer_props, "real_width" ) );
204         mlt_properties_set_int( properties, "real_height", mlt_properties_get_int( producer_props, "real_height" ) );
205
206         // pass the image data without destructor
207         mlt_properties_set_data( properties, "image", this->image, this->width * ( this->height + 1 ) * 2, NULL, NULL );
208         mlt_properties_set_data( properties, "alpha", this->alpha, this->width * this->height, NULL, NULL );
209 }
210
211 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
212 {
213         // Obtain properties of frame
214         mlt_properties properties = mlt_frame_properties( frame );
215
216         *width = mlt_properties_get_int( properties, "rescale_width" );
217         *height = mlt_properties_get_int( properties, "rescale_height" );
218
219         // Refresh the image
220         refresh_image( frame, *width, *height );
221
222         // May need to know the size of the image to clone it
223         int size = 0;
224
225         // Get the image
226         uint8_t *image = mlt_properties_get_data( properties, "image", &size );
227
228         // Get width and height
229         *width = mlt_properties_get_int( properties, "width" );
230         *height = mlt_properties_get_int( properties, "height" );
231
232         if ( size == 0 )
233         {
234                 *width = mlt_properties_get_int( properties, "normalised_width" );
235                 *height = mlt_properties_get_int( properties, "normalised_height" );
236                 size = *width * ( *height + 1 );
237         }
238
239         // Clone if necessary
240         // NB: Cloning is necessary with this producer (due to processing of images ahead of use)
241         // The fault is not in the design of mlt, but in the implementation of pixbuf...
242         //if ( writable )
243         {
244                 // Clone our image
245                 uint8_t *copy = mlt_pool_alloc( size );
246                 if ( image != NULL )
247                         memcpy( copy, image, size );
248
249                 // We're going to pass the copy on
250                 image = copy;
251
252                 // Now update properties so we free the copy after
253                 mlt_properties_set_data( properties, "image", copy, size, mlt_pool_release, NULL );
254         }
255
256         // Pass on the image
257         *buffer = image;
258
259         return 0;
260 }
261
262 static uint8_t *producer_get_alpha_mask( mlt_frame this )
263 {
264         // Obtain properties of frame
265         mlt_properties properties = mlt_frame_properties( this );
266
267         // Return the alpha mask
268         return mlt_properties_get_data( properties, "alpha", NULL );
269 }
270
271 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
272 {
273         // Get the real structure for this producer
274         producer_pixbuf this = producer->child;
275
276         if ( this->count == 0 && mlt_properties_get( mlt_producer_properties( producer ), "resource" ) != NULL )
277         {
278                 mlt_properties properties = mlt_producer_properties( producer );
279                 char *filename = mlt_properties_get( properties, "resource" );
280                 
281                 // Read xml string
282                 if ( strstr( filename, "<svg" ) )
283                 {
284                         // Generate a temporary file for the svg
285                         char fullname[ 1024 ] = "/tmp/mlt.XXXXXX";
286                         int fd = mkstemp( fullname );
287
288                         if ( fd > -1 )
289                         {
290                                 // Write the svg into the temp file
291                                 ssize_t remaining_bytes;
292                                 char *xml = filename;
293                                 
294                                 // Strip leading crap
295                                 while ( xml[0] != '<' )
296                                         xml++;
297                                 
298                                 remaining_bytes = strlen( xml );
299                                 while ( remaining_bytes > 0 )
300                                         remaining_bytes -= write( fd, xml + strlen( xml ) - remaining_bytes, remaining_bytes );
301                                 close( fd );
302
303                                 this->filenames = realloc( this->filenames, sizeof( char * ) * ( this->count + 1 ) );
304                                 this->filenames[ this->count ++ ] = strdup( fullname );
305
306                                 // Teehe - when the producer closes, delete the temp file and the space allo
307                                 mlt_properties_set_data( properties, "__temporary_file__", this->filenames[ this->count - 1 ], 0, ( mlt_destructor )unlink, NULL );
308                         }
309                 }
310                 // Obtain filenames
311                 else if ( strchr( filename, '%' ) != NULL )
312                 {
313                         // handle picture sequences
314                         int i = 0;
315                         int gap = 0;
316                         char full[1024];
317
318                         while ( gap < 100 )
319                         {
320                                 struct stat buf;
321                                 snprintf( full, 1023, filename, i ++ );
322                                 if ( stat( full, &buf ) == 0 )
323                                 {
324                                         this->filenames = realloc( this->filenames, sizeof( char * ) * ( this->count + 1 ) );
325                                         this->filenames[ this->count ++ ] = strdup( full );
326                                         gap = 0;
327                                 }
328                                 else
329                                 {
330                                         gap ++;
331                                 }
332                         }
333                 }
334                 else if ( strstr( filename, "/.all." ) != NULL )
335                 {
336                         char *dir_name = strdup( filename );
337                         char *extension = strrchr( filename, '.' );
338                         *( strstr( dir_name, "/.all." ) + 1 ) = '\0';
339                         char fullname[ 1024 ];
340                         strcpy( fullname, dir_name );
341                         struct dirent **de = NULL;
342                         int n = scandir( fullname, &de, filter_files, alphasort );
343                         int i;
344                         struct stat info;
345
346                         for (i = 0; i < n; i++ )
347                         {
348                                 snprintf( fullname, 1023, "%s%s", dir_name, de[i]->d_name );
349
350                                 if ( strstr( fullname, extension ) && lstat( fullname, &info ) == 0 &&
351                                         ( S_ISREG( info.st_mode ) || info.st_mode | S_IXUSR ) )
352                                 {
353                                         this->filenames = realloc( this->filenames, sizeof( char * ) * ( this->count + 1 ) );
354                                         this->filenames[ this->count ++ ] = strdup( fullname );
355                                 }
356                                 free( de[ i ] );
357                         }
358
359                         free( de );
360                         free( dir_name );
361                 }
362                 else
363                 {
364                         this->filenames = realloc( this->filenames, sizeof( char * ) * ( this->count + 1 ) );
365                         this->filenames[ this->count ++ ] = strdup( filename );
366                 }
367         }
368
369         // Generate a frame
370         *frame = mlt_frame_init( );
371
372         if ( *frame != NULL && this->count > 0 )
373         {
374                 // Obtain properties of frame and producer
375                 mlt_properties properties = mlt_frame_properties( *frame );
376
377                 // Set the producer on the frame properties
378                 mlt_properties_set_data( properties, "producer_pixbuf", this, 0, NULL, NULL );
379
380                 // Update timecode on the frame we're creating
381                 mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
382
383                 // Ensure that we have a way to obtain the position in the get_image
384                 mlt_properties_set_position( properties, "pixbuf_position", mlt_producer_position( producer ) );
385
386                 // Refresh the image
387                 refresh_image( *frame, 0, 0 );
388
389                 // Set producer-specific frame properties
390                 mlt_properties_set_int( properties, "progressive", 1 );
391                 mlt_properties_set_double( properties, "aspect_ratio", 1 );
392
393                 // Set alpha call back
394                 ( *frame )->get_alpha_mask = producer_get_alpha_mask;
395
396                 // Push the get_image method
397                 mlt_frame_push_get_image( *frame, producer_get_image );
398         }
399
400         // Calculate the next timecode
401         mlt_producer_prepare_next( producer );
402
403         return 0;
404 }
405
406 static void producer_close( mlt_producer parent )
407 {
408         producer_pixbuf this = parent->child;
409         mlt_pool_release( this->image );
410         parent->close = NULL;
411         mlt_producer_close( parent );
412         while ( this->count -- )
413                 free( this->filenames[ this->count ] );
414         free( this->filenames );
415         free( this );
416 }