Minor corrections with alpha and affines
[melted] / 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 }
504
505 // now do the compositing only to cropped extents
506 if ( line_fn != NULL )
507 {
508 for ( i = 0; i < height_src; i += step )
509 {
510 line_fn( p_dest, p_src, width_src, p_alpha, full_alpha, weight, p_luma, softness );
511
512 p_src += stride_src;
513 p_dest += stride_dest;
514 if ( p_alpha )
515 p_alpha += alpha_stride;
516 if ( full_alpha )
517 full_alpha += full_alpha_stride;
518 if ( p_luma )
519 p_luma += alpha_stride;
520 }
521 }
522 else
523 {
524 for ( i = 0; i < height_src; i += step )
525 {
526 composite_line_yuv( p_dest, p_src, width_src, p_alpha, full_alpha, weight, p_luma, softness );
527
528 p_src += stride_src;
529 p_dest += stride_dest;
530 if ( p_alpha )
531 p_alpha += alpha_stride;
532 if ( full_alpha )
533 full_alpha += full_alpha_stride;
534 if ( p_luma )
535 p_luma += alpha_stride;
536 }
537 }
538
539 return ret;
540 }
541
542
543 /** Scale 16bit greyscale luma map using nearest neighbor.
544 */
545
546 static inline void
547 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 )
548 {
549 register int i, j;
550 register int x_step = ( src_width << 16 ) / dest_width;
551 register int y_step = ( src_height << 16 ) / dest_height;
552 register int x, y = 0;
553
554 for ( i = 0; i < dest_height; i++ )
555 {
556 const uint16_t *src = src_buf + ( y >> 16 ) * src_width;
557 x = 0;
558
559 for ( j = 0; j < dest_width; j++ )
560 {
561 *dest_buf++ = src[ x >> 16 ] ^ invert;
562 x += x_step;
563 }
564 y += y_step;
565 }
566 }
567
568 static uint16_t* get_luma( mlt_properties properties, int width, int height )
569 {
570 // The cached luma map information
571 int luma_width = mlt_properties_get_int( properties, "_luma.width" );
572 int luma_height = mlt_properties_get_int( properties, "_luma.height" );
573 uint16_t *luma_bitmap = mlt_properties_get_data( properties, "_luma.bitmap", NULL );
574 int invert = mlt_properties_get_int( properties, "luma_invert" );
575
576 // If the filename property changed, reload the map
577 char *resource = mlt_properties_get( properties, "luma" );
578
579 char temp[ 512 ];
580
581 if ( luma_width == 0 || luma_height == 0 )
582 {
583 luma_width = width;
584 luma_height = height;
585 }
586
587 if ( resource != NULL && strchr( resource, '%' ) )
588 {
589 // TODO: Clean up quick and dirty compressed/existence check
590 FILE *test;
591 sprintf( temp, "%s/lumas/%s/%s", mlt_factory_prefix( ), mlt_environment( "MLT_NORMALISATION" ), strchr( resource, '%' ) + 1 );
592 test = fopen( temp, "r" );
593 if ( test == NULL )
594 strcat( temp, ".png" );
595 else
596 fclose( test );
597 resource = temp;
598 }
599
600 if ( resource != NULL && ( luma_bitmap == NULL || luma_width != width || luma_height != height ) )
601 {
602 uint16_t *orig_bitmap = mlt_properties_get_data( properties, "_luma.orig_bitmap", NULL );
603 luma_width = mlt_properties_get_int( properties, "_luma.orig_width" );
604 luma_height = mlt_properties_get_int( properties, "_luma.orig_height" );
605
606 // Load the original luma once
607 if ( orig_bitmap == NULL )
608 {
609 char *extension = strrchr( resource, '.' );
610
611 // See if it is a PGM
612 if ( extension != NULL && strcmp( extension, ".pgm" ) == 0 )
613 {
614 // Open PGM
615 FILE *f = fopen( resource, "r" );
616 if ( f != NULL )
617 {
618 // Load from PGM
619 luma_read_pgm( f, &orig_bitmap, &luma_width, &luma_height );
620 fclose( f );
621
622 // Remember the original size for subsequent scaling
623 mlt_properties_set_data( properties, "_luma.orig_bitmap", orig_bitmap, luma_width * luma_height * 2, mlt_pool_release, NULL );
624 mlt_properties_set_int( properties, "_luma.orig_width", luma_width );
625 mlt_properties_set_int( properties, "_luma.orig_height", luma_height );
626 }
627 }
628 else
629 {
630 // Get the factory producer service
631 char *factory = mlt_properties_get( properties, "factory" );
632
633 // Create the producer
634 mlt_producer producer = mlt_factory_producer( factory, resource );
635
636 // If we have one
637 if ( producer != NULL )
638 {
639 // Get the producer properties
640 mlt_properties producer_properties = MLT_PRODUCER_PROPERTIES( producer );
641
642 // Ensure that we loop
643 mlt_properties_set( producer_properties, "eof", "loop" );
644
645 // Now pass all producer. properties on the transition down
646 mlt_properties_pass( producer_properties, properties, "luma." );
647
648 // We will get the alpha frame from the producer
649 mlt_frame luma_frame = NULL;
650
651 // Get the luma frame
652 if ( mlt_service_get_frame( MLT_PRODUCER_SERVICE( producer ), &luma_frame, 0 ) == 0 )
653 {
654 uint8_t *luma_image;
655 mlt_image_format luma_format = mlt_image_yuv422;
656
657 // Get image from the luma producer
658 mlt_properties_set( MLT_FRAME_PROPERTIES( luma_frame ), "rescale.interp", "none" );
659 mlt_frame_get_image( luma_frame, &luma_image, &luma_format, &luma_width, &luma_height, 0 );
660
661 // Generate the luma map
662 if ( luma_image != NULL && luma_format == mlt_image_yuv422 )
663 luma_read_yuv422( luma_image, &orig_bitmap, luma_width, luma_height );
664
665 // Remember the original size for subsequent scaling
666 mlt_properties_set_data( properties, "_luma.orig_bitmap", orig_bitmap, luma_width * luma_height * 2, mlt_pool_release, NULL );
667 mlt_properties_set_int( properties, "_luma.orig_width", luma_width );
668 mlt_properties_set_int( properties, "_luma.orig_height", luma_height );
669
670 // Cleanup the luma frame
671 mlt_frame_close( luma_frame );
672 }
673
674 // Cleanup the luma producer
675 mlt_producer_close( producer );
676 }
677 }
678 }
679 // Scale luma map
680 luma_bitmap = mlt_pool_alloc( width * height * sizeof( uint16_t ) );
681 scale_luma( luma_bitmap, width, height, orig_bitmap, luma_width, luma_height, invert * ( ( 1 << 16 ) - 1 ) );
682
683 // Remember the scaled luma size to prevent unnecessary scaling
684 mlt_properties_set_int( properties, "_luma.width", width );
685 mlt_properties_set_int( properties, "_luma.height", height );
686 mlt_properties_set_data( properties, "_luma.bitmap", luma_bitmap, width * height * 2, mlt_pool_release, NULL );
687 }
688 return luma_bitmap;
689 }
690
691 /** Get the properly sized image from b_frame.
692 */
693
694 static int get_b_frame_image( mlt_transition this, mlt_frame b_frame, uint8_t **image, int *width, int *height, struct geometry_s *geometry )
695 {
696 int ret = 0;
697 mlt_image_format format = mlt_image_yuv422;
698
699 // Get the properties objects
700 mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
701 mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
702
703 if ( mlt_properties_get_int( properties, "distort" ) == 0 && mlt_properties_get_int( b_props, "distort" ) == 0 && geometry->item.distort == 0 )
704 {
705 // Adjust b_frame pixel aspect
706 int normalised_width = geometry->item.w;
707 int normalised_height = geometry->item.h;
708 int real_width = get_value( b_props, "real_width", "width" );
709 int real_height = get_value( b_props, "real_height", "height" );
710 double input_ar = mlt_frame_get_aspect_ratio( b_frame );
711 double output_ar = mlt_properties_get_double( b_props, "consumer_aspect_ratio" );
712 int scaled_width = input_ar / output_ar * real_width;
713 int scaled_height = real_height;
714
715 // Now ensure that our images fit in the normalised frame
716 if ( scaled_width > normalised_width )
717 {
718 scaled_height = scaled_height * normalised_width / scaled_width;
719 scaled_width = normalised_width;
720 }
721 if ( scaled_height > normalised_height )
722 {
723 scaled_width = scaled_width * normalised_height / scaled_height;
724 scaled_height = normalised_height;
725 }
726
727 // Honour the fill request - this will scale the image to fill width or height while maintaining a/r
728 // ????: Shouln't this be the default behaviour?
729 if ( mlt_properties_get_int( properties, "fill" ) )
730 {
731 if ( scaled_height < normalised_height && scaled_width * normalised_height / scaled_height < normalised_width )
732 {
733 scaled_width = scaled_width * normalised_height / scaled_height;
734 scaled_height = normalised_height;
735 }
736 else if ( scaled_width < normalised_width && scaled_height * normalised_width / scaled_width < normalised_height )
737 {
738 scaled_height = scaled_height * normalised_width / scaled_width;
739 scaled_width = normalised_width;
740 }
741 }
742
743 // Save the new scaled dimensions
744 geometry->sw = scaled_width;
745 geometry->sh = scaled_height;
746 }
747 else
748 {
749 geometry->sw = geometry->item.w;
750 geometry->sh = geometry->item.h;
751 }
752
753 // We want to ensure that we bypass resize now...
754 mlt_properties_set_int( b_props, "distort", 1 );
755
756 // Take into consideration alignment for optimisation
757 if ( !mlt_properties_get_int( properties, "titles" ) )
758 alignment_calculate( geometry );
759
760 // Adjust to consumer scale
761 *width = geometry->sw * *width / geometry->nw;
762 *height = geometry->sh * *height / geometry->nh;
763
764 ret = mlt_frame_get_image( b_frame, image, &format, width, height, 1 );
765
766 return ret && image != NULL;
767 }
768
769
770 static mlt_geometry composite_calculate( mlt_transition this, struct geometry_s *result, mlt_frame a_frame, float position )
771 {
772 // Get the properties from the transition
773 mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
774
775 // Get the properties from the frame
776 mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
777
778 // Structures for geometry
779 mlt_geometry start = mlt_properties_get_data( properties, "geometries", NULL );
780
781 // Obtain the normalised width and height from the a_frame
782 int normalised_width = mlt_properties_get_int( a_props, "normalised_width" );
783 int normalised_height = mlt_properties_get_int( a_props, "normalised_height" );
784
785 // Now parse the geometries
786 if ( start == NULL )
787 {
788 // Parse the transitions properties
789 start = transition_parse_keys( this, normalised_width, normalised_height );
790
791 // Assign to properties to ensure we get destroyed
792 mlt_properties_set_data( properties, "geometries", start, 0, ( mlt_destructor )mlt_geometry_close, NULL );
793 }
794 else
795 {
796 int length = mlt_transition_get_out( this ) - mlt_transition_get_in( this ) + 1;
797 double cycle = mlt_properties_get_double( properties, "cycle" );
798 if ( cycle > 1 )
799 length = cycle;
800 else if ( cycle > 0 )
801 length *= cycle;
802 mlt_geometry_refresh( start, mlt_properties_get( properties, "geometry" ), length, normalised_width, normalised_height );
803 }
804
805 // Do the calculation
806 geometry_calculate( this, result, position );
807
808 // Assign normalised info
809 result->nw = normalised_width;
810 result->nh = normalised_height;
811
812 // Now parse the alignment
813 result->halign = alignment_parse( mlt_properties_get( properties, "halign" ) );
814 result->valign = alignment_parse( mlt_properties_get( properties, "valign" ) );
815
816 return start;
817 }
818
819 static inline void inline_memcpy( uint8_t *dest, uint8_t *src, int length )
820 {
821 uint8_t *end = src + length;
822 while ( src < end )
823 {
824 *dest ++ = *src ++;
825 *dest ++ = *src ++;
826 }
827 }
828
829 mlt_frame composite_copy_region( mlt_transition this, mlt_frame a_frame, mlt_position frame_position )
830 {
831 // Create a frame to return
832 mlt_frame b_frame = mlt_frame_init( );
833
834 // Get the properties of the a frame
835 mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
836
837 // Get the properties of the b frame
838 mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
839
840 // Get the position
841 int position = position_calculate( this, frame_position );
842
843 // Destination image
844 uint8_t *dest = NULL;
845
846 // Get the image and dimensions
847 uint8_t *image = mlt_properties_get_data( a_props, "image", NULL );
848 int width = mlt_properties_get_int( a_props, "width" );
849 int height = mlt_properties_get_int( a_props, "height" );
850
851 // Pointers for copy operation
852 uint8_t *p;
853
854 // Coordinates
855 int w = 0;
856 int h = 0;
857 int x = 0;
858 int y = 0;
859
860 int ss = 0;
861 int ds = 0;
862
863 // Will need to know region to copy
864 struct geometry_s result;
865
866 float delta = delta_calculate( this, a_frame );
867
868 // Calculate the region now
869 composite_calculate( this, &result, a_frame, position + delta / 2 );
870
871 // Need to scale down to actual dimensions
872 x = rint( 0.5 + result.item.x * width / result.nw );
873 y = rint( 0.5 + result.item.y * height / result.nh );
874 w = rint( 0.5 + result.item.w * width / result.nw );
875 h = rint( 0.5 + result.item.h * height / result.nh );
876
877 // Make sure that x and w are even
878 if ( x & 1 )
879 {
880 x --;
881 w += 2;
882 if ( w & 1 )
883 w --;
884 }
885 else if ( w & 1 )
886 {
887 w ++;
888 }
889
890 ds = w * 2;
891 ss = width * 2;
892
893 // Now we need to create a new destination image
894 dest = mlt_pool_alloc( w * h * 2 );
895
896 // Assign to the new frame
897 mlt_properties_set_data( b_props, "image", dest, w * h * 2, mlt_pool_release, NULL );
898 mlt_properties_set_int( b_props, "width", w );
899 mlt_properties_set_int( b_props, "height", h );
900
901 if ( y < 0 )
902 {
903 dest += ( ds * -y );
904 h += y;
905 y = 0;
906 }
907
908 if ( y + h > height )
909 h -= ( y + h - height );
910
911 if ( x < 0 )
912 {
913 dest += -x * 2;
914 w += x;
915 x = 0;
916 }
917
918 if ( w > 0 && h > 0 )
919 {
920 // Copy the region of the image
921 p = image + y * ss + x * 2;
922
923 while ( h -- )
924 {
925 inline_memcpy( dest, p, w * 2 );
926 dest += ds;
927 p += ss;
928 }
929 }
930
931 // Assign this position to the b frame
932 mlt_frame_set_position( b_frame, frame_position );
933 mlt_properties_set_int( b_props, "distort", 1 );
934
935 // Return the frame
936 return b_frame;
937 }
938
939 /** Get the image.
940 */
941
942 static int transition_get_image( mlt_frame a_frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
943 {
944 // Get the b frame from the stack
945 mlt_frame b_frame = mlt_frame_pop_frame( a_frame );
946
947 // Get the transition from the a frame
948 mlt_transition this = mlt_frame_pop_service( a_frame );
949
950 // Get in and out
951 int out = mlt_frame_pop_service_int( a_frame );
952 int in = mlt_frame_pop_service_int( a_frame );
953
954 // Get the properties from the transition
955 mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
956
957 // TODO: clean up always_active behaviour
958 if ( mlt_properties_get_int( properties, "always_active" ) )
959 {
960 mlt_events_block( properties, properties );
961 mlt_properties_set_int( properties, "in", in );
962 mlt_properties_set_int( properties, "out", out );
963 mlt_events_unblock( properties, properties );
964 }
965
966 // This compositer is yuv422 only
967 *format = mlt_image_yuv422;
968
969 if ( b_frame != NULL )
970 {
971 // Get the properties of the a frame
972 mlt_properties a_props = MLT_FRAME_PROPERTIES( a_frame );
973
974 // Get the properties of the b frame
975 mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame );
976
977 // Structures for geometry
978 struct geometry_s result;
979
980 // Calculate the position
981 float position = mlt_properties_get_double( b_props, "relative_position" );
982 float delta = delta_calculate( this, a_frame );
983
984 // Get the image from the b frame
985 uint8_t *image_b = NULL;
986 int width_b = *width;
987 int height_b = *height;
988
989 // Do the calculation
990 composite_calculate( this, &result, a_frame, position );
991
992 // Since we are the consumer of the b_frame, we must pass along these
993 // consumer properties from the a_frame
994 mlt_properties_set_double( b_props, "consumer_deinterlace", mlt_properties_get_double( a_props, "consumer_deinterlace" ) );
995 mlt_properties_set_double( b_props, "consumer_aspect_ratio", mlt_properties_get_double( a_props, "consumer_aspect_ratio" ) );
996 mlt_properties_set_int( b_props, "normalised_width", mlt_properties_get_double( a_props, "normalised_width" ) );
997 mlt_properties_set_int( b_props, "normalised_height", mlt_properties_get_double( a_props, "normalised_height" ) );
998
999 // TODO: Dangerous/temporary optimisation - if nothing to do, then do nothing
1000 if ( mlt_properties_get_int( properties, "no_alpha" ) &&
1001 result.item.x == 0 && result.item.y == 0 && result.item.w == *width && result.item.h == *height && result.item.mix == 100 )
1002 {
1003 mlt_frame_get_image( b_frame, image, format, width, height, 1 );
1004 if ( !mlt_frame_is_test_card( a_frame ) )
1005 mlt_frame_replace_image( a_frame, *image, *format, *width, *height );
1006 return 0;
1007 }
1008
1009 // Get the image from the a frame
1010 mlt_frame_get_image( a_frame, image, format, width, height, 1 );
1011
1012 // Optimisation - no compositing required
1013 if ( result.item.mix == 0 || ( result.item.w == 0 && result.item.h == 0 ) )
1014 return 0;
1015
1016 // Need to keep the width/height of the a_frame on the b_frame for titling
1017 if ( mlt_properties_get( a_props, "dest_width" ) == NULL )
1018 {
1019 mlt_properties_set_int( a_props, "dest_width", *width );
1020 mlt_properties_set_int( a_props, "dest_height", *height );
1021 mlt_properties_set_int( b_props, "dest_width", *width );
1022 mlt_properties_set_int( b_props, "dest_height", *height );
1023 }
1024 else
1025 {
1026 mlt_properties_set_int( b_props, "dest_width", mlt_properties_get_int( a_props, "dest_width" ) );
1027 mlt_properties_set_int( b_props, "dest_height", mlt_properties_get_int( a_props, "dest_height" ) );
1028 }
1029
1030 // Special case for titling...
1031 if ( mlt_properties_get_int( properties, "titles" ) )
1032 {
1033 if ( mlt_properties_get( b_props, "rescale.interp" ) == NULL )
1034 mlt_properties_set( b_props, "rescale.interp", "hyper" );
1035 width_b = mlt_properties_get_int( a_props, "dest_width" );
1036 height_b = mlt_properties_get_int( a_props, "dest_height" );
1037 }
1038
1039 if ( get_b_frame_image( this, b_frame, &image_b, &width_b, &height_b, &result ) == 0 )
1040 {
1041 uint8_t *dest = *image;
1042 uint8_t *src = image_b;
1043 uint8_t *alpha = mlt_frame_get_alpha_mask( b_frame );
1044 uint8_t *full_alpha = mlt_frame_get_alpha_mask( a_frame );
1045 int progressive =
1046 mlt_properties_get_int( a_props, "consumer_deinterlace" ) ||
1047 mlt_properties_get_int( properties, "progressive" );
1048 int field;
1049
1050 int32_t luma_softness = mlt_properties_get_double( properties, "softness" ) * ( 1 << 16 );
1051 uint16_t *luma_bitmap = get_luma( properties, width_b, height_b );
1052 //composite_line_fn line_fn = mlt_properties_get_int( properties, "_MMX" ) ? composite_line_yuv_mmx : NULL;
1053 composite_line_fn line_fn = NULL;
1054
1055 if ( full_alpha == NULL )
1056 {
1057 full_alpha = mlt_pool_alloc( *width * *height );
1058 memset( full_alpha, 255, *width * *height );
1059 a_frame->get_alpha_mask = NULL;
1060 mlt_properties_set_data( a_props, "alpha", full_alpha, 0, mlt_pool_release, NULL );
1061 }
1062
1063 for ( field = 0; field < ( progressive ? 1 : 2 ); field++ )
1064 {
1065 // Assume lower field (0) first
1066 float field_position = position + field * delta;
1067
1068 // Do the calculation if we need to
1069 composite_calculate( this, &result, a_frame, field_position );
1070
1071 if ( mlt_properties_get_int( properties, "titles" ) )
1072 {
1073 result.item.w = *width * ( result.item.w / result.nw );
1074 result.nw = result.item.w;
1075 result.item.h = *height * ( result.item.h / result.nh );
1076 result.nh = *height;
1077 result.sw = width_b;
1078 result.sh = height_b;
1079 }
1080
1081 // Align
1082 alignment_calculate( &result );
1083
1084 // Composite the b_frame on the a_frame
1085 composite_yuv( dest, *width, *height, src, width_b, height_b, alpha, full_alpha, result, progressive ? -1 : field, luma_bitmap, luma_softness, line_fn );
1086 }
1087 }
1088 }
1089 else
1090 {
1091 mlt_frame_get_image( a_frame, image, format, width, height, 1 );
1092 }
1093
1094 return 0;
1095 }
1096
1097 /** Composition transition processing.
1098 */
1099
1100 static mlt_frame composite_process( mlt_transition this, mlt_frame a_frame, mlt_frame b_frame )
1101 {
1102 // Get a unique name to store the frame position
1103 char *name = mlt_properties_get( MLT_TRANSITION_PROPERTIES( this ), "_unique_id" );
1104
1105 // UGH - this is a TODO - find a more reliable means of obtaining in/out for the always_active case
1106 if ( mlt_properties_get_int( MLT_TRANSITION_PROPERTIES( this ), "always_active" ) == 0 )
1107 {
1108 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( MLT_TRANSITION_PROPERTIES( this ), "in" ) );
1109 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( MLT_TRANSITION_PROPERTIES( this ), "out" ) );
1110
1111 // Assign the current position to the name
1112 mlt_properties_set_position( MLT_FRAME_PROPERTIES( a_frame ), name, mlt_frame_get_position( a_frame ) );
1113
1114 // Propogate the transition properties to the b frame
1115 mlt_properties_set_double( MLT_FRAME_PROPERTIES( b_frame ), "relative_position", position_calculate( this, mlt_frame_get_position( a_frame ) ) );
1116 }
1117 else
1118 {
1119 mlt_properties props = mlt_properties_get_data( MLT_FRAME_PROPERTIES( b_frame ), "_producer", NULL );
1120 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( props, "in" ) );
1121 mlt_frame_push_service_int( a_frame, mlt_properties_get_int( props, "out" ) );
1122 mlt_properties_set_int( MLT_FRAME_PROPERTIES( b_frame ), "relative_position", mlt_properties_get_int( props, "_frame" ) - mlt_properties_get_int( props, "in" ) );
1123
1124 // Assign the current position to the name
1125 mlt_properties_set_position( MLT_FRAME_PROPERTIES( a_frame ), name, mlt_properties_get_position( MLT_FRAME_PROPERTIES( b_frame ), "relative_position" ) );
1126 }
1127
1128 mlt_frame_push_service( a_frame, this );
1129 mlt_frame_push_frame( a_frame, b_frame );
1130 mlt_frame_push_get_image( a_frame, transition_get_image );
1131 return a_frame;
1132 }
1133
1134 /** Constructor for the filter.
1135 */
1136
1137 mlt_transition transition_composite_init( char *arg )
1138 {
1139 mlt_transition this = calloc( sizeof( struct mlt_transition_s ), 1 );
1140 if ( this != NULL && mlt_transition_init( this, NULL ) == 0 )
1141 {
1142 mlt_properties properties = MLT_TRANSITION_PROPERTIES( this );
1143
1144 this->process = composite_process;
1145
1146 // Default starting motion and zoom
1147 mlt_properties_set( properties, "start", arg != NULL ? arg : "0,0:100%x100%" );
1148
1149 // Default factory
1150 mlt_properties_set( properties, "factory", "fezzik" );
1151
1152 // Inform apps and framework that this is a video only transition
1153 mlt_properties_set_int( properties, "_transition_type", 1 );
1154
1155 #ifdef USE_MMX
1156 //mlt_properties_set_int( properties, "_MMX", composite_have_mmx() );
1157 #endif
1158 }
1159 return this;
1160 }