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>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include "transition_composite.h"
22 #include <framework/mlt.h>
30 typedef void ( *composite_line_fn
)( uint8_t *dest
, uint8_t *src
, int width_src
, uint8_t *alpha
, int weight
, uint16_t *luma
, int softness
);
32 /* mmx function declarations */
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 );
46 int nw
; // normalised width
47 int nh
; // normalised height
48 int sw
; // scaled width, not including consumer scale based upon w/nw
49 int sh
; // scaled height, not including consumer scale based upon h/nh
54 int halign
; // horizontal alignment: 0=left, 1=center, 2=right
55 int valign
; // vertical alignment: 0=top, 1=middle, 2=bottom
57 struct geometry_s
*next
;
60 /** Parse a value from a geometry string.
63 static float parse_value( char **ptr
, int normalisation
, char delim
, float defaults
)
65 float value
= defaults
;
67 if ( *ptr
!= NULL
&& **ptr
!= '\0' )
70 value
= strtod( *ptr
, &end
);
74 value
= ( value
/ 100.0 ) * normalisation
;
75 while ( *end
== delim
|| *end
== '%' )
84 /** Parse a geometry property string with the syntax X,Y:WxH:MIX. Any value can be
85 expressed as a percentage by appending a % after the value, otherwise values are
86 assumed to be relative to the normalised dimensions of the consumer.
89 static void geometry_parse( struct geometry_s
*geometry
, struct geometry_s
*defaults
, char *property
, int nw
, int nh
)
91 // Assign normalised width and height
95 // Assign from defaults if available
96 if ( defaults
!= NULL
)
98 geometry
->x
= defaults
->x
;
99 geometry
->y
= defaults
->y
;
100 geometry
->w
= geometry
->sw
= defaults
->w
;
101 geometry
->h
= geometry
->sh
= defaults
->h
;
102 geometry
->distort
= defaults
->distort
;
103 geometry
->mix
= defaults
->mix
;
104 defaults
->next
= geometry
;
111 // Parse the geomtry string
112 if ( property
!= NULL
&& strcmp( property
, "" ) )
114 char *ptr
= property
;
115 geometry
->x
= parse_value( &ptr
, nw
, ',', geometry
->x
);
116 geometry
->y
= parse_value( &ptr
, nh
, ':', geometry
->y
);
117 geometry
->w
= geometry
->sw
= parse_value( &ptr
, nw
, 'x', geometry
->w
);
118 geometry
->h
= geometry
->sh
= parse_value( &ptr
, nh
, ':', geometry
->h
);
121 geometry
->distort
= 1;
126 geometry
->mix
= parse_value( &ptr
, 100, ' ', geometry
->mix
);
130 /** Calculate real geometry.
133 static void geometry_calculate( struct geometry_s
*output
, struct geometry_s
*in
, float position
)
135 // Search in for position
136 struct geometry_s
*out
= in
->next
;
138 if ( position
>= 1.0 )
140 int section
= floor( position
);
142 if ( section
% 2 == 1 )
143 position
= 1.0 - position
;
146 while ( out
->next
!= NULL
)
148 if ( position
>= in
->position
&& position
< out
->position
)
155 position
= ( position
- in
->position
) / ( out
->position
- in
->position
);
157 // Calculate this frames geometry
158 if ( in
->frame
!= out
->frame
- 1 )
162 output
->x
= in
->x
+ ( out
->x
- in
->x
) * position
;
163 output
->y
= in
->y
+ ( out
->y
- in
->y
) * position
;
164 output
->w
= in
->w
+ ( out
->w
- in
->w
) * position
;
165 output
->h
= in
->h
+ ( out
->h
- in
->h
) * position
;
166 output
->mix
= in
->mix
+ ( out
->mix
- in
->mix
) * position
;
167 output
->distort
= in
->distort
;
171 output
->nw
= out
->nw
;
172 output
->nh
= out
->nh
;
177 output
->mix
= out
->mix
;
178 output
->distort
= out
->distort
;
181 // DRD> These break on negative values. I do not think they are needed
182 // since yuv_composite takes care of YUYV group alignment
183 //output->x = ( int )floor( output->x ) & 0xfffffffe;
184 //output->w = ( int )floor( output->w ) & 0xfffffffe;
185 //output->sw &= 0xfffffffe;
188 void transition_destroy_keys( void *arg
)
190 struct geometry_s
*ptr
= arg
;
191 struct geometry_s
*next
= NULL
;
193 while ( ptr
!= NULL
)
201 static struct geometry_s
*transition_parse_keys( mlt_transition
this, int normalised_width
, int normalised_height
)
203 // Loop variable for property interrogation
206 // Get the properties of the transition
207 mlt_properties properties
= mlt_transition_properties( this );
209 // Get the in and out position
210 mlt_position in
= mlt_transition_get_in( this );
211 mlt_position out
= mlt_transition_get_out( this );
214 struct geometry_s
*start
= calloc( 1, sizeof( struct geometry_s
) );
216 // Create the end (we always need two entries)
217 struct geometry_s
*end
= calloc( 1, sizeof( struct geometry_s
) );
220 struct geometry_s
*ptr
= start
;
222 // Parse the start property
223 geometry_parse( start
, NULL
, mlt_properties_get( properties
, "start" ), normalised_width
, normalised_height
);
225 // Parse the keys in between
226 for ( i
= 0; i
< mlt_properties_count( properties
); i
++ )
228 // Get the name of the property
229 char *name
= mlt_properties_get_name( properties
, i
);
231 // Check that it's valid
232 if ( !strncmp( name
, "key[", 4 ) )
234 // Get the value of the property
235 char *value
= mlt_properties_get_value( properties
, i
);
237 // Determine the frame number
238 int frame
= atoi( name
+ 4 );
240 // Determine the position
243 if ( frame
>= 0 && frame
< ( out
- in
) )
244 position
= ( float )frame
/ ( float )( out
- in
+ 1 );
245 else if ( frame
< 0 && - frame
< ( out
- in
) )
246 position
= ( float )( out
- in
+ frame
) / ( float )( out
- in
+ 1 );
248 // For now, we'll exclude all keys received out of order
249 if ( position
> ptr
->position
)
251 // Create a new geometry
252 struct geometry_s
*temp
= calloc( 1, sizeof( struct geometry_s
) );
254 // Parse and add to the list
255 geometry_parse( temp
, ptr
, value
, normalised_width
, normalised_height
);
257 // Assign the position and frame
259 temp
->position
= position
;
261 // Allow the next to be appended after this one
266 fprintf( stderr
, "Key out of order - skipping %s\n", name
);
272 geometry_parse( end
, ptr
, mlt_properties_get( properties
, "end" ), normalised_width
, normalised_height
);
274 end
->position
= ( float )( out
- in
) / ( float )( out
- in
+ 1 );
278 // Assign to properties to ensure we get destroyed
279 mlt_properties_set_data( properties
, "geometries", start
, 0, transition_destroy_keys
, NULL
);
284 /** Parse the alignment properties into the geometry.
287 static int alignment_parse( char* align
)
291 if ( align
== NULL
);
292 else if ( isdigit( align
[ 0 ] ) )
294 else if ( align
[ 0 ] == 'c' || align
[ 0 ] == 'm' )
296 else if ( align
[ 0 ] == 'r' || align
[ 0 ] == 'b' )
302 /** Adjust position according to scaled size and alignment properties.
305 static void alignment_calculate( struct geometry_s
*geometry
)
307 geometry
->x
+= ( geometry
->w
- geometry
->sw
) * geometry
->halign
/ 2;
308 geometry
->y
+= ( geometry
->h
- geometry
->sh
) * geometry
->valign
/ 2;
311 /** Calculate the position for this frame.
314 static float position_calculate( mlt_transition
this, mlt_position position
)
316 // Get the in and out position
317 mlt_position in
= mlt_transition_get_in( this );
318 mlt_position out
= mlt_transition_get_out( this );
321 return ( float )( position
- in
) / ( float )( out
- in
+ 1 );
324 /** Calculate the field delta for this frame - position between two frames.
327 static inline float delta_calculate( mlt_transition
this, mlt_frame frame
)
329 // Get the in and out position
330 mlt_position in
= mlt_transition_get_in( this );
331 mlt_position out
= mlt_transition_get_out( this );
333 // Get the position of the frame
334 char *name
= mlt_properties_get( mlt_transition_properties( this ), "_unique_id" );
335 mlt_position position
= mlt_properties_get_position( mlt_frame_properties( frame
), name
);
338 float x
= ( float )( position
- in
) / ( float )( out
- in
+ 1 );
339 float y
= ( float )( position
+ 1 - in
) / ( float )( out
- in
+ 1 );
341 return ( y
- x
) / 2.0;
344 static int get_value( mlt_properties properties
, char *preferred
, char *fallback
)
346 int value
= mlt_properties_get_int( properties
, preferred
);
348 value
= mlt_properties_get_int( properties
, fallback
);
352 /** A linear threshold determination function.
355 static inline int32_t linearstep( int32_t edge1
, int32_t edge2
, int32_t a
)
363 return ( ( a
- edge1
) << 16 ) / ( edge2
- edge1
);
366 /** A smoother, non-linear threshold determination function.
369 static inline int32_t smoothstep( int32_t edge1
, int32_t edge2
, uint32_t a
)
377 a
= ( ( a
- edge1
) << 16 ) / ( edge2
- edge1
);
379 return ( ( ( a
* a
) >> 16 ) * ( ( 3 << 16 ) - ( 2 * a
) ) ) >> 16;
382 /** Load the luma map from PGM stream.
385 static void luma_read_pgm( FILE *f
, uint16_t **map
, int *width
, int *height
)
387 uint8_t *data
= NULL
;
399 // get the magic code
400 if ( fgets( line
, 127, f
) == NULL
)
404 while ( sscanf( line
, " #%s", comment
) > 0 )
405 if ( fgets( line
, 127, f
) == NULL
)
408 if ( line
[0] != 'P' || line
[1] != '5' )
411 // skip white space and see if a new line must be fetched
412 for ( i
= 2; i
< 127 && line
[i
] != '\0' && isspace( line
[i
] ); i
++ );
413 if ( ( line
[i
] == '\0' || line
[i
] == '#' ) && fgets( line
, 127, f
) == NULL
)
417 while ( sscanf( line
, " #%s", comment
) > 0 )
418 if ( fgets( line
, 127, f
) == NULL
)
421 // get the dimensions
422 if ( line
[0] == 'P' )
423 i
= sscanf( line
, "P5 %d %d %d", width
, height
, &maxval
);
425 i
= sscanf( line
, "%d %d %d", width
, height
, &maxval
);
427 // get the height value, if not yet
430 if ( fgets( line
, 127, f
) == NULL
)
434 while ( sscanf( line
, " #%s", comment
) > 0 )
435 if ( fgets( line
, 127, f
) == NULL
)
438 i
= sscanf( line
, "%d", height
);
445 // get the maximum gray value, if not yet
448 if ( fgets( line
, 127, f
) == NULL
)
452 while ( sscanf( line
, " #%s", comment
) > 0 )
453 if ( fgets( line
, 127, f
) == NULL
)
456 i
= sscanf( line
, "%d", &maxval
);
461 // determine if this is one or two bytes per pixel
462 bpp
= maxval
> 255 ?
2 : 1;
464 // allocate temporary storage for the raw data
465 data
= mlt_pool_alloc( *width
* *height
* bpp
);
470 if ( fread( data
, *width
* *height
* bpp
, 1, f
) != 1 )
473 // allocate the luma bitmap
474 *map
= p
= (uint16_t*)mlt_pool_alloc( *width
* *height
* sizeof( uint16_t ) );
478 // proces the raw data into the luma bitmap
479 for ( i
= 0; i
< *width
* *height
* bpp
; i
+= bpp
)
482 *p
++ = data
[ i
] << 8;
484 *p
++ = ( data
[ i
] << 8 ) + data
[ i
+ 1 ];
491 mlt_pool_release( data
);
494 /** Generate a luma map from any YUV image.
497 static void luma_read_yuv422( uint8_t *image
, uint16_t **map
, int width
, int height
)
501 // allocate the luma bitmap
502 uint16_t *p
= *map
= ( uint16_t* )mlt_pool_alloc( width
* height
* sizeof( uint16_t ) );
506 // proces the image data into the luma bitmap
507 for ( i
= 0; i
< width
* height
* 2; i
+= 2 )
508 *p
++ = ( image
[ i
] - 16 ) * 299; // 299 = 65535 / 219
512 /** Composite a source line over a destination line
516 void composite_line_yuv( uint8_t *dest
, uint8_t *src
, int width_src
, uint8_t *alpha
, int weight
, uint16_t *luma
, int softness
)
521 for ( j
= 0; j
< width_src
; j
++ )
523 a
= ( alpha
== NULL
) ?
255 : *alpha
++;
524 mix
= ( luma
== NULL
) ? weight
: linearstep( luma
[ j
], luma
[ j
] + softness
, weight
);
525 mix
= ( mix
* ( a
+ 1 ) ) >> 8;
526 *dest
= ( *src
++ * mix
+ *dest
* ( ( 1 << 16 ) - mix
) ) >> 16;
528 *dest
= ( *src
++ * mix
+ *dest
* ( ( 1 << 16 ) - mix
) ) >> 16;
533 /** Composite function.
536 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
, struct geometry_s geometry
, int field
, uint16_t *p_luma
, int32_t softness
, composite_line_fn line_fn
)
540 int x_src
= 0, y_src
= 0;
541 int32_t weight
= ( 1 << 16 ) * ( geometry
.mix
/ 100 );
542 int step
= ( field
> -1 ) ?
2 : 1;
544 int stride_src
= width_src
* bpp
;
545 int stride_dest
= width_dest
* bpp
;
547 // Adjust to consumer scale
548 int x
= geometry
.x
* width_dest
/ geometry
.nw
;
549 int y
= geometry
.y
* height_dest
/ geometry
.nh
;
551 // Align x to a full YUYV group
553 width_src
&= 0xfffffffe;
555 // optimization points - no work to do
556 if ( width_src
<= 0 || height_src
<= 0 )
559 if ( ( x
< 0 && -x
>= width_src
) || ( y
< 0 && -y
>= height_src
) )
562 // crop overlay off the left edge of frame
570 // crop overlay beyond right edge of frame
571 if ( x
+ width_src
> width_dest
)
572 width_src
= width_dest
- x
;
574 // crop overlay off the top edge of the frame
581 // crop overlay below bottom edge of frame
582 if ( y
+ height_src
> height_dest
)
583 height_src
= height_dest
- y
;
585 // offset pointer into overlay buffer based on cropping
586 p_src
+= x_src
* bpp
+ y_src
* stride_src
;
588 // offset pointer into frame buffer based upon positive coordinates only!
589 p_dest
+= ( x
< 0 ?
0 : x
) * bpp
+ ( y
< 0 ?
0 : y
) * stride_dest
;
591 // offset pointer into alpha channel based upon cropping
593 p_alpha
+= x_src
+ y_src
* stride_src
/ bpp
;
595 // offset pointer into luma channel based upon cropping
597 p_luma
+= x_src
+ y_src
* stride_src
/ bpp
;
599 // Assuming lower field first
600 // Special care is taken to make sure the b_frame is aligned to the correct field.
601 // field 0 = lower field and y should be odd (y is 0-based).
602 // field 1 = upper field and y should be even.
603 if ( ( field
> -1 ) && ( y
% 2 == field
) )
605 //fprintf( stderr, "field %d y %d\n", field, y );
606 if ( ( field
== 1 && y
< height_dest
- 1 ) || ( field
== 0 && y
== 0 ) )
607 p_dest
+= stride_dest
;
609 p_dest
-= stride_dest
;
612 // On the second field, use the other lines from b_frame
617 p_alpha
+= stride_src
/ bpp
;
623 int alpha_stride
= stride_src
/ bpp
;
625 // now do the compositing only to cropped extents
626 if ( line_fn
!= NULL
)
628 for ( i
= 0; i
< height_src
; i
+= step
)
630 line_fn( p_dest
, p_src
, width_src
, p_alpha
, weight
, p_luma
, softness
);
633 p_dest
+= stride_dest
;
635 p_alpha
+= alpha_stride
;
637 p_luma
+= alpha_stride
;
642 for ( i
= 0; i
< height_src
; i
+= step
)
644 composite_line_yuv( p_dest
, p_src
, width_src
, p_alpha
, weight
, p_luma
, softness
);
647 p_dest
+= stride_dest
;
649 p_alpha
+= alpha_stride
;
651 p_luma
+= alpha_stride
;
659 /** Scale 16bit greyscale luma map using nearest neighbor.
663 scale_luma ( uint16_t *dest_buf
, int dest_width
, int dest_height
, const uint16_t *src_buf
, int src_width
, int src_height
)
666 register int x_step
= ( src_width
<< 16 ) / dest_width
;
667 register int y_step
= ( src_height
<< 16 ) / dest_height
;
668 register int x
, y
= 0;
670 for ( i
= 0; i
< dest_height
; i
++ )
672 const uint16_t *src
= src_buf
+ ( y
>> 16 ) * src_width
;
675 for ( j
= 0; j
< dest_width
; j
++ )
677 *dest_buf
++ = src
[ x
>> 16 ];
684 static uint16_t* get_luma( mlt_properties properties
, int width
, int height
)
686 // The cached luma map information
687 int luma_width
= mlt_properties_get_int( properties
, "_luma.width" );
688 int luma_height
= mlt_properties_get_int( properties
, "_luma.height" );
689 uint16_t *luma_bitmap
= mlt_properties_get_data( properties
, "_luma.bitmap", NULL
);
691 // If the filename property changed, reload the map
692 char *resource
= mlt_properties_get( properties
, "luma" );
694 if ( resource
!= NULL
&& ( luma_bitmap
== NULL
|| luma_width
!= width
|| luma_height
!= height
) )
696 uint16_t *orig_bitmap
= mlt_properties_get_data( properties
, "_luma.orig_bitmap", NULL
);
697 luma_width
= mlt_properties_get_int( properties
, "_luma.orig_width" );
698 luma_height
= mlt_properties_get_int( properties
, "_luma.orig_height" );
700 // Load the original luma once
701 if ( orig_bitmap
== NULL
)
703 char *extension
= extension
= strrchr( resource
, '.' );
705 // See if it is a PGM
706 if ( extension
!= NULL
&& strcmp( extension
, ".pgm" ) == 0 )
709 FILE *f
= fopen( resource
, "r" );
713 luma_read_pgm( f
, &orig_bitmap
, &luma_width
, &luma_height
);
716 // Remember the original size for subsequent scaling
717 mlt_properties_set_data( properties
, "_luma.orig_bitmap", orig_bitmap
, luma_width
* luma_height
* 2, mlt_pool_release
, NULL
);
718 mlt_properties_set_int( properties
, "_luma.orig_width", luma_width
);
719 mlt_properties_set_int( properties
, "_luma.orig_height", luma_height
);
724 // Get the factory producer service
725 char *factory
= mlt_properties_get( properties
, "factory" );
727 // Create the producer
728 mlt_producer producer
= mlt_factory_producer( factory
, resource
);
731 if ( producer
!= NULL
)
733 // Get the producer properties
734 mlt_properties producer_properties
= mlt_producer_properties( producer
);
736 // Ensure that we loop
737 mlt_properties_set( producer_properties
, "eof", "loop" );
739 // Now pass all producer. properties on the transition down
740 mlt_properties_pass( producer_properties
, properties
, "luma." );
742 // We will get the alpha frame from the producer
743 mlt_frame luma_frame
= NULL
;
745 // Get the luma frame
746 if ( mlt_service_get_frame( mlt_producer_service( producer
), &luma_frame
, 0 ) == 0 )
749 mlt_image_format luma_format
= mlt_image_yuv422
;
751 // Get image from the luma producer
752 mlt_properties_set( mlt_frame_properties( luma_frame
), "rescale.interp", "none" );
753 mlt_frame_get_image( luma_frame
, &luma_image
, &luma_format
, &luma_width
, &luma_height
, 0 );
755 // Generate the luma map
756 if ( luma_image
!= NULL
&& luma_format
== mlt_image_yuv422
)
757 luma_read_yuv422( luma_image
, &orig_bitmap
, luma_width
, luma_height
);
759 // Remember the original size for subsequent scaling
760 mlt_properties_set_data( properties
, "_luma.orig_bitmap", orig_bitmap
, luma_width
* luma_height
* 2, mlt_pool_release
, NULL
);
761 mlt_properties_set_int( properties
, "_luma.orig_width", luma_width
);
762 mlt_properties_set_int( properties
, "_luma.orig_height", luma_height
);
764 // Cleanup the luma frame
765 mlt_frame_close( luma_frame
);
768 // Cleanup the luma producer
769 mlt_producer_close( producer
);
774 luma_bitmap
= mlt_pool_alloc( width
* height
* sizeof( uint16_t ) );
775 scale_luma( luma_bitmap
, width
, height
, orig_bitmap
, luma_width
, luma_height
);
777 // Remember the scaled luma size to prevent unnecessary scaling
778 mlt_properties_set_int( properties
, "_luma.width", width
);
779 mlt_properties_set_int( properties
, "_luma.height", height
);
780 mlt_properties_set_data( properties
, "_luma.bitmap", luma_bitmap
, width
* height
* 2, mlt_pool_release
, NULL
);
785 /** Get the properly sized image from b_frame.
788 static int get_b_frame_image( mlt_transition
this, mlt_frame b_frame
, uint8_t **image
, int *width
, int *height
, struct geometry_s
*geometry
)
791 mlt_image_format format
= mlt_image_yuv422
;
793 // Get the properties objects
794 mlt_properties b_props
= mlt_frame_properties( b_frame
);
795 mlt_properties properties
= mlt_transition_properties( this );
797 if ( mlt_properties_get( properties
, "distort" ) == NULL
&& geometry
->distort
== 0 )
799 // Adjust b_frame pixel aspect
800 int normalised_width
= geometry
->w
;
801 int normalised_height
= geometry
->h
;
802 int real_width
= get_value( b_props
, "real_width", "width" );
803 int real_height
= get_value( b_props
, "real_height", "height" );
804 double input_ar
= mlt_frame_get_aspect_ratio( b_frame
);
805 double output_ar
= mlt_properties_get_double( b_props
, "consumer_aspect_ratio" );
806 int scaled_width
= input_ar
/ output_ar
* real_width
;
807 int scaled_height
= real_height
;
809 // Now ensure that our images fit in the normalised frame
810 if ( scaled_width
> normalised_width
)
812 scaled_height
= scaled_height
* normalised_width
/ scaled_width
;
813 scaled_width
= normalised_width
;
815 if ( scaled_height
> normalised_height
)
817 scaled_width
= scaled_width
* normalised_height
/ scaled_height
;
818 scaled_height
= normalised_height
;
821 // Now apply the fill
822 // TODO: Should combine fill/distort in one property
823 if ( mlt_properties_get( properties
, "fill" ) != NULL
)
825 scaled_width
= ( geometry
->w
/ scaled_width
) * scaled_width
;
826 scaled_height
= ( geometry
->h
/ scaled_height
) * scaled_height
;
829 // Save the new scaled dimensions
830 geometry
->sw
= scaled_width
;
831 geometry
->sh
= scaled_height
;
835 geometry
->sw
= geometry
->w
;
836 geometry
->sh
= geometry
->h
;
839 // We want to ensure that we bypass resize now...
840 mlt_properties_set( b_props
, "distort", "true" );
842 // Take into consideration alignment for optimisation
843 alignment_calculate( geometry
);
845 // Adjust to consumer scale
846 int x
= geometry
->x
* *width
/ geometry
->nw
;
847 int y
= geometry
->y
* *height
/ geometry
->nh
;
848 *width
= geometry
->sw
* *width
/ geometry
->nw
;
849 *height
= geometry
->sh
* *height
/ geometry
->nh
;
853 // optimization points - no work to do
854 if ( *width
< 1 || *height
< 1 )
857 if ( ( x
< 0 && -x
>= *width
) || ( y
< 0 && -y
>= *height
) )
860 ret
= mlt_frame_get_image( b_frame
, image
, &format
, width
, height
, 1 );
866 struct geometry_s
*composite_calculate( struct geometry_s
*result
, mlt_transition
this, mlt_frame a_frame
, float position
)
868 // Get the properties from the transition
869 mlt_properties properties
= mlt_transition_properties( this );
871 // Get the properties from the frame
872 mlt_properties a_props
= mlt_frame_properties( a_frame
);
874 // Structures for geometry
875 struct geometry_s
*start
= mlt_properties_get_data( properties
, "geometries", NULL
);
877 // Now parse the geometries
880 // Obtain the normalised width and height from the a_frame
881 int normalised_width
= mlt_properties_get_int( a_props
, "normalised_width" );
882 int normalised_height
= mlt_properties_get_int( a_props
, "normalised_height" );
884 // Parse the transitions properties
885 start
= transition_parse_keys( this, normalised_width
, normalised_height
);
888 // Do the calculation
889 geometry_calculate( result
, start
, position
);
891 // Now parse the alignment
892 result
->halign
= alignment_parse( mlt_properties_get( properties
, "halign" ) );
893 result
->valign
= alignment_parse( mlt_properties_get( properties
, "valign" ) );
898 mlt_frame
composite_copy_region( mlt_transition
this, mlt_frame a_frame
, mlt_position frame_position
)
900 // Create a frame to return
901 mlt_frame b_frame
= mlt_frame_init( );
903 // Get the properties of the a frame
904 mlt_properties a_props
= mlt_frame_properties( a_frame
);
906 // Get the properties of the b frame
907 mlt_properties b_props
= mlt_frame_properties( b_frame
);
910 float position
= position_calculate( this, frame_position
);
913 uint8_t *dest
= NULL
;
915 // Get the image and dimensions
916 uint8_t *image
= mlt_properties_get_data( a_props
, "image", NULL
);
917 int width
= mlt_properties_get_int( a_props
, "width" );
918 int height
= mlt_properties_get_int( a_props
, "height" );
920 // Pointers for copy operation
931 // Will need to know region to copy
932 struct geometry_s result
;
934 // Calculate the region now
935 composite_calculate( &result
, this, a_frame
, position
);
937 // Need to scale down to actual dimensions
938 x
= result
.x
* width
/ result
.nw
;
939 y
= result
.y
* height
/ result
.nh
;
940 w
= result
.w
* width
/ result
.nw
;
941 h
= result
.h
* height
/ result
.nh
;
946 // Now we need to create a new destination image
947 dest
= mlt_pool_alloc( w
* h
* 2 );
949 // Copy the region of the image
950 p
= image
+ y
* width
* 2 + x
* 2;
952 r
= dest
+ w
* h
* 2;
956 memcpy( q
, p
, w
* 2 );
961 // Assign to the new frame
962 mlt_properties_set_data( b_props
, "image", dest
, w
* h
* 2, mlt_pool_release
, NULL
);
963 mlt_properties_set_int( b_props
, "width", w
);
964 mlt_properties_set_int( b_props
, "height", h
);
966 // Assign this position to the b frame
967 mlt_frame_set_position( b_frame
, frame_position
);
976 static int transition_get_image( mlt_frame a_frame
, uint8_t **image
, mlt_image_format
*format
, int *width
, int *height
, int writable
)
978 // Get the b frame from the stack
979 mlt_frame b_frame
= mlt_frame_pop_frame( a_frame
);
981 // Get the transition from the a frame
982 mlt_transition
this = mlt_frame_pop_service( a_frame
);
984 // This compositer is yuv422 only
985 *format
= mlt_image_yuv422
;
987 // Get the image from the a frame
988 mlt_frame_get_image( a_frame
, image
, format
, width
, height
, 1 );
990 if ( b_frame
!= NULL
)
992 // Get the properties of the a frame
993 mlt_properties a_props
= mlt_frame_properties( a_frame
);
995 // Get the properties of the b frame
996 mlt_properties b_props
= mlt_frame_properties( b_frame
);
998 // Get the properties from the transition
999 mlt_properties properties
= mlt_transition_properties( this );
1001 // Structures for geometry
1002 struct geometry_s result
;
1004 // Calculate the position
1005 float position
= mlt_properties_get_double( b_props
, "relative_position" );
1006 float delta
= delta_calculate( this, a_frame
);
1008 // Do the calculation
1009 struct geometry_s
*start
= composite_calculate( &result
, this, a_frame
, position
);
1011 // Optimisation - no compositing required
1012 if ( result
.mix
== 0 || ( result
.w
== 0 && result
.h
== 0 ) )
1015 // Since we are the consumer of the b_frame, we must pass along these
1016 // consumer properties from the a_frame
1017 mlt_properties_set_double( b_props
, "consumer_aspect_ratio", mlt_properties_get_double( a_props
, "consumer_aspect_ratio" ) );
1019 // Get the image from the b frame
1020 uint8_t *image_b
= NULL
;
1021 int width_b
= *width
;
1022 int height_b
= *height
;
1024 if ( get_b_frame_image( this, b_frame
, &image_b
, &width_b
, &height_b
, &result
) == 0 )
1026 uint8_t *dest
= *image
;
1027 uint8_t *src
= image_b
;
1028 uint8_t *alpha
= mlt_frame_get_alpha_mask( b_frame
);
1030 mlt_properties_get_int( a_props
, "consumer_progressive" ) ||
1031 mlt_properties_get_int( properties
, "progressive" );
1034 int32_t luma_softness
= mlt_properties_get_double( properties
, "softness" ) * ( 1 << 16 );
1035 uint16_t *luma_bitmap
= get_luma( properties
, width_b
, height_b
);
1036 composite_line_fn line_fn
= mlt_properties_get_int( properties
, "_MMX" ) ? composite_line_yuv_mmx
: NULL
;
1038 for ( field
= 0; field
< ( progressive ?
1 : 2 ); field
++ )
1040 // Assume lower field (0) first
1041 float field_position
= position
+ field
* delta
;
1043 // Do the calculation if we need to
1044 geometry_calculate( &result
, start
, field_position
);
1047 alignment_calculate( &result
);
1049 // Composite the b_frame on the a_frame
1050 composite_yuv( dest
, *width
, *height
, src
, width_b
, height_b
, alpha
, result
, progressive ?
-1 : field
, luma_bitmap
, luma_softness
, line_fn
);
1058 /** Composition transition processing.
1061 static mlt_frame
composite_process( mlt_transition
this, mlt_frame a_frame
, mlt_frame b_frame
)
1063 // Get a unique name to store the frame position
1064 char *name
= mlt_properties_get( mlt_transition_properties( this ), "_unique_id" );
1066 // Assign the current position to the name
1067 mlt_properties_set_position( mlt_frame_properties( a_frame
), name
, mlt_frame_get_position( a_frame
) );
1069 // Propogate the transition properties to the b frame
1070 mlt_properties_set_double( mlt_frame_properties( b_frame
), "relative_position", position_calculate( this, mlt_frame_get_position( a_frame
) ) );
1072 mlt_frame_push_service( a_frame
, this );
1073 mlt_frame_push_frame( a_frame
, b_frame
);
1074 mlt_frame_push_get_image( a_frame
, transition_get_image
);
1078 /** Constructor for the filter.
1081 mlt_transition
transition_composite_init( char *arg
)
1083 mlt_transition
this = calloc( sizeof( struct mlt_transition_s
), 1 );
1084 if ( this != NULL
&& mlt_transition_init( this, NULL
) == 0 )
1086 mlt_properties properties
= mlt_transition_properties( this );
1088 this->process
= composite_process
;
1090 // Default starting motion and zoom
1091 mlt_properties_set( properties
, "start", arg
!= NULL ? arg
: "85%,5%:10%x10%" );
1094 mlt_properties_set( properties
, "factory", "fezzik" );
1097 //mlt_properties_set_int( properties, "_MMX", composite_have_mmx() );