add TODO
[melted] / mlt / src / modules / dv / consumer_libdv.c
1 /*
2 * producer_libdv.c -- a DV encoder based on libdv
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 // Local header files
22 #include "consumer_libdv.h"
23
24 // mlt Header files
25 #include <framework/mlt_frame.h>
26
27 // System header files
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <pthread.h>
32
33 // libdv header files
34 #include <libdv/dv.h>
35
36 // Forward references.
37 static int consumer_start( mlt_consumer this );
38 static int consumer_stop( mlt_consumer this );
39 static int consumer_is_stopped( mlt_consumer this );
40 static int consumer_encode_video( mlt_consumer this, uint8_t *dv_frame, mlt_frame frame );
41 static void consumer_encode_audio( mlt_consumer this, uint8_t *dv_frame, mlt_frame frame );
42 static void consumer_output( mlt_consumer this, uint8_t *dv_frame, int size, mlt_frame frame );
43 static void *consumer_thread( void *arg );
44 static void consumer_close( mlt_consumer this );
45
46 /** Initialise the dv consumer.
47 */
48
49 mlt_consumer consumer_libdv_init( char *arg )
50 {
51 // Allocate the consumer
52 mlt_consumer this = calloc( 1, sizeof( struct mlt_consumer_s ) );
53
54 // If memory allocated and initialises without error
55 if ( this != NULL && mlt_consumer_init( this, NULL ) == 0 )
56 {
57 // Get properties from the consumer
58 mlt_properties properties = mlt_consumer_properties( this );
59
60 // Assign close callback
61 this->close = consumer_close;
62
63 // Interpret the constructor argument
64 if ( arg == NULL || !strcmp( arg, "PAL" ) )
65 mlt_properties_set_double( properties, "fps", 25 );
66 else
67 mlt_properties_set_double( properties, "fps", 29.97 );
68
69 // Set the encode and output handling method
70 mlt_properties_set_data( properties, "video", consumer_encode_video, 0, NULL, NULL );
71 mlt_properties_set_data( properties, "audio", consumer_encode_audio, 0, NULL, NULL );
72 mlt_properties_set_data( properties, "output", consumer_output, 0, NULL, NULL );
73
74 // Set up start/stop/terminated callbacks
75 this->start = consumer_start;
76 this->stop = consumer_stop;
77 this->is_stopped = consumer_is_stopped;
78 }
79 else
80 {
81 // Clean up in case of init failure
82 free( this );
83 this = NULL;
84 }
85
86 // Return this
87 return this;
88 }
89
90 /** Start the consumer.
91 */
92
93 static int consumer_start( mlt_consumer this )
94 {
95 // Get the properties
96 mlt_properties properties = mlt_consumer_properties( this );
97
98 // Check that we're not already running
99 if ( !mlt_properties_get_int( properties, "running" ) )
100 {
101 // Allocate a thread
102 pthread_t *thread = calloc( 1, sizeof( pthread_t ) );
103
104 // Assign the thread to properties
105 mlt_properties_set_data( properties, "thread", thread, sizeof( pthread_t ), free, NULL );
106
107 // Set the running state
108 mlt_properties_set_int( properties, "running", 1 );
109
110 // Create the thread
111 pthread_create( thread, NULL, consumer_thread, this );
112 }
113 return 0;
114 }
115
116 /** Stop the consumer.
117 */
118
119 static int consumer_stop( mlt_consumer this )
120 {
121 // Get the properties
122 mlt_properties properties = mlt_consumer_properties( this );
123
124 // Check that we're running
125 if ( mlt_properties_get_int( properties, "running" ) )
126 {
127 // Get the thread
128 pthread_t *thread = mlt_properties_get_data( properties, "thread", NULL );
129
130 // Stop the thread
131 mlt_properties_set_int( properties, "running", 0 );
132
133 // Wait for termination
134 pthread_join( *thread, NULL );
135 }
136
137 return 0;
138 }
139
140 /** Determine if the consumer is stopped.
141 */
142
143 static int consumer_is_stopped( mlt_consumer this )
144 {
145 // Get the properties
146 mlt_properties properties = mlt_consumer_properties( this );
147 return !mlt_properties_get_int( properties, "running" );
148 }
149
150 /** Get or create a new libdv encoder.
151 */
152
153 static dv_encoder_t *libdv_get_encoder( mlt_consumer this, mlt_frame frame )
154 {
155 // Get the properties of the consumer
156 mlt_properties this_properties = mlt_consumer_properties( this );
157
158 // Obtain the dv_encoder
159 dv_encoder_t *encoder = mlt_properties_get_data( this_properties, "dv_encoder", NULL );
160
161 // Construct one if we don't have one
162 if ( encoder == NULL )
163 {
164 // Get the fps of the consumer (for now - should be from frame)
165 double fps = mlt_properties_get_double( this_properties, "fps" );
166
167 // Create the encoder
168 encoder = dv_encoder_new( 0, 0, 0 );
169
170 // Encoder settings
171 encoder->isPAL = fps == 25;
172 encoder->is16x9 = 0;
173 encoder->vlc_encode_passes = 1;
174 encoder->static_qno = 0;
175 encoder->force_dct = DV_DCT_AUTO;
176
177 // Store the encoder on the properties
178 mlt_properties_set_data( this_properties, "dv_encoder", encoder, 0, ( mlt_destructor )dv_encoder_free, NULL );
179
180 // Convenience for image dimensions
181 mlt_properties_set_int( this_properties, "width", 720 );
182 mlt_properties_set_int( this_properties, "height", fps == 25 ? 576 : 480 );
183 }
184
185 // Return the encoder
186 return encoder;
187 }
188
189
190 /** The libdv encode video method.
191 */
192
193 static int consumer_encode_video( mlt_consumer this, uint8_t *dv_frame, mlt_frame frame )
194 {
195 // Obtain the dv_encoder
196 dv_encoder_t *encoder = libdv_get_encoder( this, frame );
197
198 // Get the properties of the consumer
199 mlt_properties this_properties = mlt_consumer_properties( this );
200
201 // This will hold the size of the dv frame
202 int size = 0;
203
204 // determine if this a test card
205 int is_test = mlt_frame_is_test_card( frame );
206
207 // If we get an encoder, then encode the image
208 if ( encoder != NULL )
209 {
210 // Specify desired image properties
211 mlt_image_format fmt = mlt_image_yuv422;
212 int width = mlt_properties_get_int( this_properties, "width" );
213 int height = mlt_properties_get_int( this_properties, "height" );
214 uint8_t *image = NULL;
215
216 // Get the image
217 mlt_frame_get_image( frame, &image, &fmt, &width, &height, 0 );
218
219 // Check that we get what we expected
220 if ( fmt != mlt_image_yuv422 ||
221 width != mlt_properties_get_int( this_properties, "width" ) ||
222 height != mlt_properties_get_int( this_properties, "height" ) ||
223 image == NULL )
224 {
225 // We should try to recover here
226 fprintf( stderr, "We have a problem houston...\n" );
227 }
228 else
229 {
230 // Calculate the size of the dv frame
231 size = height == 576 ? frame_size_625_50 : frame_size_525_60;
232 }
233
234 // Process the frame
235 if ( size != 0 && !( mlt_properties_get_int( this_properties, "was_test_card" ) && is_test ) )
236 {
237 // Encode the image
238 dv_encode_full_frame( encoder, &image, e_dv_color_yuv, dv_frame );
239
240 // Note test card status
241 mlt_properties_set_int( this_properties, "was_test_card", is_test );
242 }
243 }
244
245 return size;
246 }
247
248 /** The libdv encode audio method.
249 */
250
251 static void consumer_encode_audio( mlt_consumer this, uint8_t *dv_frame, mlt_frame frame )
252 {
253 // Get the properties of the consumer
254 mlt_properties this_properties = mlt_consumer_properties( this );
255
256 // Obtain the dv_encoder
257 dv_encoder_t *encoder = libdv_get_encoder( this, frame );
258
259 // Only continue if we have an encoder
260 if ( encoder != NULL )
261 {
262 // Get the frame count
263 int count = mlt_properties_get_int( this_properties, "count" );
264
265 // Default audio args
266 mlt_audio_format fmt = mlt_audio_pcm;
267 int channels = 2;
268 int frequency = 48000;
269 int samples = mlt_sample_calculator( mlt_properties_get_double( this_properties, "fps" ), frequency, count );
270 int16_t *pcm = NULL;
271
272 // Get the frame number
273 time_t start = time( NULL );
274 int height = mlt_properties_get_int( this_properties, "height" );
275 int is_pal = height == 576;
276 int is_wide = 0;
277
278 // Temporary - audio buffer allocation
279 int16_t *audio_buffers[ 4 ];
280 int i = 0;
281 int j = 0;
282 for ( i = 0 ; i < 4; i ++ )
283 audio_buffers[ i ] = malloc( 2 * DV_AUDIO_MAX_SAMPLES );
284
285 // Get the audio
286 mlt_frame_get_audio( frame, &pcm, &fmt, &frequency, &channels, &samples );
287
288 // Inform the encoder of the number of audio samples
289 encoder->samples_this_frame = samples;
290
291 // Fill the audio buffers correctly
292 for ( i = 0; i < samples; i ++ )
293 for ( j = 0; j < channels; j++ )
294 audio_buffers[ j ][ i ] = *pcm ++;
295
296 // Encode audio on frame
297 dv_encode_full_audio( encoder, audio_buffers, channels, frequency, dv_frame );
298
299 // Specify meta data on the frame
300 dv_encode_metadata( dv_frame, is_pal, is_wide, &start, count );
301 dv_encode_timecode( dv_frame, is_pal, count );
302
303 // Update properties
304 mlt_properties_set_int( this_properties, "count", ++ count );
305
306 // Temporary - free audio buffers
307 for ( i = 0 ; i < 4; i ++ )
308 free( audio_buffers[ i ] );
309 }
310 }
311
312 /** The libdv output method.
313 */
314
315 static void consumer_output( mlt_consumer this, uint8_t *dv_frame, int size, mlt_frame frame )
316 {
317 fwrite( dv_frame, size, 1, stdout );
318 fflush( stdout );
319 }
320
321 /** The main thread - the argument is simply the consumer.
322 */
323
324 static void *consumer_thread( void *arg )
325 {
326 // Map the argument to the object
327 mlt_consumer this = arg;
328
329 // Get the properties
330 mlt_properties properties = mlt_consumer_properties( this );
331
332 // Get the handling methods
333 int ( *video )( mlt_consumer, uint8_t *, mlt_frame ) = mlt_properties_get_data( properties, "video", NULL );
334 int ( *audio )( mlt_consumer, uint8_t *, mlt_frame ) = mlt_properties_get_data( properties, "audio", NULL );
335 int ( *output )( mlt_consumer, uint8_t *, int, mlt_frame ) = mlt_properties_get_data( properties, "output", NULL );
336
337 // Allocate a single PAL frame for encoding
338 uint8_t *dv_frame = malloc( frame_size_625_50 );
339
340 // Get the service associated to the consumer
341 mlt_service service = mlt_consumer_service( this );
342
343 // Define a frame pointer
344 mlt_frame frame;
345
346 // Loop while running
347 while( mlt_properties_get_int( properties, "running" ) )
348 {
349 // Get the frame
350 if ( mlt_service_get_frame( service, &frame, 0 ) == 0 )
351 {
352 // Obtain the dv_encoder
353 if ( libdv_get_encoder( this, frame ) != NULL )
354 {
355 // Encode the image
356 int size = video( this, dv_frame, frame );
357
358 // Encode the audio
359 if ( size > 0 )
360 audio( this, dv_frame, frame );
361
362 // Output the frame
363 output( this, dv_frame, size, frame );
364
365 // Close the frame
366 mlt_frame_close( frame );
367 }
368 else
369 {
370 fprintf( stderr, "Unable to obtain dv encoder.\n" );
371 }
372 }
373 }
374
375 // Tidy up
376 free( dv_frame );
377
378 return NULL;
379 }
380
381 /** Close the consumer.
382 */
383
384 static void consumer_close( mlt_consumer this )
385 {
386 // Stop the consumer
387 mlt_consumer_stop( this );
388
389 // Close the parent
390 mlt_consumer_close( this );
391
392 // Free the memory
393 free( this );
394 }
395