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>
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.
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.
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.
22 #include "consumer_libdv.h"
25 #include <framework/mlt_frame.h>
27 // System header files
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 );
46 /** Initialise the dv consumer.
49 mlt_consumer
consumer_libdv_init( char *arg
)
51 // Allocate the consumer
52 mlt_consumer
this = calloc( 1, sizeof( struct mlt_consumer_s
) );
54 // If memory allocated and initialises without error
55 if ( this != NULL
&& mlt_consumer_init( this, NULL
) == 0 )
57 // Get properties from the consumer
58 mlt_properties properties
= mlt_consumer_properties( this );
60 // Assign close callback
61 this->close
= consumer_close
;
63 // Interpret the argument
65 mlt_properties_set( properties
, "target", arg
);
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
);
72 // Set up start/stop/terminated callbacks
73 this->start
= consumer_start
;
74 this->stop
= consumer_stop
;
75 this->is_stopped
= consumer_is_stopped
;
79 // Clean up in case of init failure
88 /** Start the consumer.
91 static int consumer_start( mlt_consumer
this )
94 mlt_properties properties
= mlt_consumer_properties( this );
96 // Check that we're not already running
97 if ( !mlt_properties_get_int( properties
, "running" ) )
100 pthread_t
*thread
= calloc( 1, sizeof( pthread_t
) );
102 // Assign the thread to properties
103 mlt_properties_set_data( properties
, "thread", thread
, sizeof( pthread_t
), free
, NULL
);
105 // Set the running state
106 mlt_properties_set_int( properties
, "running", 1 );
109 pthread_create( thread
, NULL
, consumer_thread
, this );
114 /** Stop the consumer.
117 static int consumer_stop( mlt_consumer
this )
119 // Get the properties
120 mlt_properties properties
= mlt_consumer_properties( this );
122 // Check that we're running
123 if ( mlt_properties_get_int( properties
, "running" ) )
126 pthread_t
*thread
= mlt_properties_get_data( properties
, "thread", NULL
);
129 mlt_properties_set_int( properties
, "running", 0 );
131 // Wait for termination
132 pthread_join( *thread
, NULL
);
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
);
142 /** Determine if the consumer is stopped.
145 static int consumer_is_stopped( mlt_consumer
this )
147 // Get the properties
148 mlt_properties properties
= mlt_consumer_properties( this );
149 return !mlt_properties_get_int( properties
, "running" );
152 /** Get or create a new libdv encoder.
155 static dv_encoder_t
*libdv_get_encoder( mlt_consumer
this, mlt_frame frame
)
157 // Get the properties of the consumer
158 mlt_properties this_properties
= mlt_consumer_properties( this );
160 // Obtain the dv_encoder
161 dv_encoder_t
*encoder
= mlt_properties_get_data( this_properties
, "dv_encoder", NULL
);
163 // Construct one if we don't have one
164 if ( encoder
== NULL
)
166 // Get the fps of the consumer (for now - should be from frame)
167 double fps
= mlt_properties_get_double( this_properties
, "fps" );
169 // Create the encoder
170 encoder
= dv_encoder_new( 0, 0, 0 );
173 encoder
->isPAL
= fps
== 25;
175 encoder
->vlc_encode_passes
= 1;
176 encoder
->static_qno
= 0;
177 encoder
->force_dct
= DV_DCT_AUTO
;
179 // Store the encoder on the properties
180 mlt_properties_set_data( this_properties
, "dv_encoder", encoder
, 0, ( mlt_destructor
)dv_encoder_free
, NULL
);
183 // Return the encoder
188 /** The libdv encode video method.
191 static int consumer_encode_video( mlt_consumer
this, uint8_t *dv_frame
, mlt_frame frame
)
193 // Obtain the dv_encoder
194 dv_encoder_t
*encoder
= libdv_get_encoder( this, frame
);
196 // Get the properties of the consumer
197 mlt_properties this_properties
= mlt_consumer_properties( this );
199 // This will hold the size of the dv frame
202 // If we get an encoder, then encode the image
203 if ( encoder
!= NULL
)
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
;
213 mlt_frame_get_image( frame
, &image
, &fmt
, &width
, &height
, 0 );
215 // determine if this a test card
216 is_test
= mlt_frame_is_test_card( frame
);
218 // Check that we get what we expected
219 if ( fmt
!= mlt_image_yuv422
||
220 width
!= mlt_properties_get_int( this_properties
, "width" ) ||
221 height
!= mlt_properties_get_int( this_properties
, "height" ) ||
224 // We should try to recover here
225 fprintf( stderr
, "We have a problem houston...\n" );
229 // Calculate the size of the dv frame
230 size
= height
== 576 ? frame_size_625_50
: frame_size_525_60
;
234 if ( size
!= 0 && !( mlt_properties_get_int( this_properties
, "was_test_card" ) && is_test
) )
236 if ( mlt_properties_get_int( mlt_frame_properties( frame
), "top_field_first" ) )
240 dv_encode_full_frame( encoder
, &image
, e_dv_color_yuv
, dv_frame
);
242 // Note test card status
243 mlt_properties_set_int( this_properties
, "was_test_card", is_test
);
250 /** The libdv encode audio method.
253 static void consumer_encode_audio( mlt_consumer
this, uint8_t *dv_frame
, mlt_frame frame
)
255 // Get the properties of the consumer
256 mlt_properties this_properties
= mlt_consumer_properties( this );
258 // Get the properties of the frame
259 mlt_properties frame_properties
= mlt_frame_properties( frame
);
261 // Obtain the dv_encoder
262 dv_encoder_t
*encoder
= libdv_get_encoder( this, frame
);
264 // Only continue if we have an encoder
265 if ( encoder
!= NULL
)
267 // Get the frame count
268 int count
= mlt_properties_get_int( this_properties
, "count" );
270 // Default audio args
271 mlt_audio_format fmt
= mlt_audio_pcm
;
273 int frequency
= 48000;
274 int samples
= mlt_sample_calculator( mlt_properties_get_double( this_properties
, "fps" ), frequency
, count
);
277 // Get the frame number
278 time_t start
= time( NULL
);
279 int height
= mlt_properties_get_int( this_properties
, "height" );
280 int is_pal
= height
== 576;
281 int is_wide
= mlt_properties_get_double( frame_properties
, "fps" ) == ( ( double ) 16.0 / 9.0 );
283 // Temporary - audio buffer allocation
284 int16_t *audio_buffers
[ 4 ];
287 for ( i
= 0 ; i
< 4; i
++ )
288 audio_buffers
[ i
] = calloc( 1, 2 * DV_AUDIO_MAX_SAMPLES
);
291 mlt_frame_get_audio( frame
, &pcm
, &fmt
, &frequency
, &channels
, &samples
);
293 // Inform the encoder of the number of audio samples
294 encoder
->samples_this_frame
= samples
;
296 // Fill the audio buffers correctly
297 if ( mlt_properties_get_double( frame_properties
, "_speed" ) == 1.0 )
299 for ( i
= 0; i
< samples
; i
++ )
300 for ( j
= 0; j
< channels
; j
++ )
301 audio_buffers
[ j
][ i
] = *pcm
++;
304 // Encode audio on frame
305 dv_encode_full_audio( encoder
, audio_buffers
, channels
, frequency
, dv_frame
);
307 // Specify meta data on the frame
308 dv_encode_metadata( dv_frame
, is_pal
, is_wide
, &start
, count
);
309 dv_encode_timecode( dv_frame
, is_pal
, count
);
312 mlt_properties_set_int( this_properties
, "count", ++ count
);
314 // Temporary - free audio buffers
315 for ( i
= 0 ; i
< 4; i
++ )
316 free( audio_buffers
[ i
] );
320 /** The libdv output method.
323 static void consumer_output( mlt_consumer
this, uint8_t *dv_frame
, int size
, mlt_frame frame
)
325 // Get the properties
326 mlt_properties properties
= mlt_consumer_properties( this );
328 FILE *output
= stdout
;
329 char *target
= mlt_properties_get( properties
, "target" );
331 if ( target
!= NULL
)
333 output
= mlt_properties_get_data( properties
, "output_file", NULL
);
334 if ( output
== NULL
)
336 output
= fopen( target
, "w" );
337 if ( output
!= NULL
)
338 mlt_properties_set_data( properties
, "output_file", output
, 0, ( mlt_destructor
)fclose
, 0 );
342 if ( output
!= NULL
)
344 fwrite( dv_frame
, size
, 1, output
);
349 fprintf( stderr
, "Unable to open %s\n", target
);
353 /** The main thread - the argument is simply the consumer.
356 static void *consumer_thread( void *arg
)
358 // Map the argument to the object
359 mlt_consumer
this = arg
;
361 // Get the properties
362 mlt_properties properties
= mlt_consumer_properties( this );
364 // Get the handling methods
365 int ( *video
)( mlt_consumer
, uint8_t *, mlt_frame
) = mlt_properties_get_data( properties
, "video", NULL
);
366 int ( *audio
)( mlt_consumer
, uint8_t *, mlt_frame
) = mlt_properties_get_data( properties
, "audio", NULL
);
367 int ( *output
)( mlt_consumer
, uint8_t *, int, mlt_frame
) = mlt_properties_get_data( properties
, "output", NULL
);
369 // Allocate a single PAL frame for encoding
370 uint8_t *dv_frame
= malloc( frame_size_625_50
);
372 // Loop while running
373 while( mlt_properties_get_int( properties
, "running" ) )
376 mlt_frame frame
= mlt_consumer_get_frame( this );
378 // Check that we have a frame to work with
381 // Obtain the dv_encoder
382 if ( libdv_get_encoder( this, frame
) != NULL
)
385 int size
= video( this, dv_frame
, frame
);
389 audio( this, dv_frame
, frame
);
392 output( this, dv_frame
, size
, frame
);
395 mlt_frame_close( frame
);
399 fprintf( stderr
, "Unable to obtain dv encoder.\n" );
410 /** Close the consumer.
413 static void consumer_close( mlt_consumer
this )
416 mlt_consumer_stop( this );
419 mlt_consumer_close( this );