]> git.sesse.net Git - mlt/blob - src/framework/mlt_frame.h
6da256b977644965cbe047a6f8a1410763b2f149
[mlt] / src / framework / mlt_frame.h
1 /*
2  * mlt_frame.h -- 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 #ifndef _MLT_FRAME_H_
22 #define _MLT_FRAME_H_
23
24 #include "mlt_properties.h"
25 #include "mlt_deque.h"
26
27 typedef int ( *mlt_get_image )( mlt_frame self, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable );
28
29 struct mlt_frame_s
30 {
31         // We're extending properties here
32         struct mlt_properties_s parent;
33
34         // Virtual methods
35         int ( *get_audio )( mlt_frame self, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples );
36         uint8_t * ( *get_alpha_mask )( mlt_frame self );
37         
38         // Private properties
39         mlt_deque stack_image;
40         mlt_deque stack_audio;
41 };
42
43 extern mlt_frame mlt_frame_init( );
44 extern mlt_properties mlt_frame_properties( mlt_frame self );
45 extern int mlt_frame_is_test_card( mlt_frame self );
46 extern int mlt_frame_is_test_audio( mlt_frame self );
47 extern double mlt_frame_get_aspect_ratio( mlt_frame self );
48 extern int mlt_frame_set_aspect_ratio( mlt_frame self, double value );
49 extern mlt_position mlt_frame_get_position( mlt_frame self );
50 extern int mlt_frame_set_position( mlt_frame self, mlt_position value );
51 extern int mlt_frame_get_image( mlt_frame self, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable );
52 extern uint8_t *mlt_frame_get_alpha_mask( mlt_frame self );
53 extern int mlt_frame_get_audio( mlt_frame self, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples );
54 extern unsigned char *mlt_frame_get_waveform( mlt_frame self, int w, int h );
55 extern int mlt_frame_push_get_image( mlt_frame self, mlt_get_image get_image );
56 extern mlt_get_image mlt_frame_pop_get_image( mlt_frame self );
57 extern int mlt_frame_push_frame( mlt_frame self, mlt_frame that );
58 extern mlt_frame mlt_frame_pop_frame( mlt_frame self );
59 extern int mlt_frame_push_service( mlt_frame self, void *that );
60 extern void *mlt_frame_pop_service( mlt_frame self );
61 extern int mlt_frame_push_audio( mlt_frame self, void *that );
62 extern void *mlt_frame_pop_audio( mlt_frame self );
63 extern mlt_producer mlt_frame_get_original_producer( mlt_frame self );
64 extern void mlt_frame_close( mlt_frame self );
65
66 /* convenience functions */
67 extern int mlt_convert_rgb24a_to_yuv422( uint8_t *rgba, int width, int height, int stride, uint8_t *yuv, uint8_t *alpha );
68 extern int mlt_convert_rgb24_to_yuv422( uint8_t *rgb, int width, int height, int stride, uint8_t *yuv );
69 extern int mlt_convert_yuv420p_to_yuv422( uint8_t *yuv420p, int width, int height, int stride, uint8_t *yuv );
70 extern uint8_t *mlt_frame_resize_yuv422( mlt_frame self, int owidth, int oheight );
71 extern uint8_t *mlt_frame_rescale_yuv422( mlt_frame self, int owidth, int oheight );
72 extern void mlt_resize_yuv422( uint8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight );
73 extern int mlt_frame_mix_audio( mlt_frame self, mlt_frame that, float weight_start, float weight_end, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples  );
74 extern int mlt_sample_calculator( float fps, int frequency, int64_t position );
75
76 /* this macro scales rgb into the yuv gamut, y is scaled by 219/255 and uv by 224/255 */
77 #define RGB2YUV(r, g, b, y, u, v)\
78   y = ((257*r + 504*g + 98*b) >> 10) + 16;\
79   u = ((-148*r - 291*g + 439*b) >> 10) + 128;\
80   v = ((439*r - 368*g - 71*b) >> 10) + 128;\
81   y = y < 16 ? 16 : y;\
82   u = u < 16 ? 16 : u;\
83   v = v < 16 ? 16 : v;\
84   y = y > 235 ? 235 : y;\
85   u = u > 240 ? 240 : u;\
86   v = v > 240 ? 240 : v
87
88 /* this macro assumes the user has already scaled their rgb down into the broadcast limits */
89 #define RGB2YUV_UNSCALED(r, g, b, y, u, v)\
90   y = (299*r + 587*g + 114*b) >> 10;\
91   u = ((-169*r - 331*g + 500*b) >> 10) + 128;\
92   v = ((500*r - 419*g - 81*b) >> 10) + 128;\
93   y = y < 16 ? 16 : y;\
94   u = u < 16 ? 16 : u;\
95   v = v < 16 ? 16 : v;\
96   y = y > 235 ? 235 : y;\
97   u = u > 240 ? 240 : u;\
98   v = v > 240 ? 240 : v
99
100 #endif