]> git.sesse.net Git - mlt/blob - src/modules/qimage/producer_qimage.c
Massive refactoring of image conversion.
[mlt] / src / modules / qimage / producer_qimage.c
1 /*
2  * producer_image.c -- a QT/QImage based producer for MLT
3  * Copyright (C) 2006 Visual Media
4  * Author: Charles Yates <charles.yates@gmail.com>
5  *
6  * NB: This module is designed to be functionally equivalent to the 
7  * gtk2 image loading module so it can be used as replacement.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #include <framework/mlt_producer.h>
25 #include <framework/mlt_cache.h>
26 #include "qimage_wrapper.h"
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <math.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <unistd.h>
35
36 static void load_filenames( producer_qimage this, mlt_properties producer_properties );
37 static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index );
38 static void producer_close( mlt_producer parent );
39
40 mlt_producer producer_qimage_init( mlt_profile profile, mlt_service_type type, const char *id, char *filename )
41 {
42         producer_qimage this = calloc( sizeof( struct producer_qimage_s ), 1 );
43         if ( this != NULL && mlt_producer_init( &this->parent, this ) == 0 )
44         {
45                 mlt_producer producer = &this->parent;
46
47                 // Get the properties interface
48                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( &this->parent );
49         
50                 // Callback registration
51 #ifdef USE_KDE
52                 init_qimage();
53 #endif
54                 producer->get_frame = producer_get_frame;
55                 producer->close = ( mlt_destructor )producer_close;
56
57                 // Set the default properties
58                 mlt_properties_set( properties, "resource", filename );
59                 mlt_properties_set_int( properties, "ttl", 25 );
60                 mlt_properties_set_int( properties, "aspect_ratio", 1 );
61                 mlt_properties_set_int( properties, "progressive", 1 );
62                 
63                 // Validate the resource
64                 if ( filename )
65                         load_filenames( this, properties );
66                 if ( this->count )
67                 {
68                         mlt_frame frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
69                         if ( frame )
70                         {
71                                 mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
72                                 pthread_mutex_init( &this->mutex, NULL );
73                                 mlt_properties_set_data( frame_properties, "producer_qimage", this, 0, NULL, NULL );
74                                 mlt_frame_set_position( frame, mlt_producer_position( producer ) );
75                                 mlt_properties_set_position( frame_properties, "qimage_position", mlt_producer_position( producer ) );
76                                 refresh_qimage( this, frame, 0, 0 );
77                                 mlt_frame_close( frame );
78                         }
79                 }
80                 if ( this->current_width == 0 )
81                 {
82                         producer_close( producer );
83                         producer = NULL;
84                 }
85                 return producer;
86         }
87         free( this );
88         return NULL;
89 }
90
91 static void load_filenames( producer_qimage this, mlt_properties producer_properties )
92 {
93         char *filename = mlt_properties_get( producer_properties, "resource" );
94         this->filenames = mlt_properties_new( );
95
96         // Read xml string
97         if ( strstr( filename, "<svg" ) )
98         {
99                 // Generate a temporary file for the svg
100                 char fullname[ 1024 ] = "/tmp/mlt.XXXXXX";
101                 int fd = mkstemp( fullname );
102
103                 if ( fd > -1 )
104                 {
105                         // Write the svg into the temp file
106                         ssize_t remaining_bytes;
107                         char *xml = filename;
108                         
109                         // Strip leading crap
110                         while ( xml[0] != '<' )
111                                 xml++;
112                         
113                         remaining_bytes = strlen( xml );
114                         while ( remaining_bytes > 0 )
115                                 remaining_bytes -= write( fd, xml + strlen( xml ) - remaining_bytes, remaining_bytes );
116                         close( fd );
117
118                         mlt_properties_set( this->filenames, "0", fullname );
119
120                         // Teehe - when the producer closes, delete the temp file and the space allo
121                         mlt_properties_set_data( producer_properties, "__temporary_file__", fullname, 0, ( mlt_destructor )unlink, NULL );
122                 }
123         }
124         // Obtain filenames
125         else if ( strchr( filename, '%' ) != NULL )
126         {
127                 // handle picture sequences
128                 int i = mlt_properties_get_int( producer_properties, "begin" );
129                 int gap = 0;
130                 char full[1024];
131                 int keyvalue = 0;
132                 char key[ 50 ];
133
134                 while ( gap < 100 )
135                 {
136                         struct stat buf;
137                         snprintf( full, 1023, filename, i ++ );
138                         if ( stat( full, &buf ) == 0 )
139                         {
140                                 sprintf( key, "%d", keyvalue ++ );
141                                 mlt_properties_set( this->filenames, key, full );
142                                 gap = 0;
143                         }
144                         else
145                         {
146                                 gap ++;
147                         }
148                 }
149                 if ( mlt_properties_count( this->filenames ) > 0 )
150                         mlt_properties_set_int( producer_properties, "ttl", 1 );
151         }
152         else if ( strstr( filename, "/.all." ) != NULL )
153         {
154                 char wildcard[ 1024 ];
155                 char *dir_name = strdup( filename );
156                 char *extension = strrchr( dir_name, '.' );
157
158                 *( strstr( dir_name, "/.all." ) + 1 ) = '\0';
159                 sprintf( wildcard, "*%s", extension );
160
161                 mlt_properties_dir_list( this->filenames, dir_name, wildcard, 1 );
162
163                 free( dir_name );
164         }
165         else
166         {
167                 mlt_properties_set( this->filenames, "0", filename );
168         }
169
170         this->count = mlt_properties_count( this->filenames );
171 }
172
173 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
174 {
175         // Obtain properties of frame
176         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
177
178         // Obtain the producer for this frame
179         producer_qimage this = mlt_properties_get_data( properties, "producer_qimage", NULL );
180
181         *width = mlt_properties_get_int( properties, "rescale_width" );
182         *height = mlt_properties_get_int( properties, "rescale_height" );
183
184         // Refresh the image
185         refresh_qimage( this, frame, *width, *height );
186
187         // Get width and height (may have changed during the refresh)
188         *width = mlt_properties_get_int( properties, "width" );
189         *height = mlt_properties_get_int( properties, "height" );
190
191         // NB: Cloning is necessary with this producer (due to processing of images ahead of use)
192         // The fault is not in the design of mlt, but in the implementation of the qimage producer...
193         if ( this->current_image )
194         {
195                 // Clone the image and the alpha
196                 int image_size = this->current_width * ( this->current_height + 1 ) * ( this->has_alpha ? 4 :3 );
197                 uint8_t *image_copy = mlt_pool_alloc( image_size );
198                 memcpy( image_copy, this->current_image, image_size );
199                 // Now update properties so we free the copy after
200                 mlt_properties_set_data( properties, "image", image_copy, image_size, mlt_pool_release, NULL );
201                 // We're going to pass the copy on
202                 *buffer = image_copy;
203                 *format = this->has_alpha ? mlt_image_rgb24a : mlt_image_rgb24;
204                 mlt_log_debug( MLT_PRODUCER_SERVICE( &this->parent ), "%dx%d (%s)\n", 
205                         this->current_width, this->current_height, mlt_image_format_name( *format ) );
206         }
207         else
208         {
209                 // TODO: Review all cases of invalid images
210                 *buffer = mlt_pool_alloc( 50 * 50 * 2 );
211                 mlt_properties_set_data( properties, "image", *buffer, 50 * 50 * 2, mlt_pool_release, NULL );
212                 *width = 50;
213                 *height = 50;
214                 *format = mlt_image_yuv422;
215         }
216
217         // Release references and locks
218         pthread_mutex_unlock( &this->mutex );
219         mlt_cache_item_close( this->image_cache );
220
221         return 0;
222 }
223
224 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
225 {
226         // Get the real structure for this producer
227         producer_qimage this = producer->child;
228
229         // Fetch the producers properties
230         mlt_properties producer_properties = MLT_PRODUCER_PROPERTIES( producer );
231
232         if ( this->filenames == NULL && mlt_properties_get( producer_properties, "resource" ) != NULL )
233                 load_filenames( this, producer_properties );
234
235         // Generate a frame
236         *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
237
238         if ( *frame != NULL && this->count > 0 )
239         {
240                 // Obtain properties of frame and producer
241                 mlt_properties properties = MLT_FRAME_PROPERTIES( *frame );
242
243                 // Set the producer on the frame properties
244                 mlt_properties_set_data( properties, "producer_qimage", this, 0, NULL, NULL );
245
246                 // Update timecode on the frame we're creating
247                 mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
248
249                 // Ensure that we have a way to obtain the position in the get_image
250                 mlt_properties_set_position( properties, "qimage_position", mlt_producer_position( producer ) );
251
252                 // Refresh the image
253                 refresh_qimage( this, *frame, 0, 0 );
254
255                 // Set producer-specific frame properties
256                 mlt_properties_set_int( properties, "progressive", mlt_properties_get_int( producer_properties, "progressive" ) );
257                 mlt_properties_set_double( properties, "aspect_ratio", mlt_properties_get_double( producer_properties, "aspect_ratio" ) );
258
259                 // Push the get_image method
260                 mlt_frame_push_get_image( *frame, producer_get_image );
261         }
262
263         // Calculate the next timecode
264         mlt_producer_prepare_next( producer );
265
266         return 0;
267 }
268
269 static void producer_close( mlt_producer parent )
270 {
271         producer_qimage this = parent->child;
272         pthread_mutex_destroy( &this->mutex );
273         parent->close = NULL;
274         mlt_producer_close( parent );
275         mlt_properties_close( this->filenames );
276         free( this );
277 }