]> git.sesse.net Git - mlt/blob - src/modules/core/producer_consumer.c
Only do channelcopy/swap if there is valid work.
[mlt] / src / modules / core / producer_consumer.c
1 /*
2  * producer_consumer.c -- produce as a consumer of an encapsulated producer
3  * Copyright (C) 2008 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <framework/mlt.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <math.h>
26 #include <string.h>
27
28 struct context_s {
29         mlt_producer this;
30         mlt_producer producer;
31         mlt_consumer consumer;
32         mlt_profile profile;
33         int is_close_profile;
34 };
35 typedef struct context_s *context; 
36
37
38 static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
39 {
40         context cx = mlt_frame_pop_service( frame );
41         mlt_frame nested_frame = mlt_frame_pop_service( frame );
42
43         *width = cx->profile->width;
44         *height = cx->profile->height;
45
46         int result = mlt_frame_get_image( nested_frame, image, format, width, height, writable );
47
48         // Allocate the image
49         int size = *width * *height * ( *format == mlt_image_yuv422 ? 2 : *format == mlt_image_rgb24 ? 3 :
50                 ( *format == mlt_image_rgb24a || *format == mlt_image_opengl ) ? 4 : ( 3 / 2 ) );
51         uint8_t *new_image = mlt_pool_alloc( size );
52
53         // Update the frame
54         mlt_properties properties = mlt_frame_properties( frame );
55         mlt_properties_set_data( properties, "image", new_image, size, mlt_pool_release, NULL );
56         memcpy( new_image, *image, size );
57         mlt_properties_set( properties, "progressive", mlt_properties_get( MLT_FRAME_PROPERTIES(nested_frame), "progressive" ) );
58         *image = new_image;
59
60         return result;
61 }
62
63 static int get_audio( mlt_frame frame, void **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
64 {
65         mlt_frame nested_frame = mlt_frame_pop_audio( frame );
66         int result = mlt_frame_get_audio( nested_frame, buffer, format, frequency, channels, samples );
67         int size = *channels * *samples;
68
69         switch ( *format )
70         {
71                 case mlt_audio_s16:
72                         size *= sizeof( int16_t );
73                         break;
74                 case mlt_audio_s32:
75                         size *= sizeof( int32_t );
76                 case mlt_audio_float:
77                         size *= sizeof( float );
78                 default:
79                         mlt_log_error( NULL, "[producer consumer] Invalid audio format\n" );
80         }
81         int16_t *new_buffer = mlt_pool_alloc( size );
82         mlt_properties_set_data( MLT_FRAME_PROPERTIES( frame ), "audio", new_buffer, size, mlt_pool_release, NULL );
83         memcpy( new_buffer, *buffer, size );
84         *buffer = new_buffer;
85
86         return result;
87 }
88
89 static int get_frame( mlt_producer this, mlt_frame_ptr frame, int index )
90 {
91         mlt_properties properties = MLT_PRODUCER_PROPERTIES(this);
92         context cx = mlt_properties_get_data( properties, "context", NULL );
93
94         if ( !cx )
95         {
96                 // Allocate and initialize our context
97                 cx = mlt_pool_alloc( sizeof( struct context_s ) );
98                 mlt_properties_set_data( properties, "context", cx, 0, mlt_pool_release, NULL );
99                 cx->this = this;
100                 char *profile_name = mlt_properties_get( properties, "profile" );
101                 mlt_profile profile = mlt_service_profile( MLT_PRODUCER_SERVICE( this ) );
102
103                 if ( profile_name )
104                 {
105                         cx->profile = mlt_profile_init( profile_name );
106                         cx->is_close_profile = 1;
107                 }
108                 else
109                 {
110                         cx->profile = profile;
111                         cx->is_close_profile = 0;
112                 }
113
114                 // For now, we must conform the nested network's frame rate to the parent network's
115                 // framerate.
116                 cx->profile->frame_rate_num = profile->frame_rate_num;
117                 cx->profile->frame_rate_den = profile->frame_rate_den;
118
119                 // We will encapsulate a consumer
120                 cx->consumer = mlt_consumer_new( cx->profile );
121                 // Do not use _pass_list on real_time so that it defaults to 0 in the absence of
122                 // an explicit real_time property.
123                 mlt_properties_set_int( MLT_CONSUMER_PROPERTIES( cx->consumer ), "real_time",
124                         mlt_properties_get_int( properties, "real_time" ) );
125                 mlt_properties_pass_list( MLT_CONSUMER_PROPERTIES( cx->consumer ), properties,
126                         "buffer, prefill, deinterlace_method, rescale" );
127         
128                 // Encapsulate a real producer for the resource
129                 cx->producer = mlt_factory_producer( cx->profile, NULL,
130                         mlt_properties_get( properties, "resource" ) );
131                 mlt_properties_pass_list( properties, MLT_PRODUCER_PROPERTIES( cx->producer ),
132                         "out, length" );
133
134                 // Since we control the seeking, prevent it from seeking on its own
135                 mlt_producer_set_speed( cx->producer, 0 );
136
137                 // Connect it all together
138                 mlt_consumer_connect( cx->consumer, MLT_PRODUCER_SERVICE( cx->producer ) );
139                 mlt_consumer_start( cx->consumer );
140         }
141
142         // Generate a frame
143         *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( this ) );
144         if ( frame )
145         {
146                 // Our "in" needs to be the same, keep it so
147                 mlt_properties_pass_list( MLT_PRODUCER_PROPERTIES( cx->producer ), properties, "in, out" );
148
149                 // Seek the producer to the correct place
150                 // Calculate our positions
151                 double actual_position = mlt_producer_get_speed( this ) * (double)mlt_producer_position( this );
152                 mlt_position need_first = floor( actual_position );
153                 mlt_producer_seek( cx->producer, need_first );
154                 
155                 // Get the nested frame
156                 mlt_frame nested_frame = mlt_consumer_rt_frame( cx->consumer );
157
158                 // Stack the producer and our methods on the nested frame
159                 mlt_frame_push_service( *frame, nested_frame );
160                 mlt_frame_push_service( *frame, cx );
161                 mlt_frame_push_get_image( *frame, get_image );
162                 mlt_frame_push_audio( *frame, nested_frame );
163                 mlt_frame_push_audio( *frame, get_audio );
164                 
165                 // Give the returned frame temporal identity
166                 mlt_frame_set_position( *frame, mlt_producer_position( this ) );
167                 
168                 // Store the nested frame on the produced frame for destruction
169                 mlt_properties frame_props = MLT_FRAME_PROPERTIES( *frame );
170                 mlt_properties_set_data( frame_props, "_producer_consumer.frame", nested_frame, 0, (mlt_destructor) mlt_frame_close, NULL );
171
172                 // Inform the normalizers about our video properties
173                 mlt_properties_set_double( frame_props, "aspect_ratio", mlt_profile_sar( cx->profile ) );
174                 mlt_properties_set_int( frame_props, "width", cx->profile->width );
175                 mlt_properties_set_int( frame_props, "height", cx->profile->height );
176                 mlt_properties_set_int( frame_props, "real_width", cx->profile->width );
177                 mlt_properties_set_int( frame_props, "real_height", cx->profile->height );
178                 mlt_properties_set_int( frame_props, "progressive", cx->profile->progressive );
179         }
180
181         // Calculate the next timecode
182         mlt_producer_prepare_next( this );
183
184         return 0;
185 }
186
187 static void producer_close( mlt_producer this )
188 {
189         context cx = mlt_properties_get_data( MLT_PRODUCER_PROPERTIES( this ), "context", NULL );
190         
191         // Shut down all the encapsulated services
192         if ( cx )
193         {
194                 mlt_consumer_stop( cx->consumer );
195                 mlt_consumer_close( cx->consumer );
196                 mlt_producer_close( cx->producer );
197                 if ( cx->is_close_profile )
198                         mlt_profile_close( cx->profile );
199         }
200         
201         this->close = NULL;
202         mlt_producer_close( this );
203         free( this );
204 }
205
206 mlt_producer producer_consumer_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
207 {
208         mlt_producer this = mlt_producer_new( );
209
210         // Encapsulate the real producer
211         mlt_producer real_producer = mlt_factory_producer( profile, NULL, arg );
212
213         if ( this && real_producer )
214         {
215                 // Override some producer methods
216                 this->close = ( mlt_destructor )producer_close;
217                 this->get_frame = get_frame;
218                 
219                 // Get the properties of this producer
220                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
221                 mlt_properties_set( properties, "resource", arg );
222                 mlt_properties_pass_list( properties, MLT_PRODUCER_PROPERTIES( real_producer ), "out, length" );
223
224                 // Done with the producer - will re-open later when we have the profile property
225                 mlt_producer_close( real_producer );
226         }
227         else
228         {
229                 if ( this )
230                         mlt_producer_close( this );
231                 if ( real_producer )
232                         mlt_producer_close( real_producer );
233
234                 this = NULL;
235         }
236         return this;
237 }