]> git.sesse.net Git - mlt/blob - src/modules/core/filter_data_show.c
Minor corrections and more affine experiments
[mlt] / src / modules / core / filter_data_show.c
1 /*
2  * filter_data_show.c -- data feed filter
3  * Copyright (C) 2004-2005 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
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 "filter_data.h"
22 #include <framework/mlt.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 /** Handle the profile.
27 */
28
29 static mlt_filter obtain_filter( mlt_filter filter, char *type )
30 {
31         // Result to return
32         mlt_filter result = NULL;
33
34         // Miscelaneous variable
35         int i = 0;
36         int type_len = strlen( type );
37
38         // Get the properties of the data show filter
39         mlt_properties filter_properties = MLT_FILTER_PROPERTIES( filter );
40
41         // Get the profile properties
42         mlt_properties profile_properties = mlt_properties_get_data( filter_properties, "profile_properties", NULL );
43
44         // Obtain the profile_properties if we haven't already
45         if ( profile_properties == NULL )
46         {
47                 char temp[ 512 ];
48
49                 // Get the profile requested
50                 char *profile = mlt_properties_get( filter_properties, "resource" );
51
52                 // If none is specified, pick up the default for this normalisation
53                 if ( profile == NULL )
54                         sprintf( temp, "%s/feeds/%s/data_fx.properties", mlt_factory_prefix( ), mlt_environment( "MLT_NORMALISATION" ) );
55                 else if ( strchr( profile, '%' ) )
56                         sprintf( temp, "%s/feeds/%s/%s", mlt_factory_prefix( ), mlt_environment( "MLT_NORMALISATION" ), strchr( profile, '%' ) + 1 );
57                 else
58                         strcpy( temp, profile );
59
60                 // Load the specified profile or use the default
61                 profile_properties = mlt_properties_load( temp );
62
63                 // Store for later retrieval
64                 mlt_properties_set_data( filter_properties, "profile_properties", profile_properties, 0, ( mlt_destructor )mlt_properties_close, NULL );
65         }
66
67         if ( profile_properties != NULL )
68         {
69                 for ( i = 0; i < mlt_properties_count( profile_properties ); i ++ )
70                 {
71                         char *name = mlt_properties_get_name( profile_properties, i );
72                         char *value = mlt_properties_get_value( profile_properties, i );
73         
74                         if ( result == NULL && !strcmp( name, type ) && result == NULL )
75                                 result = mlt_factory_filter( value, NULL );
76                         else if ( result != NULL && !strncmp( name, type, type_len ) && name[ type_len ] == '.' )
77                                 mlt_properties_set( MLT_FILTER_PROPERTIES( result ), name + type_len + 1, value );
78                         else if ( result != NULL )
79                                 break;
80                 }
81         }
82
83         return result;
84 }
85
86 /** Process the frame for the requested type
87 */
88
89 static int process_feed( mlt_properties feed, mlt_filter filter, mlt_frame frame )
90 {
91         // Error return
92         int error = 1;
93
94         // Get the properties of the data show filter
95         mlt_properties filter_properties = MLT_FILTER_PROPERTIES( filter );
96
97         // Get the type requested by the feeding filter
98         char *type = mlt_properties_get( feed, "type" );
99
100         // Fetch the filter associated to this type
101         mlt_filter requested = mlt_properties_get_data( filter_properties, type, NULL );
102
103         // If it doesn't exist, then create it now
104         if ( requested == NULL )
105         {
106                 // Source filter from profile
107                 requested = obtain_filter( filter, type );
108
109                 // Store it on the properties for subsequent retrieval/destruction
110                 mlt_properties_set_data( filter_properties, type, requested, 0, ( mlt_destructor )mlt_filter_close, NULL );
111         }
112
113         // If we have one, then process it now...
114         if ( requested != NULL )
115         {
116                 int i = 0;
117                 mlt_properties properties = MLT_FILTER_PROPERTIES( requested );
118                 static char *prefix = "properties.";
119                 int len = strlen( prefix );
120
121                 // Determine if this is an absolute or relative feed
122                 int absolute = mlt_properties_get_int( feed, "absolute" );
123
124                 // Make do with what we have
125                 int length = !absolute ? 
126                                          mlt_properties_get_int( feed, "out" ) - mlt_properties_get_int( feed, "in" ) + 1 :
127                                          mlt_properties_get_int( feed, "out" ) + 1;
128
129                 // Repeat period
130                 int period = mlt_properties_get_int( properties, "period" );
131                 period = period == 0 ? 1 : period;
132
133                 // Pass properties from feed into requested
134                 for ( i = 0; i < mlt_properties_count( properties ); i ++ )
135                 {
136                         char *name = mlt_properties_get_name( properties, i );
137                         char *key = mlt_properties_get_value( properties, i );
138                         if ( !strncmp( name, prefix, len ) )
139                         {
140                                 if ( !strncmp( name + len, "length[", 7 ) )
141                                 {
142                                         mlt_properties_set_position( properties, key, ( length - period ) / period );
143                                 }
144                                 else
145                                 {
146                                         char *value = mlt_properties_get( feed, name + len );
147                                         if ( value != NULL )
148                                                 mlt_properties_set( properties, key, value );
149                                 }
150                         }
151                 }
152
153                 // Set the original position on the frame
154                 if ( absolute == 0 )
155                         mlt_frame_set_position( frame, mlt_properties_get_int( feed, "position" ) - mlt_properties_get_int( feed, "in" ) );
156                 else
157                         mlt_frame_set_position( frame, mlt_properties_get_int( feed, "position" ) );
158
159                 // Process the filter
160                 mlt_filter_process( requested, frame );
161
162                 // Should be ok...
163                 error = 0;
164         }
165
166         return error;
167 }
168
169 void process_queue( mlt_deque data_queue, mlt_frame frame, mlt_filter filter )
170 {
171         if ( data_queue != NULL )
172         {
173                 // Create a new queue for those that we can't handle
174                 mlt_deque temp_queue = mlt_deque_init( );
175
176                 // Iterate through each entry on the queue
177                 while ( mlt_deque_peek_front( data_queue ) != NULL )
178                 {
179                         // Get the data feed
180                         mlt_properties feed = mlt_deque_pop_front( data_queue );
181
182                         if ( mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "debug" ) != NULL )
183                                 mlt_properties_debug( feed, mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "debug" ), stderr );
184
185                         // Process the data feed...
186                         if ( process_feed( feed, filter, frame ) == 0 )
187                                 mlt_properties_close( feed );
188                         else
189                                 mlt_deque_push_back( temp_queue, feed );
190                 }
191         
192                 // Now put the unprocessed feeds back on the stack
193                 while ( mlt_deque_peek_front( temp_queue ) )
194                 {
195                         // Get the data feed
196                         mlt_properties feed = mlt_deque_pop_front( temp_queue );
197         
198                         // Put it back on the data queue
199                         mlt_deque_push_back( data_queue, feed );
200                 }
201         
202                 // Close the temporary queue
203                 mlt_deque_close( temp_queue );
204         }
205 }
206
207 /** Get the image.
208 */
209
210 static int filter_get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
211 {
212         // Pop the service
213         mlt_filter filter = mlt_frame_pop_service( frame );
214
215         // Get the frame properties
216         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
217
218         // Track specific
219         process_queue( mlt_properties_get_data( frame_properties, "data_queue", NULL ), frame, filter );
220
221         // Global
222         process_queue( mlt_properties_get_data( frame_properties, "global_queue", NULL ), frame, filter );
223
224         // Need to get the image
225         return mlt_frame_get_image( frame, image, format, width, height, 1 );
226 }
227
228
229 /** Filter processing.
230 */
231
232 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
233 {
234         // Push the filter
235         mlt_frame_push_service( frame, this );
236
237         // Register the get image method
238         mlt_frame_push_get_image( frame, filter_get_image );
239
240         // Return the frame
241         return frame;
242 }
243
244 /** Constructor for the filter.
245 */
246
247 mlt_filter filter_data_show_init( char *arg )
248 {
249         // Create the filter
250         mlt_filter this = mlt_filter_new( );
251
252         // Initialise it
253         if ( this != NULL )
254         {
255                 // Get the properties
256                 mlt_properties properties = MLT_FILTER_PROPERTIES( this );
257
258                 // Assign the argument (default to titles)
259                 mlt_properties_set( properties, "resource", arg == NULL ? NULL : arg );
260
261                 // Specify the processing method
262                 this->process = filter_process;
263         }
264
265         return this;
266 }
267