]> git.sesse.net Git - mlt/blob - src/modules/core/transition_composite.c
Merge branch 'mlt_framebuffer' of git://github.com/j-b-m/mlt
[mlt] / src / modules / core / transition_composite.c
1 /*
2  * transition_composite.c -- compose one image over another using alpha channel
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
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 "transition_composite.h"
22 #include <framework/mlt.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <ctype.h>
27 #include <string.h>
28 #include <math.h>
29
30 typedef void ( *composite_line_fn )( uint8_t *dest, uint8_t *src, int width_src, uint8_t *alpha_b, uint8_t *alpha_a, int weight, uint16_t *luma, double softness );
31
32 /** Geometry struct.
33 */
34
35 struct geometry_s
36 {
37         struct mlt_geometry_item_s item;
38         int nw; // normalised width
39         int nh; // normalised height
40         int sw; // scaled width, not including consumer scale based upon w/nw
41         int sh; // scaled height, not including consumer scale based upon h/nh
42         int halign; // horizontal alignment: 0=left, 1=center, 2=right
43         int valign; // vertical alignment: 0=top, 1=middle, 2=bottom
44         int x_src;
45         int y_src;
46 };
47
48 /** Parse the alignment properties into the geometry.
49 */
50
51 static int alignment_parse( char* align )
52 {
53         int ret = 0;
54         
55         if ( align == NULL );
56         else if ( isdigit( align[ 0 ] ) )
57                 ret = atoi( align );
58         else if ( align[ 0 ] == 'c' || align[ 0 ] == 'm' )
59                 ret = 1;
60         else if ( align[ 0 ] == 'r' || align[ 0 ] == 'b' )
61                 ret = 2;
62
63         return ret;
64 }
65
66 /** Calculate real geometry.
67 */
68
69 static void geometry_calculate( mlt_transition this, struct geometry_s *output, double position )
70 {
71         mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
72         mlt_geometry geometry = mlt_properties_get_data( properties, "geometries", NULL );
73         int mirror_off = mlt_properties_get_int( properties, "mirror_off" );
74         int repeat_off = mlt_properties_get_int( properties, "repeat_off" );
75         int length = mlt_geometry_get_length( geometry );
76
77         // Allow wrapping
78         if ( !repeat_off && position >= length && length != 0 )
79         {
80                 int section = position / length;
81                 position -= section * length;
82                 if ( !mirror_off && section % 2 == 1 )
83                         position = length - position;
84         }
85
86         // Fetch the key for the position
87         mlt_geometry_fetch( geometry, &output->item, position );
88 }
89
90 static mlt_geometry transition_parse_keys( mlt_transition this, int normalised_width, int normalised_height )
91 {
92         // Loop variable for property interrogation
93         int i = 0;
94
95         // Get the properties of the transition
96         mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
97
98         // Create an empty geometries object
99         mlt_geometry geometry = mlt_geometry_init( );
100
101         // Get the in and out position
102         mlt_position in = mlt_transition_get_in( this );
103         mlt_position out = mlt_transition_get_out( this );
104         int length = out - in + 1;
105         double cycle = mlt_properties_get_double( properties, "cycle" );
106
107         // Get the new style geometry string
108         char *property = mlt_properties_get( properties, "geometry" );
109
110         // Allow a geometry repeat cycle
111         if ( cycle >= 1 )
112                 length = cycle;
113         else if ( cycle > 0 )
114                 length *= cycle;
115
116         // Parse the geometry if we have one
117         mlt_geometry_parse( geometry, property, length, normalised_width, normalised_height );
118
119         // Check if we're using the old style geometry
120         if ( property == NULL )
121         {
122                 // DEPRECATED: Multiple keys for geometry information is inefficient and too rigid for 
123                 // practical use - while deprecated, it has been slightly extended too - keys can now
124                 // be specified out of order, and can be blanked or NULL to simulate removal
125
126                 // Structure to use for parsing and inserting
127                 struct mlt_geometry_item_s item;
128
129                 // Parse the start property
130                 item.frame = 0;
131                 if ( mlt_geometry_parse_item( geometry, &item, mlt_properties_get( properties, "start" ) ) == 0 )
132                         mlt_geometry_insert( geometry, &item );
133
134                 // Parse the keys in between
135                 for ( i = 0; i < mlt_properties_count( properties ); i ++ )
136                 {
137                         // Get the name of the property
138                         char *name = mlt_properties_get_name( properties, i );
139         
140                         // Check that it's valid
141                         if ( !strncmp( name, "key[", 4 ) )
142                         {
143                                 // Get the value of the property
144                                 char *value = mlt_properties_get_value( properties, i );
145         
146                                 // Determine the frame number
147                                 item.frame = atoi( name + 4 );
148         
149                                 // Parse and add to the list
150                                 if ( mlt_geometry_parse_item( geometry, &item, value ) == 0 )
151                                         mlt_geometry_insert( geometry, &item );
152                                 else
153                                         fprintf( stderr, "Invalid Key - skipping %s = %s\n", name, value );
154                         }
155                 }
156
157                 // Parse the end
158                 item.frame = -1;
159                 if ( mlt_geometry_parse_item( geometry, &item, mlt_properties_get( properties, "end" ) ) == 0 )
160                         mlt_geometry_insert( geometry, &item );
161         }
162         
163         return geometry;
164 }
165
166 /** Adjust position according to scaled size and alignment properties.
167 */
168
169 static void alignment_calculate( struct geometry_s *geometry )
170 {
171         geometry->item.x += ( geometry->item.w - geometry->sw ) * geometry->halign / 2;
172         geometry->item.y += ( geometry->item.h - geometry->sh ) * geometry->valign / 2;
173 }
174
175 /** Calculate the position for this frame.
176 */
177
178 static int position_calculate( mlt_transition this, mlt_position position )
179 {
180         // Get the in and out position
181         mlt_position in = mlt_transition_get_in( this );
182
183         // Now do the calcs
184         return position - in;
185 }
186
187 /** Calculate the field delta for this frame - position between two frames.
188 */
189
190 static inline double delta_calculate( mlt_transition this, mlt_frame frame, mlt_position position )
191 {
192         // Get the in and out position
193         mlt_position in = mlt_transition_get_in( this );
194         mlt_position out = mlt_transition_get_out( this );
195         double length = out - in + 1;
196
197         // Now do the calcs
198         double x = ( double )( position - in ) / length;
199         double y = ( double )( position + 1 - in ) / length;
200
201         return length * ( y - x ) / 2.0;
202 }
203
204 static int get_value( mlt_properties properties, const char *preferred, const char *fallback )
205 {
206         int value = mlt_properties_get_int( properties, preferred );
207         if ( value == 0 )
208                 value = mlt_properties_get_int( properties, fallback );
209         return value;
210 }
211
212 /** A linear threshold determination function.
213 */
214
215 static inline int32_t linearstep( int32_t edge1, int32_t edge2, int32_t a )
216 {
217         if ( a < edge1 )
218                 return 0;
219
220         if ( a >= edge2 )
221                 return 0x10000;
222
223         return ( ( a - edge1 ) << 16 ) / ( edge2 - edge1 );
224 }
225
226 /** A smoother, non-linear threshold determination function.
227 */
228
229 static inline int32_t smoothstep( int32_t edge1, int32_t edge2, uint32_t a )
230 {
231         if ( a < edge1 )
232                 return 0;
233
234         if ( a >= edge2 )
235                 return 0x10000;
236
237         a = ( ( a - edge1 ) << 16 ) / ( edge2 - edge1 );
238
239         return ( ( ( a * a ) >> 16 )  * ( ( 3 << 16 ) - ( 2 * a ) ) ) >> 16;
240 }
241
242 /** Load the luma map from PGM stream.
243 */
244
245 static void luma_read_pgm( FILE *f, uint16_t **map, int *width, int *height )
246 {
247         uint8_t *data = NULL;
248         while (1)
249         {
250                 char line[128];
251                 char comment[128];
252                 int i = 2;
253                 int maxval;
254                 int bpp;
255                 uint16_t *p;
256
257                 line[127] = '\0';
258
259                 // get the magic code
260                 if ( fgets( line, 127, f ) == NULL )
261                         break;
262
263                 // skip comments
264                 while ( sscanf( line, " #%s", comment ) > 0 )
265                         if ( fgets( line, 127, f ) == NULL )
266                                 break;
267
268                 if ( line[0] != 'P' || line[1] != '5' )
269                         break;
270
271                 // skip white space and see if a new line must be fetched
272                 for ( i = 2; i < 127 && line[i] != '\0' && isspace( line[i] ); i++ );
273                 if ( ( line[i] == '\0' || line[i] == '#' ) && fgets( line, 127, f ) == NULL )
274                         break;
275
276                 // skip comments
277                 while ( sscanf( line, " #%s", comment ) > 0 )
278                         if ( fgets( line, 127, f ) == NULL )
279                                 break;
280
281                 // get the dimensions
282                 if ( line[0] == 'P' )
283                         i = sscanf( line, "P5 %d %d %d", width, height, &maxval );
284                 else
285                         i = sscanf( line, "%d %d %d", width, height, &maxval );
286
287                 // get the height value, if not yet
288                 if ( i < 2 )
289                 {
290                         if ( fgets( line, 127, f ) == NULL )
291                                 break;
292
293                         // skip comments
294                         while ( sscanf( line, " #%s", comment ) > 0 )
295                                 if ( fgets( line, 127, f ) == NULL )
296                                         break;
297
298                         i = sscanf( line, "%d", height );
299                         if ( i == 0 )
300                                 break;
301                         else
302                                 i = 2;
303                 }
304
305                 // get the maximum gray value, if not yet
306                 if ( i < 3 )
307                 {
308                         if ( fgets( line, 127, f ) == NULL )
309                                 break;
310
311                         // skip comments
312                         while ( sscanf( line, " #%s", comment ) > 0 )
313                                 if ( fgets( line, 127, f ) == NULL )
314                                         break;
315
316                         i = sscanf( line, "%d", &maxval );
317                         if ( i == 0 )
318                                 break;
319                 }
320
321                 // determine if this is one or two bytes per pixel
322                 bpp = maxval > 255 ? 2 : 1;
323
324                 // allocate temporary storage for the raw data
325                 data = mlt_pool_alloc( *width * *height * bpp );
326                 if ( data == NULL )
327                         break;
328
329                 // read the raw data
330                 if ( fread( data, *width * *height * bpp, 1, f ) != 1 )
331                         break;
332
333                 // allocate the luma bitmap
334                 *map = p = (uint16_t*)mlt_pool_alloc( *width * *height * sizeof( uint16_t ) );
335                 if ( *map == NULL )
336                         break;
337
338                 // proces the raw data into the luma bitmap
339                 for ( i = 0; i < *width * *height * bpp; i += bpp )
340                 {
341                         if ( bpp == 1 )
342                                 *p++ = data[ i ] << 8;
343                         else
344                                 *p++ = ( data[ i ] << 8 ) + data[ i + 1 ];
345                 }
346
347                 break;
348         }
349
350         if ( data != NULL )
351                 mlt_pool_release( data );
352 }
353
354 /** Generate a luma map from any YUV image.
355 */
356
357 static void luma_read_yuv422( uint8_t *image, uint16_t **map, int width, int height )
358 {
359         int i;
360         
361         // allocate the luma bitmap
362         uint16_t *p = *map = ( uint16_t* )mlt_pool_alloc( width * height * sizeof( uint16_t ) );
363         if ( *map == NULL )
364                 return;
365
366         // proces the image data into the luma bitmap
367         for ( i = 0; i < width * height * 2; i += 2 )
368                 *p++ = ( image[ i ] - 16 ) * 299; // 299 = 65535 / 219
369 }
370
371 static inline int calculate_mix( uint16_t *luma, int j, double soft, int weight, int alpha )
372 {
373         int32_t i_softness = soft * ( 1 << 16 );
374         uint32_t a = ( 1.0 + soft ) * weight / 100 * ( ( 1 << 16 ) - 1 );
375         return ( ( luma == NULL ) ? weight : smoothstep( luma[ j ], luma[ j ] + i_softness, a ) * alpha ) >> 8;
376 }
377
378 static inline uint8_t sample_mix( uint8_t dest, uint8_t src, int mix )
379 {
380         return ( src * mix + dest * ( ( 1 << 16 ) - mix ) ) >> 16;
381 }
382
383 /** Composite a source line over a destination line
384 */
385
386 static void composite_line_yuv( uint8_t *dest, uint8_t *src, int width, uint8_t *alpha_b, uint8_t *alpha_a, int weight, uint16_t *luma, double soft )
387 {
388         register int j;
389         register int mix;
390
391         for ( j = 0; j < width; j ++ )
392         {
393                 mix = calculate_mix( luma, j, soft, weight, *alpha_b ++ );
394                 *dest = sample_mix( *dest, *src++, mix );
395                 dest++;
396                 *dest = sample_mix( *dest, *src++, mix );
397                 dest++;
398                 *alpha_a = ( mix >> 8 ) | *alpha_a;
399                 alpha_a ++;
400         }
401 }
402
403 static void composite_line_yuv_or( uint8_t *dest, uint8_t *src, int width, uint8_t *alpha_b, uint8_t *alpha_a, int weight, uint16_t *luma, double soft )
404 {
405         register int j;
406         register int mix;
407
408         for ( j = 0; j < width; j ++ )
409         {
410                 mix = calculate_mix( luma, j, soft, weight, *alpha_b ++ | *alpha_a );
411                 *dest = sample_mix( *dest, *src++, mix );
412                 dest++;
413                 *dest = sample_mix( *dest, *src++, mix );
414                 dest++;
415                 *alpha_a ++ = mix >> 8;
416         }
417 }
418
419 static void composite_line_yuv_and( uint8_t *dest, uint8_t *src, int width, uint8_t *alpha_b, uint8_t *alpha_a, int weight, uint16_t *luma, double soft )
420 {
421         register int j;
422         register int mix;
423
424         for ( j = 0; j < width; j ++ )
425         {
426                 mix = calculate_mix( luma, j, soft, weight, *alpha_b ++ & *alpha_a );
427                 *dest = sample_mix( *dest, *src++, mix );
428                 dest++;
429                 *dest = sample_mix( *dest, *src++, mix );
430                 dest++;
431                 *alpha_a ++ = mix >> 8;
432         }
433 }
434
435 static void composite_line_yuv_xor( uint8_t *dest, uint8_t *src, int width, uint8_t *alpha_b, uint8_t *alpha_a, int weight, uint16_t *luma, double soft )
436 {
437         register int j;
438         register int mix;
439
440         for ( j = 0; j < width; j ++ )
441         {
442                 mix = calculate_mix( luma, j, soft, weight, *alpha_b ++ ^ *alpha_a );
443                 *dest = sample_mix( *dest, *src++, mix );
444                 dest++;
445                 *dest = sample_mix( *dest, *src++, mix );
446                 dest++;
447                 *alpha_a ++ = mix >> 8;
448         }
449 }
450
451 /** Composite function.
452 */
453
454 static int composite_yuv( uint8_t *p_dest, int width_dest, int height_dest, uint8_t *p_src, int width_src, int height_src, uint8_t *alpha_b, uint8_t *alpha_a, struct geometry_s geometry, int field, uint16_t *p_luma, double softness, composite_line_fn line_fn )
455 {
456         int ret = 0;
457         int i;
458         int x_src = -geometry.x_src, y_src = -geometry.y_src;
459         int uneven_x_src = ( x_src % 2 );
460         int step = ( field > -1 ) ? 2 : 1;
461         int bpp = 2;
462         int stride_src = geometry.sw * bpp;
463         int stride_dest = width_dest * bpp;
464         
465         // Adjust to consumer scale
466         int x = rint( geometry.item.x * width_dest / geometry.nw );
467         int y = rint( geometry.item.y * height_dest / geometry.nh );
468         int uneven_x = ( x % 2 );
469
470         // optimization points - no work to do
471         if ( width_src <= 0 || height_src <= 0 || y_src >= height_src || x_src >= width_src )
472                 return ret;
473
474         if ( ( x < 0 && -x >= width_src ) || ( y < 0 && -y >= height_src ) )
475                 return ret;
476
477         // cropping affects the source width
478         if ( x_src > 0 )
479         {
480                 width_src -= x_src;
481                 // and it implies cropping
482                 if ( width_src > geometry.item.w )
483                         width_src = geometry.item.w;
484         }
485
486         // cropping affects the source height
487         if ( y_src > 0 )
488         {
489                 height_src -= y_src;
490                 // and it implies cropping
491                 if ( height_src > geometry.item.h )
492                         height_src = geometry.item.h;
493         }
494
495         // crop overlay off the left edge of frame
496         if ( x < 0 )
497         {
498                 x_src = -x;
499                 width_src -= x_src;
500                 x = 0;
501         }
502
503         // crop overlay beyond right edge of frame
504         if ( x + width_src > width_dest )
505                 width_src = width_dest - x;
506
507         // crop overlay off the top edge of the frame
508         if ( y < 0 )
509         {
510                 y_src = -y;
511                 height_src -= y_src;
512                 y = 0;
513         }
514         
515         // crop overlay below bottom edge of frame
516         if ( y + height_src > height_dest )
517                 height_src = height_dest - y;
518
519         // offset pointer into overlay buffer based on cropping
520         p_src += x_src * bpp + y_src * stride_src;
521
522         // offset pointer into frame buffer based upon positive coordinates only!
523         p_dest += ( x < 0 ? 0 : x ) * bpp + ( y < 0 ? 0 : y ) * stride_dest;
524
525         // offset pointer into alpha channel based upon cropping
526         alpha_b += x_src + y_src * stride_src / bpp;
527         alpha_a += x + y * stride_dest / bpp;
528
529         // offset pointer into luma channel based upon cropping
530         if ( p_luma )
531                 p_luma += x_src + y_src * stride_src / bpp;
532         
533         // Assuming lower field first
534         // Special care is taken to make sure the b_frame is aligned to the correct field.
535         // field 0 = lower field and y should be odd (y is 0-based).
536         // field 1 = upper field and y should be even.
537         if ( ( field > -1 ) && ( y % 2 == field ) )
538         {
539                 if ( ( field == 1 && y < height_dest - 1 ) || ( field == 0 && y == 0 ) )
540                         p_dest += stride_dest;
541                 else
542                         p_dest -= stride_dest;
543         }
544
545         // On the second field, use the other lines from b_frame
546         if ( field == 1 )
547         {
548                 p_src += stride_src;
549                 alpha_b += stride_src / bpp;
550                 alpha_a += stride_dest / bpp;
551                 height_src--;
552         }
553
554         stride_src *= step;
555         stride_dest *= step;
556         int alpha_b_stride = stride_src / bpp;
557         int alpha_a_stride = stride_dest / bpp;
558
559         // Align chroma of source and destination
560         if ( uneven_x != uneven_x_src )
561         {
562                 p_src += 2;
563                 width_src -= 2;
564                 alpha_b += 1;
565         }
566
567         // now do the compositing only to cropped extents
568         for ( i = 0; i < height_src; i += step )
569         {
570                 line_fn( p_dest, p_src, width_src, alpha_b, alpha_a, geometry.item.mix, p_luma, softness );
571
572                 p_src += stride_src;
573                 p_dest += stride_dest;
574                 alpha_b += alpha_b_stride;
575                 alpha_a += alpha_a_stride;
576                 if ( p_luma )
577                         p_luma += alpha_b_stride;
578         }
579
580         return ret;
581 }
582
583
584 /** Scale 16bit greyscale luma map using nearest neighbor.
585 */
586
587 static inline void
588 scale_luma ( uint16_t *dest_buf, int dest_width, int dest_height, const uint16_t *src_buf, int src_width, int src_height, int invert )
589 {
590         register int i, j;
591         register int x_step = ( src_width << 16 ) / dest_width;
592         register int y_step = ( src_height << 16 ) / dest_height;
593         register int x, y = 0;
594
595         for ( i = 0; i < dest_height; i++ )
596         {
597                 const uint16_t *src = src_buf + ( y >> 16 ) * src_width;
598                 x = 0;
599                 
600                 for ( j = 0; j < dest_width; j++ )
601                 {
602                         *dest_buf++ = src[ x >> 16 ] ^ invert;
603                         x += x_step;
604                 }
605                 y += y_step;
606         }
607 }
608
609 static uint16_t* get_luma( mlt_transition this, mlt_properties properties, int width, int height )
610 {
611         // The cached luma map information
612         int luma_width = mlt_properties_get_int( properties, "_luma.width" );
613         int luma_height = mlt_properties_get_int( properties, "_luma.height" );
614         uint16_t *luma_bitmap = mlt_properties_get_data( properties, "_luma.bitmap", NULL );
615         int invert = mlt_properties_get_int( properties, "luma_invert" );
616         
617         // If the filename property changed, reload the map
618         char *resource = mlt_properties_get( properties, "luma" );
619
620         char temp[ 512 ];
621
622         if ( luma_width == 0 || luma_height == 0 )
623         {
624                 luma_width = width;
625                 luma_height = height;
626         }
627
628         if ( resource && resource[0] && strchr( resource, '%' ) )
629         {
630                 // TODO: Clean up quick and dirty compressed/existence check
631                 FILE *test;
632                 sprintf( temp, "%s/lumas/%s/%s", mlt_environment( "MLT_DATA" ), mlt_environment( "MLT_NORMALISATION" ), strchr( resource, '%' ) + 1 );
633                 test = fopen( temp, "r" );
634                 if ( test == NULL )
635                         strcat( temp, ".png" );
636                 else
637                         fclose( test );
638                 resource = temp;
639         }
640
641         if ( resource && resource[0] )
642         {
643                 char *old_luma = mlt_properties_get( properties, "_luma" );
644                 int old_invert = mlt_properties_get_int( properties, "_luma_invert" );
645
646                 if ( invert != old_invert || ( old_luma && old_luma[0] && strcmp( resource, old_luma ) ) )
647                 {
648                         mlt_properties_set_data( properties, "_luma.orig_bitmap", NULL, 0, NULL, NULL );
649                         luma_bitmap = NULL;
650                 }
651         }
652         else {
653                 char *old_luma = mlt_properties_get( properties, "_luma" );
654                 if ( old_luma && old_luma[0] )
655                 {
656                         mlt_properties_set_data( properties, "_luma.orig_bitmap", NULL, 0, NULL, NULL );
657                         luma_bitmap = NULL;
658                         mlt_properties_set( properties, "_luma", NULL);
659                 }
660         }
661
662         if ( resource && resource[0] && ( luma_bitmap == NULL || luma_width != width || luma_height != height ) )
663         {
664                 uint16_t *orig_bitmap = mlt_properties_get_data( properties, "_luma.orig_bitmap", NULL );
665                 luma_width = mlt_properties_get_int( properties, "_luma.orig_width" );
666                 luma_height = mlt_properties_get_int( properties, "_luma.orig_height" );
667
668                 // Load the original luma once
669                 if ( orig_bitmap == NULL )
670                 {
671                         char *extension = strrchr( resource, '.' );
672                         
673                         // See if it is a PGM
674                         if ( extension != NULL && strcmp( extension, ".pgm" ) == 0 )
675                         {
676                                 // Open PGM
677                                 FILE *f = fopen( resource, "r" );
678                                 if ( f != NULL )
679                                 {
680                                         // Load from PGM
681                                         luma_read_pgm( f, &orig_bitmap, &luma_width, &luma_height );
682                                         fclose( f );
683                                         
684                                         // Remember the original size for subsequent scaling
685                                         mlt_properties_set_data( properties, "_luma.orig_bitmap", orig_bitmap, luma_width * luma_height * 2, mlt_pool_release, NULL );
686                                         mlt_properties_set_int( properties, "_luma.orig_width", luma_width );
687                                         mlt_properties_set_int( properties, "_luma.orig_height", luma_height );
688                                 }
689                         }
690                         else
691                         {
692                                 // Get the factory producer service
693                                 char *factory = mlt_properties_get( properties, "factory" );
694         
695                                 // Create the producer
696                                 mlt_profile profile = mlt_service_profile( MLT_TRANSITION_SERVICE( this ) );
697                                 mlt_producer producer = mlt_factory_producer( profile, factory, resource );
698         
699                                 // If we have one
700                                 if ( producer != NULL )
701                                 {
702                                         // Get the producer properties
703                                         mlt_properties producer_properties = MLT_PRODUCER_PROPERTIES( producer );
704         
705                                         // Ensure that we loop
706                                         mlt_properties_set( producer_properties, "eof", "loop" );
707         
708                                         // Now pass all producer. properties on the transition down
709                                         mlt_properties_pass( producer_properties, properties, "luma." );
710         
711                                         // We will get the alpha frame from the producer
712                                         mlt_frame luma_frame = NULL;
713         
714                                         // Get the luma frame
715                                         if ( mlt_service_get_frame( MLT_PRODUCER_SERVICE( producer ), &luma_frame, 0 ) == 0 )
716                                         {
717                                                 uint8_t *luma_image;
718                                                 mlt_image_format luma_format = mlt_image_yuv422;
719         
720                                                 // Get image from the luma producer
721                                                 mlt_properties_set( MLT_FRAME_PROPERTIES( luma_frame ), "rescale.interp", "none" );
722                                                 mlt_frame_get_image( luma_frame, &luma_image, &luma_format, &luma_width, &luma_height, 0 );
723         
724                                                 // Generate the luma map
725                                                 if ( luma_image != NULL && luma_format == mlt_image_yuv422 )
726                                                         luma_read_yuv422( luma_image, &orig_bitmap, luma_width, luma_height );
727         
728                                                 // Remember the original size for subsequent scaling
729                                                 mlt_properties_set_data( properties, "_luma.orig_bitmap", orig_bitmap, luma_width * luma_height * 2, mlt_pool_release, NULL );
730                                                 mlt_properties_set_int( properties, "_luma.orig_width", luma_width );
731                                                 mlt_properties_set_int( properties, "_luma.orig_height", luma_height );
732                                                 
733                                                 // Cleanup the luma frame
734                                                 mlt_frame_close( luma_frame );
735                                         }
736         
737                                         // Cleanup the luma producer
738                                         mlt_producer_close( producer );
739                                 }
740                         }
741                 }
742                 // Scale luma map
743                 luma_bitmap = mlt_pool_alloc( width * height * sizeof( uint16_t ) );
744                 scale_luma( luma_bitmap, width, height, orig_bitmap, luma_width, luma_height, invert * ( ( 1 << 16 ) - 1 ) );
745
746                 // Remember the scaled luma size to prevent unnecessary scaling
747                 mlt_properties_set_int( properties, "_luma.width", width );
748                 mlt_properties_set_int( properties, "_luma.height", height );
749                 mlt_properties_set_data( properties, "_luma.bitmap", luma_bitmap, width * height * 2, mlt_pool_release, NULL );
750                 mlt_properties_set( properties, "_luma", resource );
751                 mlt_properties_set_int( properties, "_luma_invert", invert );
752         }
753         return luma_bitmap;
754 }
755
756 /** Get the properly sized image from b_frame.
757 */
758
759 static int get_b_frame_image( mlt_transition this, mlt_frame b_frame, uint8_t **image, int *width, int *height, struct geometry_s *geometry )
760 {
761         int ret = 0;
762         mlt_image_format format = mlt_image_yuv422;
763
764         // Get the properties objects
765         mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
766         mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
767         uint8_t resize_alpha = mlt_properties_get_int( b_props, "resize_alpha" );
768
769         // Do not scale if we are cropping - the compositing rectangle can crop the b image
770         // TODO: Use the animatable w and h of the crop geometry to scale independently of crop rectangle
771         if ( mlt_properties_get( properties, "crop" ) )
772         {
773                 int real_width = get_value( b_props, "real_width", "width" );
774                 int real_height = get_value( b_props, "real_height", "height" );
775                 double input_ar = mlt_properties_get_double( b_props, "aspect_ratio" );
776                 double consumer_ar = mlt_properties_get_double( b_props, "consumer_aspect_ratio" );
777                 double background_ar = mlt_properties_get_double( b_props, "output_ratio" );
778                 double output_ar = background_ar != 0.0 ? background_ar : consumer_ar;
779                 int scaled_width = rint( ( input_ar == 0.0 ? output_ar : input_ar ) / output_ar * real_width );
780                 int scaled_height = real_height;
781                 geometry->sw = scaled_width;
782                 geometry->sh = scaled_height;
783         }
784         // Normalise aspect ratios and scale preserving aspect ratio
785         else if ( mlt_properties_get_int( properties, "aligned" ) && mlt_properties_get_int( properties, "distort" ) == 0 && mlt_properties_get_int( b_props, "distort" ) == 0 && geometry->item.distort == 0 )
786         {
787                 // Adjust b_frame pixel aspect
788                 int normalised_width = geometry->item.w;
789                 int normalised_height = geometry->item.h;
790                 int real_width = get_value( b_props, "real_width", "width" );
791                 int real_height = get_value( b_props, "real_height", "height" );
792                 double input_ar = mlt_properties_get_double( b_props, "aspect_ratio" );
793                 double consumer_ar = mlt_properties_get_double( b_props, "consumer_aspect_ratio" );
794                 double background_ar = mlt_properties_get_double( b_props, "output_ratio" );
795                 double output_ar = background_ar != 0.0 ? background_ar : consumer_ar;
796                 int scaled_width = rint( ( input_ar == 0.0 ? output_ar : input_ar ) / output_ar * real_width );
797                 int scaled_height = real_height;
798 // fprintf(stderr, "%s: scaled %dx%d norm %dx%d real %dx%d output_ar %f => %f\n", __FILE__,
799 // scaled_width, scaled_height, normalised_width, normalised_height, real_width, real_height,
800 // background_ar, output_ar);
801
802                 // Now ensure that our images fit in the normalised frame
803                 if ( scaled_width > normalised_width )
804                 {
805                         scaled_height = rint( scaled_height * normalised_width / scaled_width );
806                         scaled_width = normalised_width;
807                 }
808                 if ( scaled_height > normalised_height )
809                 {
810                         scaled_width = rint( scaled_width * normalised_height / scaled_height );
811                         scaled_height = normalised_height;
812                 }
813
814                 // Honour the fill request - this will scale the image to fill width or height while maintaining a/r
815                 // ????: Shouln't this be the default behaviour?
816                 if ( mlt_properties_get_int( properties, "fill" ) && scaled_width > 0 && scaled_height > 0 )
817                 {
818                         if ( scaled_height < normalised_height && scaled_width * normalised_height / scaled_height <= normalised_width )
819                         {
820                                 scaled_width = rint( scaled_width * normalised_height / scaled_height );
821                                 scaled_height = normalised_height;
822                         }
823                         else if ( scaled_width < normalised_width && scaled_height * normalised_width / scaled_width < normalised_height )
824                         {
825                                 scaled_height = rint( scaled_height * normalised_width / scaled_width );
826                                 scaled_width = normalised_width;
827                         }
828                 }
829
830                 // Save the new scaled dimensions
831                 geometry->sw = scaled_width;
832                 geometry->sh = scaled_height;
833         }
834         else
835         {
836                 geometry->sw = geometry->item.w;
837                 geometry->sh = geometry->item.h;
838         }
839
840         // We want to ensure that we bypass resize now...
841         if ( resize_alpha == 0 )
842                 mlt_properties_set_int( b_props, "distort", mlt_properties_get_int( properties, "distort" ) );
843
844         // If we're not aligned, we want a non-transparent background
845         if ( mlt_properties_get_int( properties, "aligned" ) == 0 )
846                 mlt_properties_set_int( b_props, "resize_alpha", 255 );
847
848         // Take into consideration alignment for optimisation (titles are a special case)
849         if ( !mlt_properties_get_int( properties, "titles" ) &&
850                  mlt_properties_get( properties, "crop" ) == NULL )
851                 alignment_calculate( geometry );
852
853         // Adjust to consumer scale
854         *width = rint( geometry->sw * *width / geometry->nw );
855         *height = rint( geometry->sh * *height / geometry->nh );
856 // fprintf(stderr, "%s: scaled %dx%d norm %dx%d resize %dx%d\n", __FILE__,
857 // geometry->sw, geometry->sh, geometry->nw, geometry->nh, *width, *height);
858
859         ret = mlt_frame_get_image( b_frame, image, &format, width, height, 1 );
860
861         // Set the frame back
862         mlt_properties_set_int( b_props, "resize_alpha", resize_alpha );
863
864         return ret && image != NULL;
865 }
866
867 static void crop_calculate( mlt_transition this, mlt_properties properties, struct geometry_s *result, double position )
868 {
869         // Initialize panning info
870         result->x_src = 0;
871         result->y_src = 0;
872         if ( mlt_properties_get( properties, "crop" ) )
873         {
874                 mlt_geometry crop = mlt_properties_get_data( properties, "crop_geometry", NULL );
875                 if ( !crop )
876                 {
877                         crop = mlt_geometry_init();
878                         mlt_position in = mlt_transition_get_in( this );
879                         mlt_position out = mlt_transition_get_out( this );
880                         int length = out - in + 1;
881                         double cycle = mlt_properties_get_double( properties, "cycle" );
882
883                         // Allow a geometry repeat cycle
884                         if ( cycle >= 1 )
885                                 length = cycle;
886                         else if ( cycle > 0 )
887                                 length *= cycle;
888                         mlt_geometry_parse( crop, mlt_properties_get( properties, "crop" ), length, result->sw, result->sh );
889                         mlt_properties_set_data( properties, "crop_geometry", crop, 0, (mlt_destructor)mlt_geometry_close, NULL );
890                 }
891
892                 // Repeat processing
893                 int length = mlt_geometry_get_length( crop );
894                 int mirror_off = mlt_properties_get_int( properties, "mirror_off" );
895                 int repeat_off = mlt_properties_get_int( properties, "repeat_off" );
896                 if ( !repeat_off && position >= length && length != 0 )
897                 {
898                         int section = position / length;
899                         position -= section * length;
900                         if ( !mirror_off && section % 2 == 1 )
901                                 position = length - position;
902                 }
903
904                 // Compute the pan
905                 struct mlt_geometry_item_s crop_item;
906                 mlt_geometry_fetch( crop, &crop_item, position );
907                 result->x_src = rint( crop_item.x );
908                 result->y_src = rint( crop_item.y );
909         }
910 }
911
912 static mlt_geometry composite_calculate( mlt_transition this, struct geometry_s *result, mlt_frame a_frame, double position )
913 {
914         // Get the properties from the transition
915         mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
916
917         // Get the properties from the frame
918         mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
919         
920         // Structures for geometry
921         mlt_geometry start = mlt_properties_get_data( properties, "geometries", NULL );
922
923         // Obtain the normalised width and height from the a_frame
924         int normalised_width = mlt_properties_get_int( a_props, "normalised_width" );
925         int normalised_height = mlt_properties_get_int( a_props, "normalised_height" );
926
927         char *name = mlt_properties_get( properties, "_unique_id" );
928         char key[ 256 ];
929
930         sprintf( key, "%s.in", name );
931         if ( mlt_properties_get( a_props, key ) )
932         {
933                 sscanf( mlt_properties_get( a_props, key ), "%f,%f,%f,%f,%f,%d,%d", &result->item.x, &result->item.y, &result->item.w, &result->item.h, &result->item.mix, &result->nw, &result->nh );
934         }
935         else
936         {
937                 // Now parse the geometries
938                 if ( start == NULL )
939                 {
940                         // Parse the transitions properties
941                         start = transition_parse_keys( this, normalised_width, normalised_height );
942
943                         // Assign to properties to ensure we get destroyed
944                         mlt_properties_set_data( properties, "geometries", start, 0, ( mlt_destructor )mlt_geometry_close, NULL );
945                 }
946                 else
947                 {
948                         int length = mlt_transition_get_out( this ) - mlt_transition_get_in( this ) + 1;
949                         double cycle = mlt_properties_get_double( properties, "cycle" );
950                         if ( cycle > 1 )
951                                 length = cycle;
952                         else if ( cycle > 0 )
953                                 length *= cycle;
954                         mlt_geometry_refresh( start, mlt_properties_get( properties, "geometry" ), length, normalised_width, normalised_height );
955                 }
956
957                 // Do the calculation
958                 geometry_calculate( this, result, position );
959
960                 // Assign normalised info
961                 result->nw = normalised_width;
962                 result->nh = normalised_height;
963         }
964
965         // Now parse the alignment
966         result->halign = alignment_parse( mlt_properties_get( properties, "halign" ) );
967         result->valign = alignment_parse( mlt_properties_get( properties, "valign" ) );
968
969         crop_calculate( this, properties, result, position );
970
971         return start;
972 }
973
974 mlt_frame composite_copy_region( mlt_transition this, mlt_frame a_frame, mlt_position frame_position )
975 {
976         // Create a frame to return
977         mlt_frame b_frame = mlt_frame_init( MLT_TRANSITION_SERVICE( this ) );
978
979         // Get the properties of the a frame
980         mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
981
982         // Get the properties of the b frame
983         mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
984
985         // Get the position
986         int position = position_calculate( this, frame_position );
987
988         // Get the unique id of the transition
989         char *name = mlt_properties_get( MLT_TRANSITION_PROPERTIES( this ), "_unique_id" );
990         char key[ 256 ];
991
992         // Destination image
993         uint8_t *dest = NULL;
994
995         // Get the image and dimensions
996         uint8_t *image = mlt_properties_get_data( a_props, "image", NULL );
997         int width = mlt_properties_get_int( a_props, "width" );
998         int height = mlt_properties_get_int( a_props, "height" );
999         int format = mlt_properties_get_int( a_props, "format" );
1000
1001         // Pointers for copy operation
1002         uint8_t *p;
1003
1004         // Coordinates
1005         int w = 0;
1006         int h = 0;
1007         int x = 0;
1008         int y = 0;
1009
1010         int ss = 0;
1011         int ds = 0;
1012
1013         // Will need to know region to copy
1014         struct geometry_s result;
1015
1016         // Calculate the region now
1017         composite_calculate( this, &result, a_frame, position );
1018
1019         // Need to scale down to actual dimensions
1020         x = rint( result.item.x * width / result.nw );
1021         y = rint( result.item.y * height / result.nh );
1022         w = rint( result.item.w * width / result.nw );
1023         h = rint( result.item.h * height / result.nh );
1024
1025         if ( x % 2 )
1026         {
1027                 x --;
1028                 w ++;
1029         }
1030
1031         // Store the key
1032         sprintf( key, "%s.in=%d,%d,%d,%d,%f,%d,%d", name, x, y, w, h, result.item.mix, width, height );
1033         mlt_properties_parse( a_props, key );
1034         sprintf( key, "%s.out=%d,%d,%d,%d,%f,%d,%d", name, x, y, w, h, result.item.mix, width, height );
1035         mlt_properties_parse( a_props, key );
1036
1037         ds = w * 2;
1038         ss = width * 2;
1039
1040         // Now we need to create a new destination image
1041         dest = mlt_pool_alloc( w * h * 2 );
1042
1043         // Assign to the new frame
1044         mlt_properties_set_data( b_props, "image", dest, w * h * 2, mlt_pool_release, NULL );
1045         mlt_properties_set_int( b_props, "width", w );
1046         mlt_properties_set_int( b_props, "height", h );
1047         mlt_properties_set_int( b_props, "format", format );
1048
1049         if ( y < 0 )
1050         {
1051                 dest += ( ds * -y );
1052                 h += y;
1053                 y = 0;
1054         }
1055
1056         if ( y + h > height )
1057                 h -= ( y + h - height );
1058
1059         if ( x < 0 )
1060         {
1061                 dest += -x * 2;
1062                 w += x;
1063                 x = 0;
1064         }
1065
1066         if ( w > 0 && h > 0 )
1067         {
1068                 // Copy the region of the image
1069                 p = image + y * ss + x * 2;
1070
1071                 while ( h -- )
1072                 {
1073                         memcpy( dest, p, w * 2 );
1074                         dest += ds;
1075                         p += ss;
1076                 }
1077         }
1078
1079         // Assign this position to the b frame
1080         mlt_frame_set_position( b_frame, frame_position );
1081         mlt_properties_set_int( b_props, "distort", 1 );
1082
1083         // Return the frame
1084         return b_frame;
1085 }
1086
1087 /** Get the image.
1088 */
1089
1090 static int transition_get_image( mlt_frame a_frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
1091 {
1092         // Get the b frame from the stack
1093         mlt_frame b_frame = mlt_frame_pop_frame( a_frame );
1094
1095         // Get the transition from the a frame
1096         mlt_transition this = mlt_frame_pop_service( a_frame );
1097
1098         // Get in and out
1099         double position = mlt_deque_pop_back_double( MLT_FRAME_IMAGE_STACK( a_frame ) );
1100         int out = mlt_frame_pop_service_int( a_frame );
1101         int in = mlt_frame_pop_service_int( a_frame );
1102
1103         // Get the properties from the transition
1104         mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
1105
1106         // TODO: clean up always_active behaviour
1107         if ( mlt_properties_get_int( properties, "always_active" ) )
1108         {
1109                 mlt_events_block( properties, properties );
1110                 mlt_properties_set_int( properties, "in", in );
1111                 mlt_properties_set_int( properties, "out", out );
1112                 mlt_events_unblock( properties, properties );
1113         }
1114
1115         // This compositer is yuv422 only
1116         *format = mlt_image_yuv422;
1117
1118         if ( b_frame != NULL )
1119         {
1120                 // Get the properties of the a frame
1121                 mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
1122
1123                 // Get the properties of the b frame
1124                 mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
1125
1126                 // Structures for geometry
1127                 struct geometry_s result;
1128
1129                 // Calculate the position
1130                 double delta = delta_calculate( this, a_frame, position );
1131
1132                 // Get the image from the b frame
1133                 uint8_t *image_b = NULL;
1134                 int width_b = *width;
1135                 int height_b = *height;
1136         
1137                 // Vars for alphas
1138                 uint8_t *alpha_a = NULL;
1139                 uint8_t *alpha_b = NULL;
1140
1141                 // Composites always need scaling... defaulting to lowest
1142                 const char *rescale = mlt_properties_get( a_props, "rescale.interp" );
1143                 if ( rescale == NULL || !strcmp( rescale, "none" ) )
1144                         rescale = "nearest";
1145                 mlt_properties_set( a_props, "rescale.interp", rescale );
1146                 mlt_properties_set( b_props, "rescale.interp", rescale );
1147
1148                 // Do the calculation
1149                 // NB: Locks needed here since the properties are being modified
1150                 int invert = mlt_properties_get_int( properties, "invert" );
1151                 mlt_service_lock( MLT_TRANSITION_SERVICE( this ) );
1152                 composite_calculate( this, &result, invert ? b_frame : a_frame, position );
1153                 mlt_service_unlock( MLT_TRANSITION_SERVICE( this ) );
1154
1155                 // Since we are the consumer of the b_frame, we must pass along these
1156                 // consumer properties from the a_frame
1157                 mlt_properties_set_int( b_props, "consumer_deinterlace", mlt_properties_get_int( a_props, "consumer_deinterlace" ) || mlt_properties_get_int( properties, "deinterlace" ) );
1158                 mlt_properties_set( b_props, "consumer_deinterlace_method", mlt_properties_get( a_props, "consumer_deinterlace_method" ) );
1159                 mlt_properties_set_double( b_props, "consumer_aspect_ratio", mlt_properties_get_double( a_props, "consumer_aspect_ratio" ) );
1160
1161                 // TODO: Dangerous/temporary optimisation - if nothing to do, then do nothing
1162                 if ( mlt_properties_get_int( properties, "no_alpha" ) && 
1163                          result.item.x == 0 && result.item.y == 0 && result.item.w == *width && result.item.h == *height && result.item.mix == 100 )
1164                 {
1165                         mlt_frame_get_image( b_frame, image, format, width, height, 1 );
1166                         if ( !mlt_frame_is_test_card( a_frame ) )
1167                                 mlt_frame_replace_image( a_frame, *image, *format, *width, *height );
1168                         return 0;
1169                 }
1170
1171                 if ( a_frame == b_frame )
1172                 {
1173                         double aspect_ratio = mlt_frame_get_aspect_ratio( b_frame );
1174                         get_b_frame_image( this, b_frame, &image_b, &width_b, &height_b, &result );
1175                         alpha_b = mlt_frame_get_alpha_mask( b_frame );
1176                         mlt_properties_set_double( a_props, "aspect_ratio", aspect_ratio );
1177                 }
1178
1179                 // Get the image from the a frame
1180                 mlt_frame_get_image( a_frame, invert ? &image_b : image, format, width, height, 1 );
1181                 alpha_a = mlt_frame_get_alpha_mask( a_frame );
1182
1183                 // Optimisation - no compositing required
1184                 if ( result.item.mix == 0 || ( result.item.w == 0 && result.item.h == 0 ) )
1185                         return 0;
1186
1187                 // Need to keep the width/height of the a_frame on the b_frame for titling
1188                 if ( mlt_properties_get( a_props, "dest_width" ) == NULL )
1189                 {
1190                         mlt_properties_set_int( a_props, "dest_width", *width );
1191                         mlt_properties_set_int( a_props, "dest_height", *height );
1192                         mlt_properties_set_int( b_props, "dest_width", *width );
1193                         mlt_properties_set_int( b_props, "dest_height", *height );
1194                 }
1195                 else
1196                 {
1197                         mlt_properties_set_int( b_props, "dest_width", mlt_properties_get_int( a_props, "dest_width" ) );
1198                         mlt_properties_set_int( b_props, "dest_height", mlt_properties_get_int( a_props, "dest_height" ) );
1199                 }
1200
1201                 // Special case for titling...
1202                 if ( mlt_properties_get_int( properties, "titles" ) )
1203                 {
1204                         if ( mlt_properties_get( b_props, "rescale.interp" ) == NULL )
1205                                 mlt_properties_set( b_props, "rescale.interp", "hyper" );
1206                         width_b = mlt_properties_get_int( a_props, "dest_width" );
1207                         height_b = mlt_properties_get_int( a_props, "dest_height" );
1208                 }
1209
1210                 if ( *image != image_b && ( ( invert ? 0 : image_b ) || get_b_frame_image( this, b_frame, invert ? image : &image_b, &width_b, &height_b, &result ) == 0 ) )
1211                 {
1212                         uint8_t *dest = *image;
1213                         uint8_t *src = image_b;
1214                         int progressive = 
1215                                         mlt_properties_get_int( a_props, "consumer_deinterlace" ) ||
1216                                         mlt_properties_get_int( properties, "progressive" );
1217                         int field;
1218                         
1219                         double luma_softness = mlt_properties_get_double( properties, "softness" );
1220                         uint16_t *luma_bitmap = get_luma( this, properties, width_b, height_b );
1221                         char *operator = mlt_properties_get( properties, "operator" );
1222
1223                         alpha_b = alpha_b == NULL ? mlt_frame_get_alpha_mask( b_frame ) : alpha_b;
1224
1225                         composite_line_fn line_fn = composite_line_yuv;
1226
1227                         // Replacement and override
1228                         if ( operator != NULL )
1229                         {
1230                                 if ( !strcmp( operator, "or" ) )
1231                                         line_fn = composite_line_yuv_or;
1232                                 if ( !strcmp( operator, "and" ) )
1233                                         line_fn = composite_line_yuv_and;
1234                                 if ( !strcmp( operator, "xor" ) )
1235                                         line_fn = composite_line_yuv_xor;
1236                         }
1237
1238                         // Allow the user to completely obliterate the alpha channels from both frames
1239                         if ( mlt_properties_get( properties, "alpha_a" ) )
1240                                 memset( alpha_a, mlt_properties_get_int( properties, "alpha_a" ), *width * *height );
1241
1242                         if ( mlt_properties_get( properties, "alpha_b" ) )
1243                                 memset( alpha_b, mlt_properties_get_int( properties, "alpha_b" ), width_b * height_b );
1244
1245                         for ( field = 0; field < ( progressive ? 1 : 2 ); field++ )
1246                         {
1247                                 // Assume lower field (0) first
1248                                 double field_position = position + field * delta;
1249                                 
1250                                 // Do the calculation if we need to
1251                                 // NB: Locks needed here since the properties are being modified
1252                                 mlt_service_lock( MLT_TRANSITION_SERVICE( this ) );
1253                                 composite_calculate( this, &result, invert ? b_frame : a_frame, field_position );
1254                                 mlt_service_unlock( MLT_TRANSITION_SERVICE( this ) );
1255
1256                                 if ( mlt_properties_get_int( properties, "titles" ) )
1257                                 {
1258                                         result.item.w = rint( *width * ( result.item.w / result.nw ) );
1259                                         result.nw = result.item.w;
1260                                         result.item.h = rint( *height * ( result.item.h / result.nh ) );
1261                                         result.nh = *height;
1262                                         result.sw = width_b;
1263                                         result.sh = height_b;
1264                                 }
1265
1266                                 // Enforce cropping
1267                                 if ( mlt_properties_get( properties, "crop" ) )
1268                                 {
1269                                         if ( result.x_src == 0 )
1270                                                 width_b = width_b > result.item.w ? result.item.w : width_b;
1271                                         if ( result.y_src == 0 )
1272                                                 height_b = height_b > result.item.h ? result.item.h : height_b;
1273                                 }
1274                                 else
1275                                 {
1276                                         // Otherwise, align
1277                                         alignment_calculate( &result );
1278                                 }
1279
1280                                 // Composite the b_frame on the a_frame
1281                                 if ( invert )
1282                                         composite_yuv( dest, width_b, height_b, src, *width, *height, alpha_a, alpha_b, result, progressive ? -1 : field, luma_bitmap, luma_softness, line_fn );
1283                                 else
1284                                         composite_yuv( dest, *width, *height, src, width_b, height_b, alpha_b, alpha_a, result, progressive ? -1 : field, luma_bitmap, luma_softness, line_fn );
1285                         }
1286                 }
1287         }
1288         else
1289         {
1290                 mlt_frame_get_image( a_frame, image, format, width, height, 1 );
1291         }
1292
1293         return 0;
1294 }
1295
1296 /** Composition transition processing.
1297 */
1298
1299 static mlt_frame composite_process( mlt_transition this, mlt_frame a_frame, mlt_frame b_frame )
1300 {
1301         // UGH - this is a TODO - find a more reliable means of obtaining in/out for the always_active case
1302         if ( mlt_properties_get_int(  MLT_TRANSITION_PROPERTIES( this ), "always_active" ) == 0 )
1303         {
1304                 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( MLT_TRANSITION_PROPERTIES( this ), "in" ) );
1305                 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( MLT_TRANSITION_PROPERTIES( this ), "out" ) );
1306                 mlt_deque_push_back_double( MLT_FRAME_IMAGE_STACK( a_frame ), position_calculate( this, mlt_frame_get_position( a_frame ) ) );
1307         }
1308         else
1309         {
1310                 mlt_properties props = mlt_properties_get_data( MLT_FRAME_PROPERTIES( b_frame ), "_producer", NULL );
1311                 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( props, "in" ) );
1312                 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( props, "out" ) );
1313                 mlt_deque_push_back_double( MLT_FRAME_IMAGE_STACK( a_frame ), mlt_properties_get_int( props, "_frame" ) - mlt_properties_get_int( props, "in" ) );
1314         }
1315         
1316         mlt_frame_push_service( a_frame, this );
1317         mlt_frame_push_frame( a_frame, b_frame );
1318         mlt_frame_push_get_image( a_frame, transition_get_image );
1319         return a_frame;
1320 }
1321
1322 /** Constructor for the filter.
1323 */
1324
1325 mlt_transition transition_composite_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
1326 {
1327         mlt_transition this = calloc( sizeof( struct mlt_transition_s ), 1 );
1328         if ( this != NULL && mlt_transition_init( this, NULL ) == 0 )
1329         {
1330                 mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
1331                 
1332                 this->process = composite_process;
1333                 
1334                 // Default starting motion and zoom
1335                 mlt_properties_set( properties, "start", arg != NULL ? arg : "0,0:100%x100%" );
1336                 
1337                 // Default factory
1338                 mlt_properties_set( properties, "factory", mlt_environment( "MLT_PRODUCER" ) );
1339
1340                 // Use alignment (and hence alpha of b frame)
1341                 mlt_properties_set_int( properties, "aligned", 1 );
1342
1343                 // Inform apps and framework that this is a video only transition
1344                 mlt_properties_set_int( properties, "_transition_type", 1 );
1345         }
1346         return this;
1347 }