2 * transition_region.c -- region transition
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
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.
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.
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.
21 #include "transition_region.h"
22 #include "transition_composite.h"
24 #include <framework/mlt.h>
30 static int create_instance( mlt_transition
this, char *name
, char *value
, int count
)
32 // Return from this function
35 // Duplicate the value
36 char *type
= strdup( value
);
38 // Pointer to filter argument
39 char *arg
= type
== NULL ? NULL
: strchr( type
, ':' );
41 // New filter being created
42 mlt_filter filter
= NULL
;
44 // Cleanup type and arg
49 filter
= mlt_factory_filter( type
, arg
);
51 // If we have a filter, then initialise and store it
55 mlt_properties properties
= mlt_transition_properties( this );
57 // String to hold the property name
60 // String to hold the passdown key
64 sprintf( id
, "_filter_%d", count
);
67 sprintf( key
, "%s.", name
);
69 // Just in case, let's assume that the filter here has a composite
70 mlt_properties_set( mlt_filter_properties( filter
), "composite.start", "0%,0%:100%x100%" );
71 mlt_properties_set( mlt_filter_properties( filter
), "composite.fill", "true" );
73 // Pass all the key properties on the filter down
74 mlt_properties_pass( mlt_filter_properties( filter
), properties
, key
);
76 // Ensure that filter is assigned
77 mlt_properties_set_data( properties
, id
, filter
, 0, ( mlt_destructor
)mlt_filter_close
, NULL
);
81 // Indicate that an error has occurred
88 // Return error condition
92 static uint8_t *filter_get_alpha_mask( mlt_frame
this )
94 // Obtain properties of frame
95 mlt_properties properties
= mlt_frame_properties( this );
97 // Get the shape frame
98 mlt_frame shape_frame
= mlt_properties_get_data( properties
, "shape_frame", NULL
);
100 // Get the width and height of the image
101 int region_width
= mlt_properties_get_int( mlt_frame_properties( this ), "width" );
102 int region_height
= mlt_properties_get_int( mlt_frame_properties( this ), "height" );
103 uint8_t *image
= NULL
;
104 mlt_image_format format
= mlt_image_yuv422
;
106 // Get the shape image to trigger alpha creation
107 mlt_properties_set( mlt_frame_properties( shape_frame
), "distort", "true" );
108 mlt_frame_get_image( shape_frame
, &image
, &format
, ®ion_width
, ®ion_height
, 0 );
110 return mlt_frame_get_alpha_mask( shape_frame
);
116 static int transition_get_image( mlt_frame frame
, uint8_t **image
, mlt_image_format
*format
, int *width
, int *height
, int writable
)
118 // Error we will return
121 // We will get the 'b frame' from the frame stack
122 mlt_frame b_frame
= mlt_frame_pop_frame( frame
);
124 // Get the watermark transition object
125 mlt_transition
this = mlt_frame_pop_service( frame
);
127 // Get the properties of the transition
128 mlt_properties properties
= mlt_transition_properties( this );
130 // Get the composite from the transition
131 mlt_transition composite
= mlt_properties_get_data( properties
, "composite", NULL
);
133 // Look for the first filter
134 mlt_filter filter
= mlt_properties_get_data( properties
, "_filter_0", NULL
);
136 // Get the unique id of the filter (used to reacquire the producer position)
137 char *name
= mlt_properties_get( properties
, "_unique_id" );
139 // Get the original producer position
140 mlt_position position
= mlt_properties_get_position( mlt_frame_properties( frame
), name
);
142 // Create a composite if we don't have one
143 if ( composite
== NULL
)
145 // Create composite via the factory
146 composite
= mlt_factory_transition( "composite", NULL
);
149 if ( composite
!= NULL
)
151 // Get the properties
152 mlt_properties composite_properties
= mlt_transition_properties( composite
);
154 // We want to ensure that we don't get a wobble...
155 mlt_properties_set( composite_properties
, "distort", "true" );
156 mlt_properties_set( composite_properties
, "progressive", "1" );
158 // Pass all the composite. properties on the transition down
159 mlt_properties_pass( composite_properties
, properties
, "composite." );
161 // Register the composite for reuse/destruction
162 mlt_properties_set_data( properties
, "composite", composite
, 0, ( mlt_destructor
)mlt_transition_close
, NULL
);
167 if ( filter
== NULL
)
172 // Number of filters created
175 // Loop for all properties
176 for ( i
= 0; i
< mlt_properties_count( properties
); i
++ )
178 // Get the name of this property
179 char *name
= mlt_properties_get_name( properties
, i
);
181 // If the name does not contain a . and matches filter
182 if ( strchr( name
, '.' ) == NULL
&& !strncmp( name
, "filter", 6 ) )
184 // Get the filter constructor
185 char *value
= mlt_properties_get_value( properties
, i
);
187 // Create an instance
188 if ( create_instance( this, name
, value
, count
) == 0 )
195 error
= mlt_frame_get_image( frame
, image
, format
, width
, height
, 1 );
197 // Only continue if we have both filter and composite
198 if ( composite
!= NULL
)
200 // Get the resource of this filter (could be a shape [rectangle/circle] or an alpha provider of choice
201 char *resource
= mlt_properties_get( properties
, "resource" );
203 // String to hold the filter to query on
206 // Index to hold the count
209 // We will get the 'b frame' from the composite only if it's NULL
210 if ( b_frame
== NULL
)
213 b_frame
= composite_copy_region( composite
, frame
, position
);
215 // Ensure a destructor
216 mlt_properties_set_data( mlt_frame_properties( frame
), name
, b_frame
, 0, ( mlt_destructor
)mlt_frame_close
, NULL
);
219 // Make sure the filter is in the correct position
220 while ( filter
!= NULL
)
223 mlt_filter_process( filter
, b_frame
);
225 // Generate the key for the next
226 sprintf( id
, "_filter_%d", ++ i
);
228 // Get the next filter
229 filter
= mlt_properties_get_data( properties
, id
, NULL
);
232 // Hmm - this is probably going to go wrong....
233 mlt_frame_set_position( frame
, position
);
235 // Get the b frame and process with composite if successful
236 mlt_transition_process( composite
, frame
, b_frame
);
238 // If we have a shape producer copy the alpha mask from the shape frame to the b_frame
239 if ( strcmp( resource
, "rectangle" ) != 0 )
241 // Get the producer from the transition
242 mlt_producer producer
= mlt_properties_get_data( properties
, "producer", NULL
);
244 // If We have no producer then create one
245 if ( producer
== NULL
)
247 // Get the factory producer service
248 char *factory
= mlt_properties_get( properties
, "factory" );
250 // Special case circle resource
251 if ( strcmp( resource
, "circle" ) == 0 )
253 // Special case to ensure that fezzik produces a pixbuf with a NULL constructor
256 // Specify the svg circle
257 mlt_properties_set( properties
, "producer.resource", "<svg width='100' height='100'><circle cx='50' cy='50' r='50' fill='black'/></svg>" );
260 // Create the producer
261 producer
= mlt_factory_producer( factory
, resource
);
264 if ( producer
!= NULL
)
266 // Get the producer properties
267 mlt_properties producer_properties
= mlt_producer_properties( producer
);
269 // Ensure that we loop
270 mlt_properties_set( producer_properties
, "eof", "loop" );
272 // Now pass all producer. properties on the transition down
273 mlt_properties_pass( producer_properties
, properties
, "producer." );
275 // Register the producer for reuse/destruction
276 mlt_properties_set_data( properties
, "producer", producer
, 0, ( mlt_destructor
)mlt_producer_close
, NULL
);
280 // Now use the shape producer
281 if ( producer
!= NULL
)
283 // We will get the alpha frame from the producer
284 mlt_frame shape_frame
= NULL
;
286 // Make sure the producer is in the correct position
287 mlt_producer_seek( producer
, position
);
289 // Get the shape frame
290 if ( mlt_service_get_frame( mlt_producer_service( producer
), &shape_frame
, 0 ) == 0 )
292 // Ensure that the shape frame will be closed
293 mlt_properties_set_data( mlt_frame_properties( b_frame
), "shape_frame", shape_frame
, 0, ( mlt_destructor
)mlt_frame_close
, NULL
);
295 // Specify the callback for evaluation
296 b_frame
->get_alpha_mask
= filter_get_alpha_mask
;
302 error
= mlt_frame_get_image( frame
, image
, format
, width
, height
, 0 );
308 /** Filter processing.
311 static mlt_frame
transition_process( mlt_transition
this, mlt_frame a_frame
, mlt_frame b_frame
)
313 // Get the properties of the frame
314 mlt_properties properties
= mlt_frame_properties( a_frame
);
316 // Get a unique name to store the frame position
317 char *name
= mlt_properties_get( mlt_transition_properties( this ), "_unique_id" );
319 // Assign the current position to the name
320 mlt_properties_set_position( properties
, name
, mlt_frame_get_position( a_frame
) );
322 // Push the transition on to the frame
323 mlt_frame_push_service( a_frame
, this );
325 // Push the b_frame on to the stack
326 mlt_frame_push_frame( a_frame
, b_frame
);
328 // Push the transition method
329 mlt_frame_push_get_image( a_frame
, transition_get_image
);
335 /** Constructor for the transition.
338 mlt_transition
transition_region_init( void *arg
)
340 // Create a new transition
341 mlt_transition
this = mlt_transition_new( );
343 // Further initialisation
346 // Get the properties from the transition
347 mlt_properties properties
= mlt_transition_properties( this );
349 // Assign the transition process method
350 this->process
= transition_process
;
353 mlt_properties_set( properties
, "factory", "fezzik" );
355 // Resource defines the shape of the region
356 mlt_properties_set( properties
, "resource", arg
== NULL ?
"rectangle" : arg
);
359 // Return the transition