brought by a bunny
[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 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 if ( mlt_properties_get_int( mlt_frame_properties( frame ), "top_field_first" ) == 0 )
238 image += width * 2;
239
240 // Encode the image
241 dv_encode_full_frame( encoder, &image, e_dv_color_yuv, dv_frame );
242
243 // Note test card status
244 mlt_properties_set_int( this_properties, "was_test_card", is_test );
245 }
246 }
247
248 return size;
249 }
250
251 /** The libdv encode audio method.
252 */
253
254 static void consumer_encode_audio( mlt_consumer this, uint8_t *dv_frame, mlt_frame frame )
255 {
256 // Get the properties of the consumer
257 mlt_properties this_properties = mlt_consumer_properties( this );
258
259 // Obtain the dv_encoder
260 dv_encoder_t *encoder = libdv_get_encoder( this, frame );
261
262 // Only continue if we have an encoder
263 if ( encoder != NULL )
264 {
265 // Get the frame count
266 int count = mlt_properties_get_int( this_properties, "count" );
267
268 // Default audio args
269 mlt_audio_format fmt = mlt_audio_pcm;
270 int channels = 2;
271 int frequency = 48000;
272 int samples = mlt_sample_calculator( mlt_properties_get_double( this_properties, "fps" ), frequency, count );
273 int16_t *pcm = NULL;
274
275 // Get the frame number
276 time_t start = time( NULL );
277 int height = mlt_properties_get_int( this_properties, "height" );
278 int is_pal = height == 576;
279 int is_wide = 0;
280
281 // Temporary - audio buffer allocation
282 int16_t *audio_buffers[ 4 ];
283 int i = 0;
284 int j = 0;
285 for ( i = 0 ; i < 4; i ++ )
286 audio_buffers[ i ] = malloc( 2 * DV_AUDIO_MAX_SAMPLES );
287
288 // Get the audio
289 mlt_frame_get_audio( frame, &pcm, &fmt, &frequency, &channels, &samples );
290
291 // Inform the encoder of the number of audio samples
292 encoder->samples_this_frame = samples;
293
294 // Fill the audio buffers correctly
295 for ( i = 0; i < samples; i ++ )
296 for ( j = 0; j < channels; j++ )
297 audio_buffers[ j ][ i ] = *pcm ++;
298
299 // Encode audio on frame
300 dv_encode_full_audio( encoder, audio_buffers, channels, frequency, dv_frame );
301
302 // Specify meta data on the frame
303 dv_encode_metadata( dv_frame, is_pal, is_wide, &start, count );
304 dv_encode_timecode( dv_frame, is_pal, count );
305
306 // Update properties
307 mlt_properties_set_int( this_properties, "count", ++ count );
308
309 // Temporary - free audio buffers
310 for ( i = 0 ; i < 4; i ++ )
311 free( audio_buffers[ i ] );
312 }
313 }
314
315 /** The libdv output method.
316 */
317
318 static void consumer_output( mlt_consumer this, uint8_t *dv_frame, int size, mlt_frame frame )
319 {
320 // Get the properties
321 mlt_properties properties = mlt_consumer_properties( this );
322
323 FILE *output = stdout;
324 char *target = mlt_properties_get( properties, "target" );
325
326 if ( target != NULL )
327 {
328 output = mlt_properties_get_data( properties, "output_file", NULL );
329 if ( output == NULL )
330 {
331 output = fopen( target, "w" );
332 if ( output != NULL )
333 mlt_properties_set_data( properties, "output_file", output, 0, ( mlt_destructor )fclose, 0 );
334 }
335 }
336
337 if ( output != NULL )
338 {
339 fwrite( dv_frame, size, 1, output );
340 fflush( output );
341 }
342 else
343 {
344 fprintf( stderr, "Unable to open %s\n", target );
345 }
346 }
347
348 /** The main thread - the argument is simply the consumer.
349 */
350
351 static void *consumer_thread( void *arg )
352 {
353 // Map the argument to the object
354 mlt_consumer this = arg;
355
356 // Get the properties
357 mlt_properties properties = mlt_consumer_properties( this );
358
359 // Get the handling methods
360 int ( *video )( mlt_consumer, uint8_t *, mlt_frame ) = mlt_properties_get_data( properties, "video", NULL );
361 int ( *audio )( mlt_consumer, uint8_t *, mlt_frame ) = mlt_properties_get_data( properties, "audio", NULL );
362 int ( *output )( mlt_consumer, uint8_t *, int, mlt_frame ) = mlt_properties_get_data( properties, "output", NULL );
363
364 // Allocate a single PAL frame for encoding
365 uint8_t *dv_frame = malloc( frame_size_625_50 );
366
367 // Get the service associated to the consumer
368 mlt_service service = mlt_consumer_service( this );
369
370 // Define a frame pointer
371 mlt_frame frame;
372
373 // Loop while running
374 while( mlt_properties_get_int( properties, "running" ) )
375 {
376 // Get the frame
377 if ( mlt_service_get_frame( service, &frame, 0 ) == 0 )
378 {
379 // Obtain the dv_encoder
380 if ( libdv_get_encoder( this, frame ) != NULL )
381 {
382 // Encode the image
383 int size = video( this, dv_frame, frame );
384
385 // Encode the audio
386 if ( size > 0 )
387 audio( this, dv_frame, frame );
388
389 // Output the frame
390 output( this, dv_frame, size, frame );
391
392 // Close the frame
393 mlt_frame_close( frame );
394 }
395 else
396 {
397 fprintf( stderr, "Unable to obtain dv encoder.\n" );
398 }
399 }
400 }
401
402 // Tidy up
403 free( dv_frame );
404
405 return NULL;
406 }
407
408 /** Close the consumer.
409 */
410
411 static void consumer_close( mlt_consumer this )
412 {
413 // Stop the consumer
414 mlt_consumer_stop( this );
415
416 // Close the parent
417 mlt_consumer_close( this );
418
419 // Free the memory
420 free( this );
421 }
422