]> git.sesse.net Git - mlt/blob - mlt/src/framework/mlt_frame.c
9c9eac14879b9e70de694267b2d3d121b9fb1239
[mlt] / mlt / src / framework / mlt_frame.c
1 /*
2  * mlt_frame.c -- interface for all frame classes
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
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 "config.h"
22 #include "mlt_frame.h"
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 typedef struct
28 {
29         mlt_image_format vfmt;
30         int width;
31         int height;
32         uint8_t *image;
33         uint8_t *alpha;
34         mlt_audio_format afmt;
35         int16_t *audio;
36 }
37 frame_test;
38
39 static frame_test test_card = { mlt_image_none, 0, 0, NULL, NULL, mlt_audio_none, NULL };
40
41 /** Constructor for a frame.
42 */
43
44 mlt_frame mlt_frame_init( )
45 {
46         // Allocate a frame
47         mlt_frame this = calloc( sizeof( struct mlt_frame_s ), 1 );
48
49         if ( this != NULL )
50         {
51                 // Initialise the properties
52                 mlt_properties properties = &this->parent;
53                 mlt_properties_init( properties, this );
54
55                 // Set default properties on the frame
56                 mlt_properties_set_timecode( properties, "timecode", 0.0 );
57                 mlt_properties_set_data( properties, "image", NULL, 0, NULL, NULL );
58                 mlt_properties_set_int( properties, "width", 720 );
59                 mlt_properties_set_int( properties, "height", 576 );
60                 mlt_properties_set_double( properties, "aspect_ratio", 4.0 / 3.0 );
61                 mlt_properties_set_data( properties, "audio", NULL, 0, NULL, NULL );
62                 mlt_properties_set_data( properties, "alpha", NULL, 0, NULL, NULL );
63         }
64         return this;
65 }
66
67 /** Fetch the frames properties.
68 */
69
70 mlt_properties mlt_frame_properties( mlt_frame this )
71 {
72         return &this->parent;
73 }
74
75 /** Check if we have a way to derive something other than a test card.
76 */
77
78 int mlt_frame_is_test_card( mlt_frame this )
79 {
80         return this->stack_get_image_size == 0;
81 }
82
83 /** Get the aspect ratio of the frame.
84 */
85
86 double mlt_frame_get_aspect_ratio( mlt_frame this )
87 {
88         mlt_properties properties = mlt_frame_properties( this );
89         return mlt_properties_get_double( properties, "aspect_ratio" );
90 }
91
92 /** Set the aspect ratio of the frame.
93 */
94
95 int mlt_frame_set_aspect_ratio( mlt_frame this, double value )
96 {
97         mlt_properties properties = mlt_frame_properties( this );
98         return mlt_properties_set_double( properties, "aspect_ratio", value );
99 }
100
101 /** Get the timecode of this frame.
102 */
103
104 mlt_timecode mlt_frame_get_timecode( mlt_frame this )
105 {
106         mlt_properties properties = mlt_frame_properties( this );
107         return mlt_properties_get_timecode( properties, "timecode" );
108 }
109
110 /** Set the timecode of this frame.
111 */
112
113 int mlt_frame_set_timecode( mlt_frame this, mlt_timecode value )
114 {
115         mlt_properties properties = mlt_frame_properties( this );
116         return mlt_properties_set_timecode( properties, "timecode", value );
117 }
118
119 /** Stack a get_image callback.
120 */
121
122 int mlt_frame_push_get_image( mlt_frame this, mlt_get_image get_image )
123 {
124         int ret = this->stack_get_image_size >= 10;
125         if ( ret == 0 )
126                 this->stack_get_image[ this->stack_get_image_size ++ ] = get_image;
127         return ret;
128 }
129
130 /** Pop a get_image callback.
131 */
132
133 mlt_get_image mlt_frame_pop_get_image( mlt_frame this )
134 {
135         mlt_get_image result = NULL;
136         if ( this->stack_get_image_size > 0 )
137                 result = this->stack_get_image[ -- this->stack_get_image_size ];
138         return result;
139 }
140
141 /** Push a frame.
142 */
143
144 int mlt_frame_push_frame( mlt_frame this, mlt_frame that )
145 {
146         int ret = this->stack_frame_size >= 10;
147         if ( ret == 0 )
148                 this->stack_frame[ this->stack_frame_size ++ ] = that;
149         return ret;
150 }
151
152 /** Pop a frame.
153 */
154
155 mlt_frame mlt_frame_pop_frame( mlt_frame this )
156 {
157         mlt_frame result = NULL;
158         if ( this->stack_frame_size > 0 )
159                 result = this->stack_frame[ -- this->stack_frame_size ];
160         return result;
161 }
162
163 int mlt_frame_get_image( mlt_frame this, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
164 {
165         mlt_properties properties = mlt_frame_properties( this );
166         mlt_get_image get_image = mlt_frame_pop_get_image( this );
167         
168         if ( get_image != NULL )
169         {
170                 return get_image( this, buffer, format, width, height, writable );
171         }
172         else if ( mlt_properties_get_data( properties, "image", NULL ) != NULL )
173         {
174                 *format = mlt_image_yuv422;
175                 *buffer = mlt_properties_get_data( properties, "image", NULL );
176                 *width = mlt_properties_get_int( properties, "width" );
177                 *height = mlt_properties_get_int( properties, "height" );
178         }
179         else
180         {
181                 if ( test_card.vfmt != *format )
182                 {
183                         uint8_t *p;
184                         uint8_t *q;
185                         
186                         test_card.vfmt = *format;
187                         test_card.width = 720;
188                         test_card.height = 576;
189
190                         switch( *format )
191                         {
192                                 case mlt_image_none:
193                                         break;
194                                 case mlt_image_rgb24:
195                                         test_card.image = realloc( test_card.image, test_card.width * test_card.height * 3 );
196                                         memset( test_card.image, 255, test_card.width * test_card.height * 3 );
197                                         break;
198                                 case mlt_image_rgb24a:
199                                         test_card.image = realloc( test_card.image, test_card.width * test_card.height * 4 );
200                                         memset( test_card.image, 255, test_card.width * test_card.height * 4 );
201                                         break;
202                                 case mlt_image_yuv422:
203                                         test_card.image = realloc( test_card.image, test_card.width * test_card.height * 2 );
204                                         p = test_card.image;
205                                         q = test_card.image + test_card.width * test_card.height * 2;
206                                         while ( p != q )
207                                         {
208                                                 *p ++ = 255;
209                                                 *p ++ = 128;
210                                         }
211                                         break;
212                                 case mlt_image_yuv420p:
213                                         test_card.image = realloc( test_card.image, test_card.width * test_card.height * 3 / 2 );
214                                         memset( test_card.image, 255, test_card.width * test_card.height * 3 / 2 );
215                                         break;
216                         }
217                 }
218
219                 *width = test_card.width;
220                 *height = test_card.height;
221                 *buffer = test_card.image;
222         }
223
224         return 0;
225 }
226
227 uint8_t *mlt_frame_get_alpha_mask( mlt_frame this )
228 {
229         if ( this->get_alpha_mask != NULL )
230                 return this->get_alpha_mask( this );
231         return test_card.alpha;
232 }
233
234 int mlt_frame_get_audio( mlt_frame this, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
235 {
236         if ( this->get_audio != NULL )
237         {
238                 return this->get_audio( this, buffer, format, frequency, channels, samples );
239         }
240         else
241         {
242                 if ( test_card.afmt != *format )
243                 {
244                         test_card.afmt = *format;
245                         test_card.audio = realloc( test_card.audio, 1920 * 2 * sizeof( int16_t ) );
246                         memset( test_card.audio, 0, 1920 * 2 * sizeof( int16_t ) );
247                 }
248                 
249                 *buffer = test_card.audio;
250                 *frequency = 48000;
251                 *channels = 2;
252                 *samples = 1920;
253         }
254         return 0;
255 }
256
257 void mlt_frame_close( mlt_frame this )
258 {
259         mlt_frame frame = mlt_frame_pop_frame( this );
260         
261         while ( frame != NULL )
262         {
263                 mlt_frame_close( frame);
264                 frame = mlt_frame_pop_frame( this );
265         }
266         
267         mlt_properties_close( &this->parent );
268
269         free( this );
270 }
271
272 /***** convenience functions *****/
273 #define RGB2YUV(r, g, b, y, u, v)\
274   y = (306*r + 601*g + 117*b)  >> 10;\
275   u = ((-172*r - 340*g + 512*b) >> 10)  + 128;\
276   v = ((512*r - 429*g - 83*b) >> 10) + 128;\
277   y = y < 0 ? 0 : y;\
278   u = u < 0 ? 0 : u;\
279   v = v < 0 ? 0 : v;\
280   y = y > 255 ? 255 : y;\
281   u = u > 255 ? 255 : u;\
282   v = v > 255 ? 255 : v
283
284 int mlt_convert_rgb24a_to_yuv422( uint8_t *rgba, int width, int height, int stride, uint8_t *yuv, uint8_t *alpha )
285 {
286         int ret = 0;
287         register int y0, y1, u0, u1, v0, v1;
288         register int r, g, b;
289         register uint8_t *d = yuv;
290         register int i, j;
291
292         for ( i = 0; i < height; i++ )
293         {
294                 register uint8_t *s = rgba + ( stride * i );
295                 for ( j = 0; j < ( width / 2 ); j++ )
296                 {
297                         r = *s++;
298                         g = *s++;
299                         b = *s++;
300                         *alpha++ = *s++;
301                         RGB2YUV (r, g, b, y0, u0 , v0);
302                         r = *s++;
303                         g = *s++;
304                         b = *s++;
305                         *alpha++ = *s++;
306                         RGB2YUV (r, g, b, y1, u1 , v1);
307                         *d++ = y0;
308                         *d++ = (u0+u1) >> 1;
309                         *d++ = y1;
310                         *d++ = (v0+v1) >> 1;
311                 }
312         }
313         return ret;
314 }
315
316 int mlt_convert_rgb24_to_yuv422( uint8_t *rgb, int width, int height, int stride, uint8_t *yuv )
317 {
318         int ret = 0;
319         register int y0, y1, u0, u1, v0, v1;
320         register int r, g, b;
321         register uint8_t *d = yuv;
322         register int i, j;
323
324         for ( i = 0; i < height; i++ )
325         {
326                 register uint8_t *s = rgb + ( stride * i );
327                 for ( j = 0; j < ( width / 2 ); j++ )
328                 {
329                         r = *s++;
330                         g = *s++;
331                         b = *s++;
332                         RGB2YUV (r, g, b, y0, u0 , v0);
333                         r = *s++;
334                         g = *s++;
335                         b = *s++;
336                         RGB2YUV (r, g, b, y1, u1 , v1);
337                         *d++ = y0;
338                         *d++ = (u0+u1) >> 1;
339                         *d++ = y1;
340                         *d++ = (v0+v1) >> 1;
341                 }
342         }
343         return ret;
344 }
345
346 int mlt_frame_composite_yuv( mlt_frame this, mlt_frame that, int x, int y, float weight )
347 {
348         int ret = 0;
349         int x_start = 0;
350         int width_src, height_src;
351         int width_dest, height_dest;
352         mlt_image_format format_src, format_dest;
353         uint8_t *p_src, *p_dest;
354         int x_end;
355         int i, j;
356         int stride_src;
357         int stride_dest;
358
359         format_src = mlt_image_yuv422;
360         format_dest = mlt_image_yuv422;
361         
362         mlt_frame_get_image( this, &p_dest, &format_dest, &width_dest, &height_dest, 1 /* writable */ );
363         mlt_frame_get_image( that, &p_src, &format_src, &width_src, &height_src, 0 /* writable */ );
364         
365         x_end = width_src;
366         
367         stride_src = width_src * 2;
368         stride_dest = width_dest * 2;
369         uint8_t *lower = p_dest;
370         uint8_t *upper = p_dest + height_dest * stride_dest;
371
372         p_dest += ( y * stride_dest ) + ( x * 2 );
373
374         if ( x < 0 )
375         {
376                 x_start = -x;
377                 x_end += x_start;
378         }
379
380         uint8_t *z = mlt_frame_get_alpha_mask( that );
381
382         for ( i = 0; i < height_src; i++ )
383         {
384                 uint8_t *p = p_src;
385                 uint8_t *q = p_dest;
386                 uint8_t *o = p_dest;
387
388                 for ( j = 0; j < width_src; j ++ )
389                 {
390                         if ( q >= lower && q < upper && j >= x_start && j < x_end )
391                         {
392                                 uint8_t y = *p ++;
393                                 uint8_t uv = *p ++;
394                                 uint8_t a = ( z == NULL ) ? 255 : *z ++;
395                                 float value = ( weight * ( float ) a / 255.0 );
396                                 *o ++ = (uint8_t)( y * value + *q++ * ( 1 - value ) );
397                                 *o ++ = (uint8_t)( uv * value + *q++ * ( 1 - value ) );
398                         }
399                         else
400                         {
401                                 p += 2;
402                                 o += 2;
403                                 q += 2;
404                                 if ( z != NULL )
405                                         z += 1;
406                         }
407                 }
408
409                 p_src += stride_src;
410                 p_dest += stride_dest;
411         }
412
413         return ret;
414 }
415