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