]> git.sesse.net Git - mlt/blob - src/framework/mlt_frame.h
Add fetching previous and next frames in producers.
[mlt] / src / framework / mlt_frame.h
1 /**
2  * \file mlt_frame.h
3  * \brief interface for all frame classes
4  * \see mlt_frame_s
5  *
6  * Copyright (C) 2003-2009 Ushodaya Enterprises Limited
7  * \author Charles Yates <charles.yates@pandora.be>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #ifndef _MLT_FRAME_H_
25 #define _MLT_FRAME_H_
26
27 #include "mlt_properties.h"
28 #include "mlt_deque.h"
29 #include "mlt_service.h"
30
31 /** Callback function to get video data.
32  *
33  */
34
35 typedef int ( *mlt_get_image )( mlt_frame self, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable );
36
37 /** Callback function to get audio data.
38  *
39  */
40
41 typedef int ( *mlt_get_audio )( mlt_frame self, void **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples );
42
43 /** \brief Frame class
44  *
45  * The frame is the primary data object that gets passed around to and through services.
46  *
47  * \extends mlt_properties
48  * \properties \em test_image set if the frame holds a "test card" image
49  * \properties \em test_audio set if the frame holds "test card" audio
50  * \properties \em _producer holds a reference to the frame's end producer
51  * \properties \em _speed the current speed of the producer that generated the frame
52  * \properties \em _position the position of the frame
53  * \properties \em meta.* holds metadata
54  * \properties \em hide set to 1 to hide the video, 2 to mute the audio
55  * \properties \em last_track a flag to indicate an end-of-tracks frame
56  * \properties \em previous \em frame a reference to the unfiltered preceding frame
57  * (no speed factor applied, only available when \em need-previous-next is set on the producer)
58  * \properties \em next \em frame a reference to the unfiltered following frame
59  * (no speed factor applied, only available when \em need-previous-next is set on the producer)
60  */
61
62 struct mlt_frame_s
63 {
64         struct mlt_properties_s parent; /**< \private A frame extends properties. */
65
66         /** Get the alpha channel (callback function).
67          * \param self a frame
68          * \return the 8-bit alpha channel
69          */
70         uint8_t * ( *get_alpha_mask )( mlt_frame self );
71
72         /** Convert the image format (callback function).
73          * \param self a frame
74          * \param[in,out] image a buffer of image data
75          * \param[in,out] input the image format of supplied image data
76          * \param output the image format to which to convert
77          * \return true if error
78          */
79         int ( *convert_image )( mlt_frame self, uint8_t **image, mlt_image_format *input, mlt_image_format output );
80
81         /** Convert the audio format (callback function).
82          * \param self a frame
83          * \param[in,out] audio a buffer of audio data
84          * \param[in,out] input the audio format of supplied data
85          * \param output the audio format to which to convert
86          * \return true if error
87          */
88         int ( *convert_audio )( mlt_frame self, void **audio, mlt_audio_format *input, mlt_audio_format output );
89
90         mlt_deque stack_image;   /**< \private the image processing stack of operations and data */
91         mlt_deque stack_audio;   /**< \private the audio processing stack of operations and data */
92         mlt_deque stack_service; /**< \private a general purpose data stack */
93 };
94
95 #define MLT_FRAME_PROPERTIES( frame )           ( &( frame )->parent )
96 #define MLT_FRAME_SERVICE_STACK( frame )        ( ( frame )->stack_service )
97 #define MLT_FRAME_IMAGE_STACK( frame )          ( ( frame )->stack_image )
98 #define MLT_FRAME_AUDIO_STACK( frame )          ( ( frame )->stack_audio )
99
100 extern mlt_frame mlt_frame_init( mlt_service service );
101 extern mlt_properties mlt_frame_properties( mlt_frame self );
102 extern int mlt_frame_is_test_card( mlt_frame self );
103 extern int mlt_frame_is_test_audio( mlt_frame self );
104 extern double mlt_frame_get_aspect_ratio( mlt_frame self );
105 extern int mlt_frame_set_aspect_ratio( mlt_frame self, double value );
106 extern mlt_position mlt_frame_get_position( mlt_frame self );
107 extern int mlt_frame_set_position( mlt_frame self, mlt_position value );
108 extern void mlt_frame_replace_image( mlt_frame self, uint8_t *image, mlt_image_format format, int width, int height );
109 extern int mlt_frame_get_image( mlt_frame self, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable );
110 extern uint8_t *mlt_frame_get_alpha_mask( mlt_frame self );
111 extern int mlt_frame_get_audio( mlt_frame self, void **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples );
112 extern int mlt_frame_set_audio( mlt_frame self, void *buffer, mlt_audio_format, int size, mlt_destructor );
113 extern unsigned char *mlt_frame_get_waveform( mlt_frame self, int w, int h );
114 extern int mlt_frame_push_get_image( mlt_frame self, mlt_get_image get_image );
115 extern mlt_get_image mlt_frame_pop_get_image( mlt_frame self );
116 extern int mlt_frame_push_frame( mlt_frame self, mlt_frame that );
117 extern mlt_frame mlt_frame_pop_frame( mlt_frame self );
118 extern int mlt_frame_push_service( mlt_frame self, void *that );
119 extern void *mlt_frame_pop_service( mlt_frame self );
120 extern int mlt_frame_push_service_int( mlt_frame self, int that );
121 extern int mlt_frame_pop_service_int( mlt_frame self );
122 extern int mlt_frame_push_audio( mlt_frame self, void *that );
123 extern void *mlt_frame_pop_audio( mlt_frame self );
124 extern mlt_deque mlt_frame_service_stack( mlt_frame self );
125 extern mlt_producer mlt_frame_get_original_producer( mlt_frame self );
126 extern void mlt_frame_close( mlt_frame self );
127
128 /* convenience functions */
129 extern int mlt_sample_calculator( float fps, int frequency, int64_t position );
130 extern int64_t mlt_sample_calculator_to_now( float fps, int frequency, int64_t position );
131 extern const char * mlt_image_format_name( mlt_image_format format );
132 extern const char * mlt_audio_format_name( mlt_audio_format format );
133
134 /** This macro scales rgb into the yuv gamut - y is scaled by 219/255 and uv by 224/255. */
135 #define RGB2YUV(r, g, b, y, u, v)\
136   y = ((263*r + 516*g + 100*b) >> 10) + 16;\
137   u = ((-152*r - 298*g + 450*b) >> 10) + 128;\
138   v = ((450*r - 377*g - 73*b) >> 10) + 128;
139
140 /** This macro assumes the user has already scaled their rgb down into the broadcast limits. **/
141 #define RGB2YUV_UNSCALED(r, g, b, y, u, v)\
142   y = (299*r + 587*g + 114*b) >> 10;\
143   u = ((-169*r - 331*g + 500*b) >> 10) + 128;\
144   v = ((500*r - 419*g - 81*b) >> 10) + 128;\
145   y = y < 16 ? 16 : y;\
146   u = u < 16 ? 16 : u;\
147   v = v < 16 ? 16 : v;\
148   y = y > 235 ? 235 : y;\
149   u = u > 240 ? 240 : u;\
150   v = v > 240 ? 240 : v
151
152 /** This macro converts a YUV value to the RGB color space. */
153 #define YUV2RGB( y, u, v, r, g, b ) \
154   r = ((1192 * ( y - 16 ) + 1634 * ( v - 128 ) ) >> 10 ); \
155   g = ((1192 * ( y - 16 ) - 832 * ( v - 128 ) - 400 * ( u - 128 ) ) >> 10 ); \
156   b = ((1192 * ( y - 16 ) + 2066 * ( u - 128 ) ) >> 10 ); \
157   r = r < 0 ? 0 : r > 255 ? 255 : r; \
158   g = g < 0 ? 0 : g > 255 ? 255 : g; \
159   b = b < 0 ? 0 : b > 255 ? 255 : b;
160
161 #endif