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