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