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
;
212 mlt_frame_get_image( frame
, &image
, &fmt
, &width
, &height
, 0 );
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" ) ||
220 // We should try to recover here
221 fprintf( stderr
, "We have a problem houston...\n" );
225 // Calculate the size of the dv frame
226 size
= height
== 576 ? frame_size_625_50
: frame_size_525_60
;
233 dv_encode_full_frame( encoder
, &image
, e_dv_color_yuv
, dv_frame
);
240 /** The libdv encode audio method.
243 static void consumer_encode_audio( mlt_consumer
this, uint8_t *dv_frame
, mlt_frame frame
)
245 // Get the properties of the consumer
246 mlt_properties this_properties
= mlt_consumer_properties( this );
248 // Get the properties of the frame
249 mlt_properties frame_properties
= mlt_frame_properties( frame
);
251 // Obtain the dv_encoder
252 dv_encoder_t
*encoder
= libdv_get_encoder( this, frame
);
254 // Only continue if we have an encoder
255 if ( encoder
!= NULL
)
257 // Get the frame count
258 int count
= mlt_properties_get_int( this_properties
, "count" );
260 // Default audio args
261 mlt_audio_format fmt
= mlt_audio_pcm
;
263 int frequency
= 48000;
264 int samples
= mlt_sample_calculator( mlt_properties_get_double( this_properties
, "fps" ), frequency
, count
);
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 );
273 // Temporary - audio buffer allocation
274 int16_t *audio_buffers
[ 4 ];
277 for ( i
= 0 ; i
< 4; i
++ )
278 audio_buffers
[ i
] = calloc( 1, 2 * DV_AUDIO_MAX_SAMPLES
);
281 mlt_frame_get_audio( frame
, &pcm
, &fmt
, &frequency
, &channels
, &samples
);
283 // Inform the encoder of the number of audio samples
284 encoder
->samples_this_frame
= samples
;
286 // Fill the audio buffers correctly
287 if ( mlt_properties_get_double( frame_properties
, "_speed" ) == 1.0 )
289 for ( i
= 0; i
< samples
; i
++ )
290 for ( j
= 0; j
< channels
; j
++ )
291 audio_buffers
[ j
][ i
] = *pcm
++;
294 // Encode audio on frame
295 dv_encode_full_audio( encoder
, audio_buffers
, channels
, frequency
, dv_frame
);
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
);
302 mlt_properties_set_int( this_properties
, "count", ++ count
);
304 // Temporary - free audio buffers
305 for ( i
= 0 ; i
< 4; i
++ )
306 free( audio_buffers
[ i
] );
310 /** The libdv output method.
313 static void consumer_output( mlt_consumer
this, uint8_t *dv_frame
, int size
, mlt_frame frame
)
315 // Get the properties
316 mlt_properties properties
= mlt_consumer_properties( this );
318 FILE *output
= stdout
;
319 char *target
= mlt_properties_get( properties
, "target" );
321 if ( target
!= NULL
)
323 output
= mlt_properties_get_data( properties
, "output_file", NULL
);
324 if ( output
== NULL
)
326 output
= fopen( target
, "w" );
327 if ( output
!= NULL
)
328 mlt_properties_set_data( properties
, "output_file", output
, 0, ( mlt_destructor
)fclose
, 0 );
332 if ( output
!= NULL
)
334 fwrite( dv_frame
, size
, 1, output
);
339 fprintf( stderr
, "Unable to open %s\n", target
);
343 /** The main thread - the argument is simply the consumer.
346 static void *consumer_thread( void *arg
)
348 // Map the argument to the object
349 mlt_consumer
this = arg
;
351 // Get the properties
352 mlt_properties properties
= mlt_consumer_properties( this );
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
);
359 // Allocate a single PAL frame for encoding
360 uint8_t *dv_frame
= malloc( frame_size_625_50
);
362 // Loop while running
363 while( mlt_properties_get_int( properties
, "running" ) )
366 mlt_frame frame
= mlt_consumer_get_frame( this );
368 // Check that we have a frame to work with
371 // Obtain the dv_encoder
372 if ( libdv_get_encoder( this, frame
) != NULL
)
375 int size
= video( this, dv_frame
, frame
);
379 audio( this, dv_frame
, frame
);
382 output( this, dv_frame
, size
, frame
);
385 mlt_frame_close( frame
);
389 fprintf( stderr
, "Unable to obtain dv encoder.\n" );
400 /** Close the consumer.
403 static void consumer_close( mlt_consumer
this )
406 mlt_consumer_stop( this );
409 mlt_consumer_close( this );