]> git.sesse.net Git - mlt/blob - src/modules/avformat/consumer_avformat.c
Fix A/V sync error accumulation in avformat consumer.
[mlt] / src / modules / avformat / consumer_avformat.c
1 /*
2  * consumer_avformat.c -- an encoder based on avformat
3  * Copyright (C) 2003-2012 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
5  * Author: Dan Dennedy <dan@dennedy.org>
6  * Much code borrowed from ffmpeg.c: Copyright (c) 2000-2003 Fabrice Bellard
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 // mlt Header files
24 #include <framework/mlt_consumer.h>
25 #include <framework/mlt_frame.h>
26 #include <framework/mlt_profile.h>
27 #include <framework/mlt_log.h>
28 #include <framework/mlt_events.h>
29
30 // System header files
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <limits.h>
35 #include <pthread.h>
36 #include <sys/time.h>
37 #include <unistd.h>
38
39 // avformat header files
40 #include <libavformat/avformat.h>
41 #include <libavformat/avio.h>
42 #include <libswscale/swscale.h>
43 #include <libavutil/pixdesc.h>
44 #include <libavutil/mathematics.h>
45 #include <libavutil/samplefmt.h>
46
47 #if LIBAVCODEC_VERSION_MAJOR >= 53
48 #include <libavutil/opt.h>
49 #define CODEC_TYPE_VIDEO      AVMEDIA_TYPE_VIDEO
50 #define CODEC_TYPE_AUDIO      AVMEDIA_TYPE_AUDIO
51 #define PKT_FLAG_KEY AV_PKT_FLAG_KEY
52 #else
53 #include <libavcodec/opt.h>
54 #endif
55
56 #if LIBAVCODEC_VERSION_MAJOR < 55
57 #define AV_CODEC_ID_PCM_S16LE CODEC_ID_PCM_S16LE
58 #define AV_CODEC_ID_PCM_S16BE CODEC_ID_PCM_S16BE
59 #define AV_CODEC_ID_PCM_U16LE CODEC_ID_PCM_U16LE
60 #define AV_CODEC_ID_PCM_U16BE CODEC_ID_PCM_U16BE
61 #define AV_CODEC_ID_H264      CODEC_ID_H264
62 #define AV_CODEC_ID_NONE      CODEC_ID_NONE
63 #define AV_CODEC_ID_AC3       CODEC_ID_AC3
64 #define AV_CODEC_ID_VORBIS    CODEC_ID_VORBIS
65 #endif
66
67 #define MAX_AUDIO_STREAMS (8)
68 #define AUDIO_ENCODE_BUFFER_SIZE (48000 * 2 * MAX_AUDIO_STREAMS)
69 #define AUDIO_BUFFER_SIZE (1024 * 42)
70 #define VIDEO_BUFFER_SIZE (2048 * 1024)
71
72 //
73 // This structure should be extended and made globally available in mlt
74 //
75
76 typedef struct
77 {
78         uint8_t *buffer;
79         int size;
80         int used;
81         double time;
82         int frequency;
83         int channels;
84 }
85 *sample_fifo, sample_fifo_s;
86
87 sample_fifo sample_fifo_init( int frequency, int channels )
88 {
89         sample_fifo fifo = calloc( 1, sizeof( sample_fifo_s ) );
90         fifo->frequency = frequency;
91         fifo->channels = channels;
92         return fifo;
93 }
94
95 // count is the number of samples multiplied by the number of bytes per sample
96 void sample_fifo_append( sample_fifo fifo, uint8_t *samples, int count )
97 {
98         if ( ( fifo->size - fifo->used ) < count )
99         {
100                 fifo->size += count * 5;
101                 fifo->buffer = realloc( fifo->buffer, fifo->size );
102         }
103
104         memcpy( &fifo->buffer[ fifo->used ], samples, count );
105         fifo->used += count;
106 }
107
108 int sample_fifo_used( sample_fifo fifo )
109 {
110         return fifo->used;
111 }
112
113 int sample_fifo_fetch( sample_fifo fifo, uint8_t *samples, int count )
114 {
115         if ( count > fifo->used )
116                 count = fifo->used;
117
118         memcpy( samples, fifo->buffer, count );
119         fifo->used -= count;
120         memmove( fifo->buffer, &fifo->buffer[ count ], fifo->used );
121
122         fifo->time += ( double )count / fifo->channels / fifo->frequency;
123
124         return count;
125 }
126
127 void sample_fifo_close( sample_fifo fifo )
128 {
129         free( fifo->buffer );
130         free( fifo );
131 }
132
133 // Forward references.
134 static void property_changed( mlt_properties owner, mlt_consumer self, char *name );
135 static int consumer_start( mlt_consumer consumer );
136 static int consumer_stop( mlt_consumer consumer );
137 static int consumer_is_stopped( mlt_consumer consumer );
138 static void *consumer_thread( void *arg );
139 static void consumer_close( mlt_consumer consumer );
140
141 /** Initialise the consumer.
142 */
143
144 mlt_consumer consumer_avformat_init( mlt_profile profile, char *arg )
145 {
146         // Allocate the consumer
147         mlt_consumer consumer = mlt_consumer_new( profile );
148
149         // If memory allocated and initialises without error
150         if ( consumer != NULL )
151         {
152                 // Get properties from the consumer
153                 mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
154
155                 // Assign close callback
156                 consumer->close = consumer_close;
157
158                 // Interpret the argument
159                 if ( arg != NULL )
160                         mlt_properties_set( properties, "target", arg );
161
162                 // sample and frame queue
163                 mlt_properties_set_data( properties, "frame_queue", mlt_deque_init( ), 0, ( mlt_destructor )mlt_deque_close, NULL );
164
165                 // Audio options not fully handled by AVOptions
166 #define QSCALE_NONE (-99999)
167                 mlt_properties_set_int( properties, "aq", QSCALE_NONE );
168                 
169                 // Video options not fully handled by AVOptions
170                 mlt_properties_set_int( properties, "dc", 8 );
171                 
172                 // Muxer options not fully handled by AVOptions
173                 mlt_properties_set_double( properties, "muxdelay", 0.7 );
174                 mlt_properties_set_double( properties, "muxpreload", 0.5 );
175
176                 // Ensure termination at end of the stream
177                 mlt_properties_set_int( properties, "terminate_on_pause", 1 );
178                 
179                 // Default to separate processing threads for producer and consumer with no frame dropping!
180                 mlt_properties_set_int( properties, "real_time", -1 );
181                 mlt_properties_set_int( properties, "prefill", 1 );
182
183                 // Set up start/stop/terminated callbacks
184                 consumer->start = consumer_start;
185                 consumer->stop = consumer_stop;
186                 consumer->is_stopped = consumer_is_stopped;
187                 
188                 mlt_events_register( properties, "consumer-fatal-error", NULL );
189                 mlt_event event = mlt_events_listen( properties, consumer, "property-changed", ( mlt_listener )property_changed );
190                 mlt_properties_set_data( properties, "property-changed event", event, 0, NULL, NULL );
191         }
192
193         // Return consumer
194         return consumer;
195 }
196
197 static void property_changed( mlt_properties owner, mlt_consumer self, char *name )
198 {
199         mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
200
201         if ( !strcmp( name, "s" ) )
202         {
203                 // Obtain the size property
204                 char *size = mlt_properties_get( properties, "s" );
205                 int width = mlt_properties_get_int( properties, "width" );
206                 int height = mlt_properties_get_int( properties, "height" );
207                 int tw, th;
208
209                 if ( sscanf( size, "%dx%d", &tw, &th ) == 2 && tw > 0 && th > 0 )
210                 {
211                         width = tw;
212                         height = th;
213                 }
214                 else
215                 {
216                         mlt_log_warning( MLT_CONSUMER_SERVICE(self), "Invalid size property %s - ignoring.\n", size );
217                 }
218
219                 // Now ensure we honour the multiple of two requested by libavformat
220                 width = ( width / 2 ) * 2;
221                 height = ( height / 2 ) * 2;
222                 mlt_properties_set_int( properties, "width", width );
223                 mlt_properties_set_int( properties, "height", height );
224         }
225         // "-aspect" on ffmpeg command line is display aspect ratio
226         else if ( !strcmp( name, "aspect" ) )
227         {
228                 double ar = mlt_properties_get_double( properties, "aspect" );
229                 AVRational rational = av_d2q( ar, 255 );
230                 int width = mlt_properties_get_int( properties, "width" );
231                 int height = mlt_properties_get_int( properties, "height" );
232
233                 // Update the profile and properties as well since this is an alias
234                 // for mlt properties that correspond to profile settings
235                 mlt_properties_set_int( properties, "display_aspect_num", rational.num );
236                 mlt_properties_set_int( properties, "display_aspect_den", rational.den );
237
238                 // Now compute the sample aspect ratio
239                 rational = av_d2q( ar * height / width, 255 );
240
241                 // Update the profile and properties as well since this is an alias
242                 // for mlt properties that correspond to profile settings
243                 mlt_properties_set_int( properties, "sample_aspect_num", rational.num );
244                 mlt_properties_set_int( properties, "sample_aspect_den", rational.den );
245         }
246         // Handle the ffmpeg command line "-r" property for frame rate
247         else if ( !strcmp( name, "r" ) )
248         {
249                 double frame_rate = mlt_properties_get_double( properties, "r" );
250                 AVRational rational = av_d2q( frame_rate, 255 );
251                 mlt_properties_set_int( properties, "frame_rate_num", rational.num );
252                 mlt_properties_set_int( properties, "frame_rate_den", rational.den );
253         }
254 }
255
256 /** Start the consumer.
257 */
258
259 static int consumer_start( mlt_consumer consumer )
260 {
261         // Get the properties
262         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
263         int error = 0;
264
265         // Report information about available muxers and codecs as YAML Tiny
266         char *s = mlt_properties_get( properties, "f" );
267         if ( s && strcmp( s, "list" ) == 0 )
268         {
269                 mlt_properties doc = mlt_properties_new();
270                 mlt_properties formats = mlt_properties_new();
271                 char key[20];
272                 AVOutputFormat *format = NULL;
273                 
274                 mlt_properties_set_data( properties, "f", formats, 0, (mlt_destructor) mlt_properties_close, NULL );
275                 mlt_properties_set_data( doc, "formats", formats, 0, NULL, NULL );
276                 while ( ( format = av_oformat_next( format ) ) )
277                 {
278                         snprintf( key, sizeof(key), "%d", mlt_properties_count( formats ) );
279                         mlt_properties_set( formats, key, format->name );
280                 }
281                 s = mlt_properties_serialise_yaml( doc );
282                 fprintf( stdout, "%s", s );
283                 free( s );
284                 mlt_properties_close( doc );
285                 error = 1;
286         }
287         s = mlt_properties_get( properties, "acodec" );
288         if ( s && strcmp( s, "list" ) == 0 )
289         {
290                 mlt_properties doc = mlt_properties_new();
291                 mlt_properties codecs = mlt_properties_new();
292                 char key[20];
293                 AVCodec *codec = NULL;
294
295                 mlt_properties_set_data( properties, "acodec", codecs, 0, (mlt_destructor) mlt_properties_close, NULL );
296                 mlt_properties_set_data( doc, "audio_codecs", codecs, 0, NULL, NULL );
297                 while ( ( codec = av_codec_next( codec ) ) )
298 #if (defined(FFUDIV) && LIBAVCODEC_VERSION_INT >= ((54<<16)+(56<<8)+100)) || (LIBAVCODEC_VERSION_INT >= ((54<<16)+(27<<8)+0))
299                         if ( codec->encode2 && codec->type == CODEC_TYPE_AUDIO )
300 #elif LIBAVCODEC_VERSION_INT >= ((54<<16)+(0<<8)+0)
301                         if ( ( codec->encode || codec->encode2 ) && codec->type == CODEC_TYPE_AUDIO )
302 #else
303                         if ( codec->encode && codec->type == CODEC_TYPE_AUDIO )
304 #endif
305                         {
306                                 snprintf( key, sizeof(key), "%d", mlt_properties_count( codecs ) );
307                                 mlt_properties_set( codecs, key, codec->name );
308                         }
309                 s = mlt_properties_serialise_yaml( doc );
310                 fprintf( stdout, "%s", s );
311                 free( s );
312                 mlt_properties_close( doc );
313                 error = 1;
314         }
315         s = mlt_properties_get( properties, "vcodec" );
316         if ( s && strcmp( s, "list" ) == 0 )
317         {
318                 mlt_properties doc = mlt_properties_new();
319                 mlt_properties codecs = mlt_properties_new();
320                 char key[20];
321                 AVCodec *codec = NULL;
322
323                 mlt_properties_set_data( properties, "vcodec", codecs, 0, (mlt_destructor) mlt_properties_close, NULL );
324                 mlt_properties_set_data( doc, "video_codecs", codecs, 0, NULL, NULL );
325                 while ( ( codec = av_codec_next( codec ) ) )
326 #if (defined(FFUDIV) && LIBAVCODEC_VERSION_INT >= ((54<<16)+(56<<8)+100)) || (LIBAVCODEC_VERSION_INT >= ((54<<16)+(27<<8)+0))
327                         if ( codec->encode2 && codec->type == CODEC_TYPE_VIDEO )
328 #elif LIBAVCODEC_VERSION_INT >= ((54<<16)+(0<<8)+0)
329                         if ( (codec->encode || codec->encode2) && codec->type == CODEC_TYPE_VIDEO )
330 #else
331                         if ( codec->encode && codec->type == CODEC_TYPE_VIDEO )
332 #endif
333                         {
334                                 snprintf( key, sizeof(key), "%d", mlt_properties_count( codecs ) );
335                                 mlt_properties_set( codecs, key, codec->name );
336                         }
337                 s = mlt_properties_serialise_yaml( doc );
338                 fprintf( stdout, "%s", s );
339                 free( s );
340                 mlt_properties_close( doc );
341                 error = 1;
342         }
343
344         // Check that we're not already running
345         if ( !error && !mlt_properties_get_int( properties, "running" ) )
346         {
347                 // Allocate a thread
348                 pthread_t *thread = calloc( 1, sizeof( pthread_t ) );
349
350                 mlt_event_block( mlt_properties_get_data( properties, "property-changed event", NULL ) );
351
352                 // Apply AVOptions that are synonyms for standard mlt_consumer options
353                 if ( mlt_properties_get( properties, "ac" ) )
354                         mlt_properties_set_int( properties, "channels", mlt_properties_get_int( properties, "ac" ) );
355                 if ( mlt_properties_get( properties, "ar" ) )
356                         mlt_properties_set_int( properties, "frequency", mlt_properties_get_int( properties, "ar" ) );
357
358                 // Assign the thread to properties
359                 mlt_properties_set_data( properties, "thread", thread, sizeof( pthread_t ), free, NULL );
360
361                 // Create the thread
362                 pthread_create( thread, NULL, consumer_thread, consumer );
363
364                 // Set the running state
365                 mlt_properties_set_int( properties, "running", 1 );
366         }
367         return error;
368 }
369
370 /** Stop the consumer.
371 */
372
373 static int consumer_stop( mlt_consumer consumer )
374 {
375         // Get the properties
376         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
377         pthread_t *thread = mlt_properties_get_data( properties, "thread", NULL );
378
379         // Check that we're running
380         if ( thread )
381         {
382                 // Stop the thread
383                 mlt_properties_set_int( properties, "running", 0 );
384
385                 // Wait for termination
386                 pthread_join( *thread, NULL );
387
388                 mlt_properties_set_data( properties, "thread", NULL, 0, NULL, NULL );
389                 mlt_event_unblock( mlt_properties_get_data( properties, "property-changed event", NULL ) );
390         }
391
392         return 0;
393 }
394
395 /** Determine if the consumer is stopped.
396 */
397
398 static int consumer_is_stopped( mlt_consumer consumer )
399 {
400         // Get the properties
401         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
402         return !mlt_properties_get_int( properties, "running" );
403 }
404
405 /** Process properties as AVOptions and apply to AV context obj
406 */
407
408 static void apply_properties( void *obj, mlt_properties properties, int flags )
409 {
410         int i;
411         int count = mlt_properties_count( properties );
412 #if LIBAVUTIL_VERSION_INT < ((51<<16)+(12<<8)+0)
413         int alloc = 1;
414 #endif
415
416         for ( i = 0; i < count; i++ )
417         {
418                 const char *opt_name = mlt_properties_get_name( properties, i );
419 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(10<<8)+0)
420                 const AVOption *opt = av_opt_find( obj, opt_name, NULL, flags, flags );
421 #else
422                 const AVOption *opt = av_find_opt( obj, opt_name, NULL, flags, flags );
423 #endif
424
425                 // If option not found, see if it was prefixed with a or v (-vb)
426                 if ( !opt && (
427                         ( opt_name[0] == 'v' && ( flags & AV_OPT_FLAG_VIDEO_PARAM ) ) ||
428                         ( opt_name[0] == 'a' && ( flags & AV_OPT_FLAG_AUDIO_PARAM ) ) ) )
429 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(10<<8)+0)
430                         opt = av_opt_find( obj, ++opt_name, NULL, flags, flags );
431 #else
432                         opt = av_find_opt( obj, ++opt_name, NULL, flags, flags );
433 #endif
434                 // Apply option if found
435                 if ( opt )
436 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(12<<8)+0)
437                         av_opt_set( obj, opt_name, mlt_properties_get_value( properties, i), 0 );
438 #else
439                         av_set_string3( obj, opt_name, mlt_properties_get_value( properties, i), alloc, NULL );
440 #endif
441         }
442 }
443
444 static int get_mlt_audio_format( int av_sample_fmt )
445 {
446         switch ( av_sample_fmt )
447         {
448         case AV_SAMPLE_FMT_U8:
449                 return mlt_audio_u8;
450         case AV_SAMPLE_FMT_S32:
451                 return mlt_audio_s32le;
452         case AV_SAMPLE_FMT_FLT:
453                 return mlt_audio_f32le;
454 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
455         case AV_SAMPLE_FMT_U8P:
456                 return mlt_audio_u8;
457         case AV_SAMPLE_FMT_S32P:
458                 return mlt_audio_s32le;
459         case AV_SAMPLE_FMT_FLTP:
460                 return mlt_audio_f32le;
461 #endif
462         default:
463                 return mlt_audio_s16;
464         }
465 }
466
467 static int pick_sample_fmt( mlt_properties properties, AVCodec *codec )
468 {
469         int sample_fmt = AV_SAMPLE_FMT_S16;
470         const char *format = mlt_properties_get( properties, "mlt_audio_format" );
471         const int *p = codec->sample_fmts;
472
473         // get default av_sample_fmt from mlt_audio_format
474         if ( format )
475         {
476                 if ( !strcmp( format, "s32le" ) )
477                         sample_fmt = AV_SAMPLE_FMT_S32;
478                 else if ( !strcmp( format, "f32le" ) )
479                         sample_fmt = AV_SAMPLE_FMT_FLT;
480                 else if ( !strcmp( format, "u8" ) )
481                         sample_fmt = AV_SAMPLE_FMT_U8;
482 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
483                 else if ( !strcmp( format, "s32" ) )
484                         sample_fmt = AV_SAMPLE_FMT_S32P;
485                 else if ( !strcmp( format, "float" ) )
486                         sample_fmt = AV_SAMPLE_FMT_FLTP;
487 #endif
488         }
489         // check if codec supports our mlt_audio_format
490         for ( ; *p != -1; p++ )
491         {
492                 if ( *p == sample_fmt )
493                         return sample_fmt;
494         }
495         // no match - pick first one we support
496         for ( p = codec->sample_fmts; *p != -1; p++ )
497         {
498                 switch (*p)
499                 {
500                 case AV_SAMPLE_FMT_U8:
501                 case AV_SAMPLE_FMT_S16:
502                 case AV_SAMPLE_FMT_S32:
503                 case AV_SAMPLE_FMT_FLT:
504 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
505                 case AV_SAMPLE_FMT_U8P:
506                 case AV_SAMPLE_FMT_S16P:
507                 case AV_SAMPLE_FMT_S32P:
508                 case AV_SAMPLE_FMT_FLTP:
509 #endif
510                         return *p;
511                 default:
512                         break;
513                 }
514         }
515         mlt_log_error( properties, "audio codec sample_fmt not compatible" );
516
517         return AV_SAMPLE_FMT_NONE;
518 }
519
520 static uint8_t* interleaved_to_planar( int samples, int channels, uint8_t* audio, int bytes_per_sample )
521 {
522         uint8_t *buffer = mlt_pool_alloc( AUDIO_ENCODE_BUFFER_SIZE );
523         uint8_t *p = buffer;
524         int c;
525
526         memset( buffer, 0, AUDIO_ENCODE_BUFFER_SIZE );
527         for ( c = 0; c < channels; c++ )
528         {
529                 uint8_t *q = audio + c * bytes_per_sample;
530                 int i = samples + 1;
531                 while ( --i )
532                 {
533                         memcpy( p, q, bytes_per_sample );
534                         p += bytes_per_sample;
535                         q += channels * bytes_per_sample;
536                 }
537         }
538         return buffer;
539 }
540
541 /** Add an audio output stream
542 */
543
544 static AVStream *add_audio_stream( mlt_consumer consumer, AVFormatContext *oc, AVCodec *codec, int channels )
545 {
546         // Get the properties
547         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
548
549         // Create a new stream
550 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(10<<8)+0)
551         AVStream *st = avformat_new_stream( oc, codec );
552 #else
553         AVStream *st = av_new_stream( oc, oc->nb_streams );
554 #endif
555
556         // If created, then initialise from properties
557         if ( st != NULL ) 
558         {
559                 AVCodecContext *c = st->codec;
560
561                 // Establish defaults from AVOptions
562 #if LIBAVCODEC_VERSION_MAJOR >= 53
563                 avcodec_get_context_defaults3( c, codec );
564 #else
565                 avcodec_get_context_defaults2( c, CODEC_TYPE_AUDIO );
566 #endif
567
568                 c->codec_id = codec->id;
569                 c->codec_type = CODEC_TYPE_AUDIO;
570                 c->sample_fmt = pick_sample_fmt( properties, codec );
571
572 #if 0 // disabled until some audio codecs are multi-threaded
573                 // Setup multi-threading
574                 int thread_count = mlt_properties_get_int( properties, "threads" );
575                 if ( thread_count == 0 && getenv( "MLT_AVFORMAT_THREADS" ) )
576                         thread_count = atoi( getenv( "MLT_AVFORMAT_THREADS" ) );
577                 if ( thread_count > 1 )
578                         c->thread_count = thread_count;
579 #endif
580         
581                 if (oc->oformat->flags & AVFMT_GLOBALHEADER) 
582                         c->flags |= CODEC_FLAG_GLOBAL_HEADER;
583                 
584                 // Allow the user to override the audio fourcc
585                 if ( mlt_properties_get( properties, "atag" ) )
586                 {
587                         char *tail = NULL;
588                         char *arg = mlt_properties_get( properties, "atag" );
589                         int tag = strtol( arg, &tail, 0);
590                         if( !tail || *tail )
591                                 tag = arg[ 0 ] + ( arg[ 1 ] << 8 ) + ( arg[ 2 ] << 16 ) + ( arg[ 3 ] << 24 );
592                         c->codec_tag = tag;
593                 }
594
595                 // Process properties as AVOptions
596                 char *apre = mlt_properties_get( properties, "apre" );
597                 if ( apre )
598                 {
599                         mlt_properties p = mlt_properties_load( apre );
600                         apply_properties( c, p, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
601                         mlt_properties_close( p );
602                 }
603                 apply_properties( c, properties, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
604
605                 int audio_qscale = mlt_properties_get_int( properties, "aq" );
606                 if ( audio_qscale > QSCALE_NONE )
607                 {
608                         c->flags |= CODEC_FLAG_QSCALE;
609                         c->global_quality = FF_QP2LAMBDA * audio_qscale;
610 #if LIBAVFORMAT_VERSION_MAJOR < 53
611                         st->quality = c->global_quality;
612 #endif
613                 }
614
615                 // Set parameters controlled by MLT
616                 c->sample_rate = mlt_properties_get_int( properties, "frequency" );
617                 c->time_base = ( AVRational ){ 1, c->sample_rate };
618                 c->channels = channels;
619
620                 if ( mlt_properties_get( properties, "alang" ) != NULL )
621 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
622                         av_dict_set( &oc->metadata, "language", mlt_properties_get( properties, "alang" ), 0 );
623 #else
624                         av_metadata_set2( &oc->metadata, "language", mlt_properties_get( properties, "alang" ), 0 );
625 #endif
626         }
627         else
628         {
629                 mlt_log_error( MLT_CONSUMER_SERVICE( consumer ), "Could not allocate a stream for audio\n" );
630         }
631
632         return st;
633 }
634
635 static int open_audio( mlt_properties properties, AVFormatContext *oc, AVStream *st, int audio_outbuf_size, const char *codec_name )
636 {
637         // We will return the audio input size from here
638         int audio_input_frame_size = 0;
639
640         // Get the context
641         AVCodecContext *c = st->codec;
642
643         // Find the encoder
644         AVCodec *codec;
645         if ( codec_name )
646                 codec = avcodec_find_encoder_by_name( codec_name );
647         else
648                 codec = avcodec_find_encoder( c->codec_id );
649
650         // Process properties as AVOptions on the AVCodec
651         if ( codec && codec->priv_class )
652         {
653                 char *apre = mlt_properties_get( properties, "apre" );
654                 if ( !c->priv_data && codec->priv_data_size )
655                 {
656                         c->priv_data = av_mallocz( codec->priv_data_size );
657                         *(const AVClass **) c->priv_data = codec->priv_class;
658 //                      av_opt_set_defaults( c );
659                 }
660                 if ( apre )
661                 {
662                         mlt_properties p = mlt_properties_load( apre );
663                         apply_properties( c->priv_data, p, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
664                         mlt_properties_close( p );
665                 }
666                 apply_properties( c->priv_data, properties, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
667         }
668
669         // Continue if codec found and we can open it
670 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(8<<8)+0)
671         if ( codec && avcodec_open2( c, codec, NULL ) >= 0 )
672 #else
673         if ( codec && avcodec_open( c, codec ) >= 0 )
674 #endif
675         {
676                 // ugly hack for PCM codecs (will be removed ASAP with new PCM
677                 // support to compute the input frame size in samples
678                 if ( c->frame_size <= 1 ) 
679                 {
680                         audio_input_frame_size = audio_outbuf_size / c->channels;
681                         switch(st->codec->codec_id) 
682                         {
683                                 case AV_CODEC_ID_PCM_S16LE:
684                                 case AV_CODEC_ID_PCM_S16BE:
685                                 case AV_CODEC_ID_PCM_U16LE:
686                                 case AV_CODEC_ID_PCM_U16BE:
687                                         audio_input_frame_size >>= 1;
688                                         break;
689                                 default:
690                                         break;
691                         }
692                 } 
693                 else 
694                 {
695                         audio_input_frame_size = c->frame_size;
696                 }
697
698                 // Some formats want stream headers to be seperate (hmm)
699                 if ( !strcmp( oc->oformat->name, "mp4" ) ||
700                          !strcmp( oc->oformat->name, "mov" ) ||
701                          !strcmp( oc->oformat->name, "3gp" ) )
702                         c->flags |= CODEC_FLAG_GLOBAL_HEADER;
703         }
704         else
705         {
706                 mlt_log_warning( NULL, "%s: Unable to encode audio - disabling audio output.\n", __FILE__ );
707                 audio_input_frame_size = 0;
708         }
709
710         return audio_input_frame_size;
711 }
712
713 static void close_audio( AVFormatContext *oc, AVStream *st )
714 {
715         if ( st && st->codec )
716                 avcodec_close( st->codec );
717 }
718
719 /** Add a video output stream 
720 */
721
722 static AVStream *add_video_stream( mlt_consumer consumer, AVFormatContext *oc, AVCodec *codec )
723 {
724         // Get the properties
725         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
726
727         // Create a new stream
728 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(10<<8)+0)
729         AVStream *st = avformat_new_stream( oc, codec );
730 #else
731         AVStream *st = av_new_stream( oc, oc->nb_streams );
732 #endif
733
734         if ( st != NULL ) 
735         {
736                 char *pix_fmt = mlt_properties_get( properties, "pix_fmt" );
737                 AVCodecContext *c = st->codec;
738
739                 // Establish defaults from AVOptions
740 #if LIBAVCODEC_VERSION_MAJOR >= 53
741                 avcodec_get_context_defaults3( c, codec );
742 #else
743                 avcodec_get_context_defaults2( c, CODEC_TYPE_VIDEO );
744 #endif
745
746                 c->codec_id = codec->id;
747                 c->codec_type = CODEC_TYPE_VIDEO;
748                 
749                 // Setup multi-threading
750                 int thread_count = mlt_properties_get_int( properties, "threads" );
751                 if ( thread_count == 0 && getenv( "MLT_AVFORMAT_THREADS" ) )
752                         thread_count = atoi( getenv( "MLT_AVFORMAT_THREADS" ) );
753                 if ( thread_count > 1 )
754 #if LIBAVCODEC_VERSION_MAJOR >= 53
755                         c->thread_count = thread_count;
756 #else
757                         avcodec_thread_init( c, thread_count );
758 #endif
759
760                 // Process properties as AVOptions
761                 char *vpre = mlt_properties_get( properties, "vpre" );
762                 if ( vpre )
763                 {
764                         mlt_properties p = mlt_properties_load( vpre );
765 #ifdef AVDATADIR
766                         if ( mlt_properties_count( p ) < 1 )
767                         {
768                                 AVCodec *codec = avcodec_find_encoder( c->codec_id );
769                                 if ( codec )
770                                 {
771                                         char *path = malloc( strlen(AVDATADIR) + strlen(codec->name) + strlen(vpre) + strlen(".ffpreset") + 2 );
772                                         strcpy( path, AVDATADIR );
773                                         strcat( path, codec->name );
774                                         strcat( path, "-" );
775                                         strcat( path, vpre );
776                                         strcat( path, ".ffpreset" );
777                                         
778                                         mlt_properties_close( p );
779                                         p = mlt_properties_load( path );
780                                         if ( mlt_properties_count( p ) > 0 )
781                                                 mlt_properties_debug( p, path, stderr );
782                                         free( path );   
783                                 }
784                         }
785                         else
786                         {
787                                 mlt_properties_debug( p, vpre, stderr );                        
788                         }
789 #endif
790                         apply_properties( c, p, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
791                         mlt_properties_close( p );
792                 }
793                 int colorspace = mlt_properties_get_int( properties, "colorspace" );
794                 mlt_properties_set( properties, "colorspace", NULL );
795                 apply_properties( c, properties, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
796                 mlt_properties_set_int( properties, "colorspace", colorspace );
797
798                 // Set options controlled by MLT
799                 c->width = mlt_properties_get_int( properties, "width" );
800                 c->height = mlt_properties_get_int( properties, "height" );
801                 c->time_base.num = mlt_properties_get_int( properties, "frame_rate_den" );
802                 c->time_base.den = mlt_properties_get_int( properties, "frame_rate_num" );
803                 if ( st->time_base.den == 0 )
804                         st->time_base = c->time_base;
805                 c->pix_fmt = pix_fmt ? av_get_pix_fmt( pix_fmt ) : PIX_FMT_YUV420P;
806                 
807                 switch ( colorspace )
808                 {
809                 case 170:
810                         c->colorspace = AVCOL_SPC_SMPTE170M;
811                         break;
812                 case 240:
813                         c->colorspace = AVCOL_SPC_SMPTE240M;
814                         break;
815                 case 470:
816                         c->colorspace = AVCOL_SPC_BT470BG;
817                         break;
818                 case 601:
819                         c->colorspace = ( 576 % c->height ) ? AVCOL_SPC_SMPTE170M : AVCOL_SPC_BT470BG;
820                         break;
821                 case 709:
822                         c->colorspace = AVCOL_SPC_BT709;
823                         break;
824                 }
825
826                 if ( mlt_properties_get( properties, "aspect" ) )
827                 {
828                         // "-aspect" on ffmpeg command line is display aspect ratio
829                         double ar = mlt_properties_get_double( properties, "aspect" );
830                         c->sample_aspect_ratio = av_d2q( ar * c->height / c->width, 255 );
831                 }
832                 else
833                 {
834                         c->sample_aspect_ratio.num = mlt_properties_get_int( properties, "sample_aspect_num" );
835                         c->sample_aspect_ratio.den = mlt_properties_get_int( properties, "sample_aspect_den" );
836                 }
837                 st->sample_aspect_ratio = c->sample_aspect_ratio;
838
839                 if ( mlt_properties_get_double( properties, "qscale" ) > 0 )
840                 {
841                         c->flags |= CODEC_FLAG_QSCALE;
842                         c->global_quality = FF_QP2LAMBDA * mlt_properties_get_double( properties, "qscale" );
843 #if LIBAVFORMAT_VERSION_MAJOR < 53
844                         st->quality = c->global_quality;
845 #endif
846                 }
847
848                 // Allow the user to override the video fourcc
849                 if ( mlt_properties_get( properties, "vtag" ) )
850                 {
851                         char *tail = NULL;
852                         const char *arg = mlt_properties_get( properties, "vtag" );
853                         int tag = strtol( arg, &tail, 0);
854                         if( !tail || *tail )
855                                 tag = arg[ 0 ] + ( arg[ 1 ] << 8 ) + ( arg[ 2 ] << 16 ) + ( arg[ 3 ] << 24 );
856                         c->codec_tag = tag;
857                 }
858
859                 // Some formats want stream headers to be seperate
860                 if ( oc->oformat->flags & AVFMT_GLOBALHEADER ) 
861                         c->flags |= CODEC_FLAG_GLOBAL_HEADER;
862
863                 // Translate these standard mlt consumer properties to ffmpeg
864                 if ( mlt_properties_get_int( properties, "progressive" ) == 0 &&
865                      mlt_properties_get_int( properties, "deinterlace" ) == 0 )
866                 {
867                         if ( ! mlt_properties_get( properties, "ildct" ) || mlt_properties_get_int( properties, "ildct" ) )
868                                 c->flags |= CODEC_FLAG_INTERLACED_DCT;
869                         if ( ! mlt_properties_get( properties, "ilme" ) || mlt_properties_get_int( properties, "ilme" ) )
870                                 c->flags |= CODEC_FLAG_INTERLACED_ME;
871                 }
872                 
873                 // parse the ratecontrol override string
874                 int i;
875                 char *rc_override = mlt_properties_get( properties, "rc_override" );
876                 for ( i = 0; rc_override; i++ )
877                 {
878                         int start, end, q;
879                         int e = sscanf( rc_override, "%d,%d,%d", &start, &end, &q );
880                         if ( e != 3 )
881                                 mlt_log_warning( MLT_CONSUMER_SERVICE( consumer ), "Error parsing rc_override\n" );
882                         c->rc_override = av_realloc( c->rc_override, sizeof( RcOverride ) * ( i + 1 ) );
883                         c->rc_override[i].start_frame = start;
884                         c->rc_override[i].end_frame = end;
885                         if ( q > 0 )
886                         {
887                                 c->rc_override[i].qscale = q;
888                                 c->rc_override[i].quality_factor = 1.0;
889                         }
890                         else
891                         {
892                                 c->rc_override[i].qscale = 0;
893                                 c->rc_override[i].quality_factor = -q / 100.0;
894                         }
895                         rc_override = strchr( rc_override, '/' );
896                         if ( rc_override )
897                                 rc_override++;
898                 }
899                 c->rc_override_count = i;
900                 if ( !c->rc_initial_buffer_occupancy )
901                         c->rc_initial_buffer_occupancy = c->rc_buffer_size * 3/4;
902                 c->intra_dc_precision = mlt_properties_get_int( properties, "dc" ) - 8;
903
904                 // Setup dual-pass
905                 i = mlt_properties_get_int( properties, "pass" );
906                 if ( i == 1 )
907                         c->flags |= CODEC_FLAG_PASS1;
908                 else if ( i == 2 )
909                         c->flags |= CODEC_FLAG_PASS2;
910                 if ( codec->id != AV_CODEC_ID_H264 && ( c->flags & ( CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2 ) ) )
911                 {
912                         char logfilename[1024];
913                         FILE *f;
914                         int size;
915                         char *logbuffer;
916
917                         snprintf( logfilename, sizeof(logfilename), "%s_2pass.log",
918                                 mlt_properties_get( properties, "passlogfile" ) ? mlt_properties_get( properties, "passlogfile" ) : mlt_properties_get( properties, "target" ) );
919                         if ( c->flags & CODEC_FLAG_PASS1 )
920                         {
921                                 f = fopen( logfilename, "w" );
922                                 if ( !f )
923                                         perror( logfilename );
924                                 else
925                                         mlt_properties_set_data( properties, "_logfile", f, 0, ( mlt_destructor )fclose, NULL );
926                         }
927                         else
928                         {
929                                 /* read the log file */
930                                 f = fopen( logfilename, "r" );
931                                 if ( !f )
932                                 {
933                                         perror(logfilename);
934                                 }
935                                 else
936                                 {
937                                         mlt_properties_set( properties, "_logfilename", logfilename );
938                                         fseek( f, 0, SEEK_END );
939                                         size = ftell( f );
940                                         fseek( f, 0, SEEK_SET );
941                                         logbuffer = av_malloc( size + 1 );
942                                         if ( !logbuffer )
943                                                 mlt_log_fatal( MLT_CONSUMER_SERVICE( consumer ), "Could not allocate log buffer\n" );
944                                         else
945                                         {
946                                                 if ( size >= 0 )
947                                                 {
948                                                         size = fread( logbuffer, 1, size, f );
949                                                         logbuffer[size] = '\0';
950                                                         c->stats_in = logbuffer;
951                                                 }
952                                         }
953                                         fclose( f );
954                                 }
955                         }
956                 }
957         }
958         else
959         {
960                 mlt_log_error( MLT_CONSUMER_SERVICE( consumer ), "Could not allocate a stream for video\n" );
961         }
962  
963         return st;
964 }
965
966 static AVFrame *alloc_picture( int pix_fmt, int width, int height )
967 {
968         // Allocate a frame
969         AVFrame *picture = avcodec_alloc_frame();
970
971         // Determine size of the 
972         int size = avpicture_get_size(pix_fmt, width, height);
973
974         // Allocate the picture buf
975         uint8_t *picture_buf = av_malloc(size);
976
977         // If we have both, then fill the image
978         if ( picture != NULL && picture_buf != NULL )
979         {
980                 // Fill the frame with the allocated buffer
981                 avpicture_fill( (AVPicture *)picture, picture_buf, pix_fmt, width, height);
982         }
983         else
984         {
985                 // Something failed - clean up what we can
986                 av_free( picture );
987                 av_free( picture_buf );
988                 picture = NULL;
989         }
990
991         return picture;
992 }
993
994 static int open_video( mlt_properties properties, AVFormatContext *oc, AVStream *st, const char *codec_name )
995 {
996         // Get the codec
997         AVCodecContext *video_enc = st->codec;
998
999         // find the video encoder
1000         AVCodec *codec;
1001         if ( codec_name )
1002                 codec = avcodec_find_encoder_by_name( codec_name );
1003         else
1004                 codec = avcodec_find_encoder( video_enc->codec_id );
1005
1006         // Process properties as AVOptions on the AVCodec
1007         if ( codec && codec->priv_class )
1008         {
1009                 char *vpre = mlt_properties_get( properties, "vpre" );
1010                 if ( !video_enc->priv_data && codec->priv_data_size )
1011                 {
1012                         video_enc->priv_data = av_mallocz( codec->priv_data_size );
1013                         *(const AVClass **) video_enc->priv_data = codec->priv_class;
1014 //                      av_opt_set_defaults( video_enc );
1015                 }
1016                 if ( vpre )
1017                 {
1018                         mlt_properties p = mlt_properties_load( vpre );
1019                         apply_properties( video_enc->priv_data, p, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
1020                         mlt_properties_close( p );
1021                 }
1022                 apply_properties( video_enc->priv_data, properties, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM );
1023         }
1024
1025         if( codec && codec->pix_fmts )
1026         {
1027                 const enum PixelFormat *p = codec->pix_fmts;
1028                 for( ; *p!=-1; p++ )
1029                 {
1030                         if( *p == video_enc->pix_fmt )
1031                                 break;
1032                 }
1033                 if( *p == -1 )
1034                         video_enc->pix_fmt = codec->pix_fmts[ 0 ];
1035         }
1036
1037 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(8<<8)+0)
1038         int result = codec && avcodec_open2( video_enc, codec, NULL ) >= 0;
1039 #else
1040         int result = codec && avcodec_open( video_enc, codec ) >= 0;
1041 #endif
1042         
1043         return result;
1044 }
1045
1046 void close_video(AVFormatContext *oc, AVStream *st)
1047 {
1048         if ( st && st->codec )
1049         {
1050                 av_freep( &st->codec->stats_in );
1051                 avcodec_close(st->codec);
1052         }
1053 }
1054
1055 static inline long time_difference( struct timeval *time1 )
1056 {
1057         struct timeval time2;
1058         gettimeofday( &time2, NULL );
1059         return time2.tv_sec * 1000000 + time2.tv_usec - time1->tv_sec * 1000000 - time1->tv_usec;
1060 }
1061
1062 static int mlt_write(void *h, uint8_t *buf, int size)
1063 {
1064         mlt_properties properties = (mlt_properties) h;
1065         mlt_events_fire( properties, "avformat-write", buf, size, NULL );
1066         return 0;
1067 }
1068
1069 static void write_transmitter( mlt_listener listener, mlt_properties owner, mlt_service service, void **args )
1070 {
1071         listener( owner, service, (uint8_t*) args[0], (int) args[1] );
1072 }
1073
1074 /** The main thread - the argument is simply the consumer.
1075 */
1076
1077 static void *consumer_thread( void *arg )
1078 {
1079         // Map the argument to the object
1080         mlt_consumer consumer = arg;
1081
1082         // Get the properties
1083         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
1084
1085         // Get the terminate on pause property
1086         int terminate_on_pause = mlt_properties_get_int( properties, "terminate_on_pause" );
1087         int terminated = 0;
1088
1089         // Determine if feed is slow (for realtime stuff)
1090         int real_time_output = mlt_properties_get_int( properties, "real_time" );
1091
1092         // Time structures
1093         struct timeval ante;
1094
1095         // Get the frame rate
1096         double fps = mlt_properties_get_double( properties, "fps" );
1097
1098         // Get width and height
1099         int width = mlt_properties_get_int( properties, "width" );
1100         int height = mlt_properties_get_int( properties, "height" );
1101         int img_width = width;
1102         int img_height = height;
1103
1104         // Get default audio properties
1105         int channels = mlt_properties_get_int( properties, "channels" );
1106         int total_channels = channels;
1107         int frequency = mlt_properties_get_int( properties, "frequency" );
1108         void *pcm = NULL;
1109         int samples = 0;
1110
1111         // AVFormat audio buffer and frame size
1112         int audio_outbuf_size = AUDIO_BUFFER_SIZE;
1113         uint8_t *audio_outbuf = av_malloc( audio_outbuf_size );
1114         int audio_input_nb_samples = 0;
1115
1116         // AVFormat video buffer and frame count
1117         int frame_count = 0;
1118         int video_outbuf_size = VIDEO_BUFFER_SIZE;
1119         uint8_t *video_outbuf = av_malloc( video_outbuf_size );
1120
1121         // Used for the frame properties
1122         mlt_frame frame = NULL;
1123         mlt_properties frame_properties = NULL;
1124
1125         // Get the queues
1126         mlt_deque queue = mlt_properties_get_data( properties, "frame_queue", NULL );
1127         sample_fifo fifo = mlt_properties_get_data( properties, "sample_fifo", NULL );
1128
1129         // Need two av pictures for converting
1130         AVFrame *converted_avframe = NULL;
1131         AVFrame *audio_avframe = NULL;
1132         AVFrame *video_avframe = alloc_picture( PIX_FMT_YUYV422, width, height );
1133
1134         // For receiving images from an mlt_frame
1135         uint8_t *image;
1136         mlt_image_format img_fmt = mlt_image_yuv422;
1137
1138         // For receiving audio samples back from the fifo
1139         uint8_t *audio_buf_1 = av_malloc( AUDIO_ENCODE_BUFFER_SIZE );
1140         uint8_t *audio_buf_2 = NULL;
1141         int count = 0;
1142
1143         // Allocate the context
1144         AVFormatContext *oc = avformat_alloc_context( );
1145
1146         // Streams
1147         AVStream *video_st = NULL;
1148         AVStream *audio_st[ MAX_AUDIO_STREAMS ];
1149
1150         // Time stamps
1151         double audio_pts = 0;
1152         double video_pts = 0;
1153
1154         // Frames dispatched
1155         long int frames = 0;
1156         long int total_time = 0;
1157
1158         // Determine the format
1159         AVOutputFormat *fmt = NULL;
1160         const char *filename = mlt_properties_get( properties, "target" );
1161         char *format = mlt_properties_get( properties, "f" );
1162         char *vcodec = mlt_properties_get( properties, "vcodec" );
1163         char *acodec = mlt_properties_get( properties, "acodec" );
1164         AVCodec *audio_codec = NULL;
1165         AVCodec *video_codec = NULL;
1166         
1167         // Used to store and override codec ids
1168         int audio_codec_id;
1169         int video_codec_id;
1170
1171         // Misc
1172         char key[27];
1173         mlt_properties frame_meta_properties = mlt_properties_new();
1174
1175         // Initialize audio_st
1176         int i = MAX_AUDIO_STREAMS;
1177         while ( i-- )
1178                 audio_st[i] = NULL;
1179
1180         // Check for user selected format first
1181         if ( format != NULL )
1182                 fmt = av_guess_format( format, NULL, NULL );
1183
1184         // Otherwise check on the filename
1185         if ( fmt == NULL && filename != NULL )
1186                 fmt = av_guess_format( NULL, filename, NULL );
1187
1188         // Otherwise default to mpeg
1189         if ( fmt == NULL )
1190                 fmt = av_guess_format( "mpeg", NULL, NULL );
1191
1192         // We need a filename - default to stdout?
1193         if ( filename == NULL || !strcmp( filename, "" ) )
1194                 filename = "pipe:";
1195
1196         // Get the codec ids selected
1197         audio_codec_id = fmt->audio_codec;
1198         video_codec_id = fmt->video_codec;
1199
1200         // Check for audio codec overides
1201         if ( ( acodec && strcmp( acodec, "none" ) == 0 ) || mlt_properties_get_int( properties, "an" ) )
1202                 audio_codec_id = AV_CODEC_ID_NONE;
1203         else if ( acodec )
1204         {
1205                 audio_codec = avcodec_find_encoder_by_name( acodec );
1206                 if ( audio_codec )
1207                 {
1208                         audio_codec_id = audio_codec->id;
1209                         if ( audio_codec_id == AV_CODEC_ID_AC3 && avcodec_find_encoder_by_name( "ac3_fixed" ) )
1210                         {
1211                                 mlt_properties_set( properties, "_acodec", "ac3_fixed" );
1212                                 acodec = mlt_properties_get( properties, "_acodec" );
1213                                 audio_codec = avcodec_find_encoder_by_name( acodec );
1214                         }
1215                         else if ( !strcmp( acodec, "aac" ) )
1216                         {
1217                                 mlt_properties_set( properties, "astrict", "experimental" );
1218                         }
1219                 }
1220                 else
1221                 {
1222                         audio_codec_id = AV_CODEC_ID_NONE;
1223                         mlt_log_warning( MLT_CONSUMER_SERVICE( consumer ), "audio codec %s unrecognised - ignoring\n", acodec );
1224                 }
1225         }
1226         else
1227         {
1228                 audio_codec = avcodec_find_encoder( audio_codec_id );
1229         }
1230
1231         // Check for video codec overides
1232         if ( ( vcodec && strcmp( vcodec, "none" ) == 0 ) || mlt_properties_get_int( properties, "vn" ) )
1233                 video_codec_id = AV_CODEC_ID_NONE;
1234         else if ( vcodec )
1235         {
1236                 video_codec = avcodec_find_encoder_by_name( vcodec );
1237                 if ( video_codec )
1238                 {
1239                         video_codec_id = video_codec->id;
1240                 }
1241                 else
1242                 {
1243                         video_codec_id = AV_CODEC_ID_NONE;
1244                         mlt_log_warning( MLT_CONSUMER_SERVICE( consumer ), "video codec %s unrecognised - ignoring\n", vcodec );
1245                 }
1246         }
1247         else
1248         {
1249                 video_codec = avcodec_find_encoder( video_codec_id );
1250         }
1251
1252         // Write metadata
1253         for ( i = 0; i < mlt_properties_count( properties ); i++ )
1254         {
1255                 char *name = mlt_properties_get_name( properties, i );
1256                 if ( name && !strncmp( name, "meta.attr.", 10 ) )
1257                 {
1258                         char *key = strdup( name + 10 );
1259                         char *markup = strrchr( key, '.' );
1260                         if ( markup && !strcmp( markup, ".markup") )
1261                         {
1262                                 markup[0] = '\0';
1263                                 if ( !strstr( key, ".stream." ) )
1264 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
1265                                         av_dict_set( &oc->metadata, key, mlt_properties_get_value( properties, i ), 0 );
1266 #else
1267                                         av_metadata_set2( &oc->metadata, key, mlt_properties_get_value( properties, i ), 0 );
1268 #endif
1269                         }
1270                         free( key );
1271                 }
1272         }
1273
1274         oc->oformat = fmt;
1275         snprintf( oc->filename, sizeof(oc->filename), "%s", filename );
1276
1277         // Get a frame now, so we can set some AVOptions from properties.
1278         frame = mlt_consumer_rt_frame( consumer );
1279
1280         // Set the timecode from the MLT metadata if available.
1281     if ( frame )
1282     {
1283         const char *timecode = mlt_properties_get( MLT_FRAME_PROPERTIES(frame), "meta.attr.vitc.markup" );
1284         if ( timecode && strcmp( timecode, "" ) )
1285         {
1286             mlt_properties_set( properties, "timecode", timecode );
1287             if ( strchr( timecode, ';' ) )
1288                 mlt_properties_set_int( properties, "drop_frame_timecode", 1 );
1289         }
1290     }
1291
1292         // Add audio and video streams
1293         if ( video_codec_id != AV_CODEC_ID_NONE )
1294                 video_st = add_video_stream( consumer, oc, video_codec );
1295         if ( audio_codec_id != AV_CODEC_ID_NONE )
1296         {
1297                 int is_multi = 0;
1298
1299                 total_channels = 0;
1300                 // multitrack audio
1301                 for ( i = 0; i < MAX_AUDIO_STREAMS; i++ )
1302                 {
1303                         sprintf( key, "channels.%d", i );
1304                         int j = mlt_properties_get_int( properties, key );
1305                         if ( j )
1306                         {
1307                                 is_multi = 1;
1308                                 total_channels += j;
1309                                 audio_st[i] = add_audio_stream( consumer, oc, audio_codec, j );
1310                         }
1311                 }
1312                 // single track
1313                 if ( !is_multi )
1314                 {
1315                         audio_st[0] = add_audio_stream( consumer, oc, audio_codec, channels );
1316                         total_channels = channels;
1317                 }
1318         }
1319         mlt_properties_set_int( properties, "channels", total_channels );
1320
1321         // Audio format is determined when adding the audio stream
1322         mlt_audio_format aud_fmt = mlt_audio_none;
1323         if ( audio_st[0] )
1324                 aud_fmt = get_mlt_audio_format( audio_st[0]->codec->sample_fmt );
1325         int sample_bytes = mlt_audio_format_size( aud_fmt, 1, 1 );
1326         sample_bytes = sample_bytes ? sample_bytes : 1; // prevent divide by zero
1327
1328         // Set the parameters (even though we have none...)
1329 #if LIBAVFORMAT_VERSION_INT < ((53<<16)+(2<<8)+0)
1330         if ( av_set_parameters(oc, NULL) >= 0 )
1331 #endif
1332         {
1333 #if LIBAVFORMAT_VERSION_MAJOR >= 53
1334                 if ( mlt_properties_get( properties, "muxpreload" ) && ! mlt_properties_get( properties, "preload" ) )
1335                         mlt_properties_set_double( properties, "preload", mlt_properties_get_double( properties, "muxpreload" ) );
1336 #else
1337                 oc->preload = ( int )( mlt_properties_get_double( properties, "muxpreload" ) * AV_TIME_BASE );
1338 #endif
1339                 oc->max_delay= ( int )( mlt_properties_get_double( properties, "muxdelay" ) * AV_TIME_BASE );
1340
1341                 // Process properties as AVOptions
1342                 char *fpre = mlt_properties_get( properties, "fpre" );
1343                 if ( fpre )
1344                 {
1345                         mlt_properties p = mlt_properties_load( fpre );
1346                         apply_properties( oc, p, AV_OPT_FLAG_ENCODING_PARAM );
1347                         if ( oc->oformat && oc->oformat->priv_class && oc->priv_data )
1348                                 apply_properties( oc->priv_data, p, AV_OPT_FLAG_ENCODING_PARAM );
1349                         mlt_properties_close( p );
1350                 }
1351                 apply_properties( oc, properties, AV_OPT_FLAG_ENCODING_PARAM );
1352                 if ( oc->oformat && oc->oformat->priv_class && oc->priv_data )
1353                         apply_properties( oc->priv_data, properties, AV_OPT_FLAG_ENCODING_PARAM );
1354
1355                 if ( video_st && !open_video( properties, oc, video_st, vcodec? vcodec : NULL ) )
1356                         video_st = NULL;
1357                 for ( i = 0; i < MAX_AUDIO_STREAMS && audio_st[i]; i++ )
1358                 {
1359                         audio_input_nb_samples = open_audio( properties, oc, audio_st[i], audio_outbuf_size,
1360                                 acodec? acodec : NULL );
1361                         if ( !audio_input_nb_samples )
1362                         {
1363                                 // Remove the audio stream from the output context
1364                                 int j;
1365                                 for ( j = 0; j < oc->nb_streams; j++ )
1366                                 {
1367                                         if ( oc->streams[j] == audio_st[i] )
1368                                                 av_freep( &oc->streams[j] );
1369                                 }
1370                                 --oc->nb_streams;
1371                                 audio_st[i] = NULL;
1372                         }
1373                 }
1374
1375                 // Setup custom I/O if redirecting
1376                 if ( mlt_properties_get_int( properties, "redirect" ) )
1377                 {
1378                         int buffer_size = 32768;
1379                         unsigned char *buffer = av_malloc( buffer_size );
1380 #if LIBAVFORMAT_VERSION_MAJOR >= 53
1381                         AVIOContext* io = avio_alloc_context( buffer, buffer_size, 1, properties, NULL, mlt_write, NULL );
1382 #else
1383                         ByteIOContext* io = av_alloc_put_byte( buffer, buffer_size, 1, properties, NULL, mlt_write, NULL );
1384 #endif
1385                         if ( buffer && io )
1386                         {
1387                                 oc->pb = io;
1388 #if LIBAVFORMAT_VERSION_MAJOR >= 53
1389                                 oc->flags |= AVFMT_FLAG_CUSTOM_IO;
1390 #endif
1391                                 mlt_properties_set_data( properties, "avio_buffer", buffer, buffer_size, av_free, NULL );
1392                                 mlt_properties_set_data( properties, "avio_context", io, 0, av_free, NULL );
1393                                 mlt_events_register( properties, "avformat-write", (mlt_transmitter) write_transmitter );
1394                         }
1395                         else
1396                         {
1397                                 av_free( buffer );
1398                                 mlt_log_error( MLT_CONSUMER_SERVICE(consumer), "failed to setup output redirection\n" );
1399                         }
1400                 }
1401                 // Open the output file, if needed
1402                 else if ( !( fmt->flags & AVFMT_NOFILE ) )
1403                 {
1404 #if LIBAVFORMAT_VERSION_MAJOR >= 53
1405                         if ( avio_open( &oc->pb, filename, AVIO_FLAG_WRITE ) < 0 )
1406 #else
1407                         if ( url_fopen( &oc->pb, filename, URL_WRONLY ) < 0 )
1408 #endif
1409                         {
1410                                 mlt_log_error( MLT_CONSUMER_SERVICE( consumer ), "Could not open '%s'\n", filename );
1411                                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1412                                 goto on_fatal_error;
1413                         }
1414                 }
1415         
1416                 // Write the stream header.
1417                 if ( mlt_properties_get_int( properties, "running" ) )
1418 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(2<<8)+0)
1419                         avformat_write_header( oc, NULL );
1420 #else
1421                         av_write_header( oc );
1422 #endif
1423         }
1424 #if LIBAVFORMAT_VERSION_INT < ((53<<16)+(2<<8)+0)
1425         else
1426         {
1427                 mlt_log_error( MLT_CONSUMER_SERVICE( consumer ), "Invalid output format parameters\n" );
1428                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1429                 goto on_fatal_error;
1430         }
1431 #endif
1432
1433         // Last check - need at least one stream
1434         if ( !audio_st[0] && !video_st )
1435         {
1436                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1437                 goto on_fatal_error;
1438         }
1439
1440         // Allocate picture
1441         if ( video_st )
1442                 converted_avframe = alloc_picture( video_st->codec->pix_fmt, width, height );
1443
1444 #if LIBAVCODEC_VERSION_MAJOR >= 55
1445         // Allocate audio AVFrame
1446         if ( audio_st[0] )
1447         {
1448                 audio_avframe = avcodec_alloc_frame();
1449                 if ( audio_avframe ) {
1450                         AVCodecContext *c = audio_st[0]->codec;
1451                         audio_avframe->format = c->sample_fmt;
1452                         audio_avframe->nb_samples = audio_input_nb_samples;
1453                         audio_avframe->channel_layout = c->channel_layout;
1454                 } else {
1455                         mlt_log_error( MLT_CONSUMER_SERVICE(consumer), "failed to allocate audio AVFrame\n" );
1456                         mlt_events_fire( properties, "consumer-fatal-error", NULL );
1457                         goto on_fatal_error;
1458                 }
1459         }
1460 #endif
1461
1462         // Get the starting time (can ignore the times above)
1463         gettimeofday( &ante, NULL );
1464
1465         // Loop while running
1466         while( mlt_properties_get_int( properties, "running" ) &&
1467                ( !terminated || ( video_st && mlt_deque_count( queue ) ) ) )
1468         {
1469                 if ( !frame )
1470                         frame = mlt_consumer_rt_frame( consumer );
1471
1472                 // Check that we have a frame to work with
1473                 if ( frame != NULL )
1474                 {
1475                         // Increment frames dispatched
1476                         frames ++;
1477
1478                         // Default audio args
1479                         frame_properties = MLT_FRAME_PROPERTIES( frame );
1480
1481                         // Check for the terminated condition
1482                         terminated = terminate_on_pause && mlt_properties_get_double( frame_properties, "_speed" ) == 0.0;
1483
1484                         // Get audio and append to the fifo
1485                         if ( !terminated && audio_st[0] )
1486                         {
1487                                 samples = mlt_sample_calculator( fps, frequency, count ++ );
1488                                 channels = total_channels;
1489                                 mlt_frame_get_audio( frame, &pcm, &aud_fmt, &frequency, &channels, &samples );
1490
1491                                 // Save the audio channel remap properties for later
1492                                 mlt_properties_pass( frame_meta_properties, frame_properties, "meta.map.audio." );
1493
1494                                 // Create the fifo if we don't have one
1495                                 if ( fifo == NULL )
1496                                 {
1497                                         fifo = sample_fifo_init( frequency, channels );
1498                                         mlt_properties_set_data( properties, "sample_fifo", fifo, 0, ( mlt_destructor )sample_fifo_close, NULL );
1499                                 }
1500                                 if ( pcm )
1501                                 {
1502                                         // Silence if not normal forward speed
1503                                         if ( mlt_properties_get_double( frame_properties, "_speed" ) != 1.0 )
1504                                                 memset( pcm, 0, samples * channels * sample_bytes );
1505
1506                                         // Append the samples
1507                                         sample_fifo_append( fifo, pcm, samples * channels * sample_bytes );
1508                                         total_time += ( samples * 1000000 ) / frequency;
1509                                 }
1510                                 if ( !video_st )
1511                                         mlt_events_fire( properties, "consumer-frame-show", frame, NULL );
1512                         }
1513
1514                         // Encode the image
1515                         if ( !terminated && video_st )
1516                                 mlt_deque_push_back( queue, frame );
1517                         else
1518                                 mlt_frame_close( frame );
1519                         frame = NULL;
1520                 }
1521
1522                 // While we have stuff to process, process...
1523                 while ( 1 )
1524                 {
1525                         // Write interleaved audio and video frames
1526                         if ( !video_st || ( video_st && audio_st[0] && audio_pts < video_pts ) )
1527                         {
1528                                 // Write audio
1529                                 if ( ( video_st && terminated ) || ( channels * audio_input_nb_samples ) < sample_fifo_used( fifo ) / sample_bytes )
1530                                 {
1531                                         int j = 0; // channel offset into interleaved source buffer
1532                                         int n = FFMIN( FFMIN( channels * audio_input_nb_samples, sample_fifo_used( fifo ) / sample_bytes ), AUDIO_ENCODE_BUFFER_SIZE );
1533
1534                                         // Get the audio samples
1535                                         if ( n > 0 )
1536                                         {
1537                                                 sample_fifo_fetch( fifo, audio_buf_1, n * sample_bytes );
1538                                         }
1539                                         else if ( audio_codec_id == AV_CODEC_ID_VORBIS && terminated )
1540                                         {
1541                                                 // This prevents an infinite loop when some versions of vorbis do not
1542                                                 // increment pts when encoding silence.
1543                                                 audio_pts = video_pts;
1544                                                 break;
1545                                         }
1546                                         else
1547                                         {
1548                                                 memset( audio_buf_1, 0, AUDIO_ENCODE_BUFFER_SIZE );
1549                                         }
1550                                         samples = n / channels;
1551
1552                                         // For each output stream
1553                                         for ( i = 0; i < MAX_AUDIO_STREAMS && audio_st[i] && j < total_channels; i++ )
1554                                         {
1555                                                 AVStream *stream = audio_st[i];
1556                                                 AVCodecContext *codec = stream->codec;
1557                                                 AVPacket pkt;
1558
1559                                                 av_init_packet( &pkt );
1560                                                 pkt.data = audio_outbuf;
1561                                                 pkt.size = audio_outbuf_size;
1562
1563                                                 // Optimized for single track and no channel remap
1564                                                 if ( !audio_st[1] && !mlt_properties_count( frame_meta_properties ) )
1565                                                 {
1566                                                         void* p = audio_buf_1;
1567 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
1568                                                         if ( codec->sample_fmt == AV_SAMPLE_FMT_FLTP )
1569                                                                 p = interleaved_to_planar( samples, channels, p, sizeof( float ) );
1570                                                         else if ( codec->sample_fmt == AV_SAMPLE_FMT_S16P )
1571                                                                 p = interleaved_to_planar( samples, channels, p, sizeof( int16_t ) );
1572                                                         else if ( codec->sample_fmt == AV_SAMPLE_FMT_S32P )
1573                                                                 p = interleaved_to_planar( samples, channels, p, sizeof( int32_t ) );
1574                                                         else if ( codec->sample_fmt == AV_SAMPLE_FMT_U8P )
1575                                                                 p = interleaved_to_planar( samples, channels, p, sizeof( uint8_t ) );
1576 #endif
1577 #if LIBAVCODEC_VERSION_MAJOR >= 55
1578                                                         audio_avframe->nb_samples = samples;
1579                                                         avcodec_fill_audio_frame( audio_avframe, codec->channels, codec->sample_fmt,
1580                                                                 (const uint8_t*) p, AUDIO_ENCODE_BUFFER_SIZE, 0 );
1581                                                         int got_packet = 0;
1582                                                         int ret = avcodec_encode_audio2( codec, &pkt, audio_avframe, &got_packet );
1583                                                         if ( ret < 0 )
1584                                                                 pkt.size = ret;
1585                                                         else if ( !got_packet )
1586                                                                 pkt.size = 0;
1587 #else
1588                                                         codec->frame_size = samples;
1589                                                         pkt.size = avcodec_encode_audio( codec, audio_outbuf, audio_outbuf_size, p );
1590                                                         pkt.pts = codec->coded_frame? codec->coded_frame->pts : AV_NOPTS_VALUE;
1591                                                         pkt.flags |= PKT_FLAG_KEY;
1592 #endif
1593
1594 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
1595                                                         if ( p != audio_buf_1 )
1596                                                                 mlt_pool_release( p );
1597 #endif
1598                                                 }
1599                                                 else
1600                                                 {
1601                                                         // Extract the audio channels according to channel mapping
1602                                                         int dest_offset = 0; // channel offset into interleaved dest buffer
1603
1604                                                         // Get the number of channels for this stream
1605                                                         sprintf( key, "channels.%d", i );
1606                                                         int current_channels = mlt_properties_get_int( properties, key );
1607
1608                                                         // Clear the destination audio buffer.
1609                                                         if ( !audio_buf_2 )
1610                                                                 audio_buf_2 = av_mallocz( AUDIO_ENCODE_BUFFER_SIZE );
1611                                                         else
1612                                                                 memset( audio_buf_2, 0, AUDIO_ENCODE_BUFFER_SIZE );
1613
1614                                                         // For each output channel
1615                                                         while ( dest_offset < current_channels && j < total_channels )
1616                                                         {
1617                                                                 int map_start = -1, map_channels = 0;
1618                                                                 int source_offset = 0;
1619                                                                 int k;
1620
1621                                                                 // Look for a mapping that starts at j
1622                                                                 for ( k = 0; k < (MAX_AUDIO_STREAMS * 2) && map_start != j; k++ )
1623                                                                 {
1624                                                                         sprintf( key, "%d.channels", k );
1625                                                                         map_channels = mlt_properties_get_int( frame_meta_properties, key );
1626                                                                         sprintf( key, "%d.start", k );
1627                                                                         if ( mlt_properties_get( frame_meta_properties, key ) )
1628                                                                                 map_start = mlt_properties_get_int( frame_meta_properties, key );
1629                                                                         if ( map_start != j )
1630                                                                                 source_offset += map_channels;
1631                                                                 }
1632
1633                                                                 // If no mapping
1634                                                                 if ( map_start != j )
1635                                                                 {
1636                                                                         map_channels = current_channels;
1637                                                                         source_offset = j;
1638                                                                 }
1639
1640                                                                 // Copy samples if source offset valid
1641                                                                 if ( source_offset < channels )
1642                                                                 {
1643                                                                         // Interleave the audio buffer with the # channels for this stream/mapping.
1644                                                                         for ( k = 0; k < map_channels; k++, j++, source_offset++, dest_offset++ )
1645                                                                         {
1646                                                                                 void *src = audio_buf_1 + source_offset * sample_bytes;
1647                                                                                 void *dest = audio_buf_2 + dest_offset * sample_bytes;
1648                                                                                 int s = samples + 1;
1649
1650                                                                                 while ( --s ) {
1651                                                                                         memcpy( dest, src, sample_bytes );
1652                                                                                         dest += current_channels * sample_bytes;
1653                                                                                         src += channels * sample_bytes;
1654                                                                                 }
1655                                                                         }
1656                                                                 }
1657                                                                 // Otherwise silence
1658                                                                 else
1659                                                                 {
1660                                                                         j += current_channels;
1661                                                                         dest_offset += current_channels;
1662                                                                 }
1663                                                         }
1664 #if LIBAVCODEC_VERSION_MAJOR >= 55
1665                                                         avcodec_fill_audio_frame( audio_avframe, codec->channels, codec->sample_fmt,
1666                                                                 (const uint8_t*) audio_buf_2, AUDIO_ENCODE_BUFFER_SIZE, 0 );
1667                                                         int got_packet = 0;
1668                                                         int ret = avcodec_encode_audio2( codec, &pkt, audio_avframe, &got_packet );
1669                                                         if ( ret < 0 )
1670                                                                 pkt.size = ret;
1671                                                         else if ( !got_packet )
1672                                                                 pkt.size = 0;
1673 #else
1674                                                         pkt.size = avcodec_encode_audio( codec, audio_outbuf, audio_outbuf_size, (short*) audio_buf_2 );
1675                                                         pkt.pts = codec->coded_frame? codec->coded_frame->pts : AV_NOPTS_VALUE;
1676                                                         pkt.flags |= PKT_FLAG_KEY;
1677 #endif
1678                                                 }
1679
1680                                                 if ( pkt.size > 0 )
1681                                                 {
1682                                                         // Write the compressed frame in the media file
1683                                                         if ( pkt.pts != AV_NOPTS_VALUE )
1684                                                                 pkt.pts = av_rescale_q( pkt.pts, codec->time_base, stream->time_base );
1685 #if LIBAVCODEC_VERSION_MAJOR >= 55
1686                                                         if ( pkt.dts != AV_NOPTS_VALUE )
1687                                                                 pkt.dts = av_rescale_q( pkt.dts, codec->time_base, stream->time_base );
1688                                                         if ( pkt.duration > 0 )
1689                                                                 pkt.duration = av_rescale_q( pkt.duration, codec->time_base, stream->time_base );
1690 #endif
1691                                                         pkt.stream_index = stream->index;
1692                                                         if ( av_interleaved_write_frame( oc, &pkt ) )
1693                                                         {
1694                                                                 mlt_log_fatal( MLT_CONSUMER_SERVICE( consumer ), "error writing audio frame\n" );
1695                                                                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1696                                                                 goto on_fatal_error;
1697                                                         }
1698                                                 }
1699                                                 else if ( pkt.size < 0 )
1700                                                 {
1701                                                         mlt_log_warning( MLT_CONSUMER_SERVICE( consumer ), "error with audio encode %d\n", frame_count );
1702                                                 }
1703
1704                                                 mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), " frame_size %d\n", codec->frame_size );
1705                                                 if ( i == 0 )
1706                                                 {
1707                                                         audio_pts = (double)stream->pts.val * av_q2d( stream->time_base );
1708                                                 }
1709                                         }
1710                                 }
1711                                 else
1712                                 {
1713                                         break;
1714                                 }
1715                         }
1716                         else if ( video_st )
1717                         {
1718                                 // Write video
1719                                 if ( mlt_deque_count( queue ) )
1720                                 {
1721                                         int ret = 0;
1722                                         AVCodecContext *c;
1723
1724                                         frame = mlt_deque_pop_front( queue );
1725                                         frame_properties = MLT_FRAME_PROPERTIES( frame );
1726
1727                                         c = video_st->codec;
1728                                         
1729                                         if ( mlt_properties_get_int( frame_properties, "rendered" ) )
1730                                         {
1731                                                 int i = 0;
1732                                                 uint8_t *p;
1733                                                 uint8_t *q;
1734
1735                                                 mlt_frame_get_image( frame, &image, &img_fmt, &img_width, &img_height, 0 );
1736
1737                                                 q = image;
1738
1739                                                 // Convert the mlt frame to an AVPicture
1740                                                 for ( i = 0; i < height; i ++ )
1741                                                 {
1742                                                         p = video_avframe->data[ 0 ] + i * video_avframe->linesize[ 0 ];
1743                                                         memcpy( p, q, width * 2 );
1744                                                         q += width * 2;
1745                                                 }
1746
1747                                                 // Do the colour space conversion
1748                                                 int flags = SWS_BICUBIC;
1749 #ifdef USE_MMX
1750                                                 flags |= SWS_CPU_CAPS_MMX;
1751 #endif
1752 #ifdef USE_SSE
1753                                                 flags |= SWS_CPU_CAPS_MMX2;
1754 #endif
1755                                                 struct SwsContext *context = sws_getContext( width, height, PIX_FMT_YUYV422,
1756                                                         width, height, video_st->codec->pix_fmt, flags, NULL, NULL, NULL);
1757                                                 sws_scale( context, (const uint8_t* const*) video_avframe->data, video_avframe->linesize, 0, height,
1758                                                         converted_avframe->data, converted_avframe->linesize);
1759                                                 sws_freeContext( context );
1760
1761                                                 mlt_events_fire( properties, "consumer-frame-show", frame, NULL );
1762
1763                                                 // Apply the alpha if applicable
1764                                                 if ( video_st->codec->pix_fmt == PIX_FMT_RGB32 )
1765                                                 {
1766                                                         uint8_t *alpha = mlt_frame_get_alpha_mask( frame );
1767                                                         register int n;
1768
1769                                                         for ( i = 0; i < height; i ++ )
1770                                                         {
1771                                                                 n = ( width + 7 ) / 8;
1772                                                                 p = converted_avframe->data[ 0 ] + i * converted_avframe->linesize[ 0 ] + 3;
1773
1774                                                                 switch( width % 8 )
1775                                                                 {
1776                                                                         case 0: do { *p = *alpha++; p += 4;
1777                                                                         case 7:          *p = *alpha++; p += 4;
1778                                                                         case 6:          *p = *alpha++; p += 4;
1779                                                                         case 5:          *p = *alpha++; p += 4;
1780                                                                         case 4:          *p = *alpha++; p += 4;
1781                                                                         case 3:          *p = *alpha++; p += 4;
1782                                                                         case 2:          *p = *alpha++; p += 4;
1783                                                                         case 1:          *p = *alpha++; p += 4;
1784                                                                                         }
1785                                                                                         while( --n );
1786                                                                 }
1787                                                         }
1788                                                 }
1789                                         }
1790
1791                                         if (oc->oformat->flags & AVFMT_RAWPICTURE) 
1792                                         {
1793                                                 // raw video case. The API will change slightly in the near future for that
1794                                                 AVPacket pkt;
1795                                                 av_init_packet(&pkt);
1796
1797                                                 // Set frame interlace hints
1798                                                 c->coded_frame->interlaced_frame = !mlt_properties_get_int( frame_properties, "progressive" );
1799                                                 c->coded_frame->top_field_first = mlt_properties_get_int( frame_properties, "top_field_first" );
1800 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(61<<8)+100)
1801                                                 if ( mlt_properties_get_int( frame_properties, "progressive" ) )
1802                                                         c->field_order = AV_FIELD_PROGRESSIVE;
1803                                                 else
1804                                                         c->field_order = (mlt_properties_get_int( frame_properties, "top_field_first" )) ? AV_FIELD_TT : AV_FIELD_BB;
1805 #endif
1806                                                 pkt.flags |= PKT_FLAG_KEY;
1807                                                 pkt.stream_index = video_st->index;
1808                                                 pkt.data = (uint8_t *)converted_avframe;
1809                                                 pkt.size = sizeof(AVPicture);
1810
1811                                                 ret = av_write_frame(oc, &pkt);
1812                                                 video_pts += c->frame_size;
1813                                         } 
1814                                         else 
1815                                         {
1816                                                 AVPacket pkt;
1817                                                 av_init_packet( &pkt );
1818                                                 pkt.data = video_outbuf;
1819                                                 pkt.size = video_outbuf_size;
1820
1821                                                 // Set the quality
1822                                                 converted_avframe->quality = c->global_quality;
1823
1824                                                 // Set frame interlace hints
1825                                                 converted_avframe->interlaced_frame = !mlt_properties_get_int( frame_properties, "progressive" );
1826                                                 converted_avframe->top_field_first = mlt_properties_get_int( frame_properties, "top_field_first" );
1827                                                 converted_avframe->pts = frame_count;
1828
1829                                                 // Encode the image
1830 #if LIBAVCODEC_VERSION_MAJOR >= 55
1831                                                 int got_packet;
1832                                                 ret = avcodec_encode_video2( c, &pkt, converted_avframe, &got_packet );
1833                                                 if ( ret < 0 )
1834                                                         pkt.size = ret;
1835                                                 else if ( !got_packet )
1836                                                         pkt.size = 0;
1837 #else
1838                                                 pkt.size = avcodec_encode_video(c, video_outbuf, video_outbuf_size, converted_avframe );
1839                                                 pkt.pts = c->coded_frame? c->coded_frame->pts : AV_NOPTS_VALUE;
1840                                                 if ( c->coded_frame && c->coded_frame->key_frame )
1841                                                         pkt.flags |= PKT_FLAG_KEY;
1842 #endif
1843
1844                                                 // If zero size, it means the image was buffered
1845                                                 if ( pkt.size > 0 )
1846                                                 {
1847                                                         if ( pkt.pts != AV_NOPTS_VALUE )
1848                                                                 pkt.pts = av_rescale_q( pkt.pts, c->time_base, video_st->time_base );
1849 #if LIBAVCODEC_VERSION_MAJOR >= 55
1850                                                         if ( pkt.dts != AV_NOPTS_VALUE )
1851                                                                 pkt.dts = av_rescale_q( pkt.dts, c->time_base, video_st->time_base );
1852 #endif
1853                                                         pkt.stream_index = video_st->index;
1854
1855                                                         // write the compressed frame in the media file
1856                                                         ret = av_interleaved_write_frame(oc, &pkt);
1857                                                         mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), " frame_size %d\n", c->frame_size );
1858                                                         video_pts = (double)video_st->pts.val * av_q2d( video_st->time_base );
1859                                                         
1860                                                         // Dual pass logging
1861                                                         if ( mlt_properties_get_data( properties, "_logfile", NULL ) && c->stats_out )
1862                                                                 fprintf( mlt_properties_get_data( properties, "_logfile", NULL ), "%s", c->stats_out );
1863                                                 } 
1864                                                 else if ( pkt.size < 0 )
1865                                                 {
1866                                                         mlt_log_warning( MLT_CONSUMER_SERVICE( consumer ), "error with video encode %d\n", frame_count );
1867                                                         ret = 0;
1868                                                 }
1869                                         }
1870                                         frame_count++;
1871                                         if ( ret )
1872                                         {
1873                                                 mlt_log_fatal( MLT_CONSUMER_SERVICE( consumer ), "error writing video frame\n" );
1874                                                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1875                                                 goto on_fatal_error;
1876                                         }
1877                                         mlt_frame_close( frame );
1878                                         frame = NULL;
1879                                 }
1880                                 else
1881                                 {
1882                                         break;
1883                                 }
1884                         }
1885                         if ( audio_st[0] )
1886                                 mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), "audio pts %"PRId64" (%f) ", audio_st[0]->pts.val, audio_pts );
1887                         if ( video_st )
1888                                 mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), "video pts %"PRId64" (%f) ", video_st->pts.val, video_pts );
1889                         mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), "\n" );
1890                 }
1891
1892                 if ( real_time_output == 1 && frames % 2 == 0 )
1893                 {
1894                         long passed = time_difference( &ante );
1895                         if ( fifo != NULL )
1896                         {
1897                                 long pending = ( ( ( long )sample_fifo_used( fifo ) / sample_bytes * 1000 ) / frequency ) * 1000;
1898                                 passed -= pending;
1899                         }
1900                         if ( passed < total_time )
1901                         {
1902                                 long total = ( total_time - passed );
1903                                 struct timespec t = { total / 1000000, ( total % 1000000 ) * 1000 };
1904                                 nanosleep( &t, NULL );
1905                         }
1906                 }
1907         }
1908
1909         // Flush the encoder buffers
1910         if ( real_time_output <= 0 )
1911         {
1912                 // Flush audio fifo
1913                 // TODO: flush all audio streams
1914                 if ( audio_st[0] && audio_st[0]->codec->frame_size > 1 ) for (;;)
1915                 {
1916                         AVCodecContext *c = audio_st[0]->codec;
1917                         AVPacket pkt;
1918                         av_init_packet( &pkt );
1919                         pkt.data = audio_outbuf;
1920                         pkt.size = 0;
1921
1922                         if ( fifo &&
1923                                 ( channels * audio_input_nb_samples < sample_fifo_used( fifo ) / sample_bytes ) )
1924                         {
1925                                 sample_fifo_fetch( fifo, audio_buf_1, channels * audio_input_nb_samples * sample_bytes );
1926                                 void* p = audio_buf_1;
1927 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
1928                                 if ( c->sample_fmt == AV_SAMPLE_FMT_FLTP )
1929                                         p = interleaved_to_planar( audio_input_nb_samples, channels, p, sizeof( float ) );
1930                                 else if ( c->sample_fmt == AV_SAMPLE_FMT_S16P )
1931                                         p = interleaved_to_planar( audio_input_nb_samples, channels, p, sizeof( int16_t ) );
1932                                 else if ( c->sample_fmt == AV_SAMPLE_FMT_S32P )
1933                                         p = interleaved_to_planar( audio_input_nb_samples, channels, p, sizeof( int32_t ) );
1934                                 else if ( c->sample_fmt == AV_SAMPLE_FMT_U8P )
1935                                         p = interleaved_to_planar( audio_input_nb_samples, channels, p, sizeof( uint8_t ) );
1936 #endif
1937 #if LIBAVCODEC_VERSION_MAJOR >= 55
1938                                 pkt.size = audio_outbuf_size;
1939                                 avcodec_fill_audio_frame( audio_avframe, c->channels, c->sample_fmt,
1940                                         (const uint8_t*) p, AUDIO_ENCODE_BUFFER_SIZE, 0 );
1941                                 int got_packet = 0;
1942                                 int ret = avcodec_encode_audio2( c, &pkt, audio_avframe, &got_packet );
1943                                 if ( ret < 0 )
1944                                         pkt.size = ret;
1945                                 else if ( !got_packet )
1946                                         pkt.size = 0;
1947 #else
1948                                 pkt.size = avcodec_encode_audio( c, audio_outbuf, audio_outbuf_size, p );
1949 #endif
1950 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
1951                                 if ( p != audio_buf_1 )
1952                                         mlt_pool_release( p );
1953 #endif
1954                         }
1955                         if ( pkt.size <= 0 ) {
1956 #if LIBAVCODEC_VERSION_MAJOR >= 55
1957                                 pkt.size = audio_outbuf_size;
1958                                 int got_packet = 0;
1959                                 int ret = avcodec_encode_audio2( c, &pkt, NULL, &got_packet );
1960                                 if ( ret < 0 )
1961                                         pkt.size = ret;
1962                                 else if ( !got_packet )
1963                                         pkt.size = 0;
1964 #else
1965                                 pkt.size = avcodec_encode_audio( c, audio_outbuf, audio_outbuf_size, NULL );
1966                                 pkt.pts = c->coded_frame? c->coded_frame->pts : AV_NOPTS_VALUE;
1967                                 pkt.flags |= PKT_FLAG_KEY;
1968 #endif
1969                         }
1970                         mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), "flushing audio size %d\n", pkt.size );
1971                         if ( pkt.size <= 0 )
1972                                 break;
1973
1974                         // Write the compressed frame in the media file
1975                         if ( pkt.pts != AV_NOPTS_VALUE )
1976                                 pkt.pts = av_rescale_q( pkt.pts, c->time_base, audio_st[0]->time_base );
1977 #if LIBAVCODEC_VERSION_MAJOR >= 55
1978                         if ( pkt.dts != AV_NOPTS_VALUE )
1979                                 pkt.dts = av_rescale_q( pkt.dts, c->time_base, audio_st[0]->time_base );
1980                         if ( pkt.duration > 0 )
1981                                 pkt.duration = av_rescale_q( pkt.duration, c->time_base, audio_st[0]->time_base );
1982 #endif
1983                         pkt.stream_index = audio_st[0]->index;
1984                         if ( av_interleaved_write_frame( oc, &pkt ) != 0 )
1985                         {
1986                                 mlt_log_fatal( MLT_CONSUMER_SERVICE( consumer ), "error writing flushed audio frame\n" );
1987                                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
1988                                 goto on_fatal_error;
1989                         }
1990                 }
1991
1992                 // Flush video
1993                 if ( video_st && !( oc->oformat->flags & AVFMT_RAWPICTURE ) ) for (;;)
1994                 {
1995                         AVCodecContext *c = video_st->codec;
1996                         AVPacket pkt;
1997                         av_init_packet( &pkt );
1998                         pkt.data = video_outbuf;
1999                         pkt.size = video_outbuf_size;
2000
2001                         // Encode the image
2002 #if LIBAVCODEC_VERSION_MAJOR >= 55
2003                         int got_packet = 0;
2004                         int ret = avcodec_encode_video2( c, &pkt, NULL, &got_packet );
2005                         if ( ret < 0 )
2006                                 pkt.size = ret;
2007                         else if ( !got_packet )
2008                                 pkt.size = 0;
2009 #else
2010                         pkt.size = avcodec_encode_video( c, video_outbuf, video_outbuf_size, NULL );
2011                         pkt.pts = c->coded_frame? c->coded_frame->pts : AV_NOPTS_VALUE;
2012                         if( c->coded_frame && c->coded_frame->key_frame )
2013                                 pkt.flags |= PKT_FLAG_KEY;
2014 #endif
2015                         mlt_log_debug( MLT_CONSUMER_SERVICE( consumer ), "flushing video size %d\n", pkt.size );
2016                         if ( pkt.size <= 0 )
2017                                 break;
2018
2019                         if ( pkt.pts != AV_NOPTS_VALUE )
2020                                 pkt.pts = av_rescale_q( pkt.pts, c->time_base, video_st->time_base );
2021 #if LIBAVCODEC_VERSION_MAJOR >= 55
2022                         if ( pkt.dts != AV_NOPTS_VALUE )
2023                                 pkt.dts = av_rescale_q( pkt.dts, c->time_base, video_st->time_base );
2024 #endif
2025                         pkt.stream_index = video_st->index;
2026
2027                         // write the compressed frame in the media file
2028                         if ( av_interleaved_write_frame( oc, &pkt ) != 0 )
2029                         {
2030                                 mlt_log_fatal( MLT_CONSUMER_SERVICE(consumer), "error writing flushed video frame\n" );
2031                                 mlt_events_fire( properties, "consumer-fatal-error", NULL );
2032                                 goto on_fatal_error;
2033                         }
2034                         // Dual pass logging
2035                         if ( mlt_properties_get_data( properties, "_logfile", NULL ) && c->stats_out )
2036                                 fprintf( mlt_properties_get_data( properties, "_logfile", NULL ), "%s", c->stats_out );
2037                 }
2038         }
2039
2040 on_fatal_error:
2041         
2042         // Write the trailer, if any
2043         if ( frames )
2044                 av_write_trailer( oc );
2045
2046         // close each codec
2047         if ( video_st )
2048                 close_video(oc, video_st);
2049         for ( i = 0; i < MAX_AUDIO_STREAMS && audio_st[i]; i++ )
2050                 close_audio( oc, audio_st[i] );
2051
2052         // Free the streams
2053         for ( i = 0; i < oc->nb_streams; i++ )
2054                 av_freep( &oc->streams[i] );
2055
2056         // Close the output file
2057         if ( !( fmt->flags & AVFMT_NOFILE ) &&
2058                 !mlt_properties_get_int( properties, "redirect" ) )
2059         {
2060 #if LIBAVFORMAT_VERSION_MAJOR >= 53
2061                 if ( oc->pb  ) avio_close( oc->pb );
2062 #else
2063                 if ( oc->pb  ) url_fclose( oc->pb );
2064 #endif
2065         }
2066
2067         // Clean up input and output frames
2068         if ( converted_avframe )
2069                 av_free( converted_avframe->data[0] );
2070         av_free( converted_avframe );
2071         av_free( video_avframe->data[0] );
2072         av_free( video_avframe );
2073         av_free( video_outbuf );
2074         av_free( audio_avframe );
2075         av_free( audio_buf_1 );
2076         av_free( audio_buf_2 );
2077
2078         // Free the stream
2079         av_free( oc );
2080
2081         // Just in case we terminated on pause
2082         mlt_consumer_stopped( consumer );
2083         mlt_properties_close( frame_meta_properties );
2084
2085         if ( mlt_properties_get_int( properties, "pass" ) > 1 )
2086         {
2087                 // Remove the dual pass log file
2088                 if ( mlt_properties_get( properties, "_logfilename" ) )
2089                         remove( mlt_properties_get( properties, "_logfilename" ) );
2090
2091                 // Remove the x264 dual pass logs
2092                 char *cwd = getcwd( NULL, 0 );
2093                 const char *file = "x264_2pass.log";
2094                 char *full = malloc( strlen( cwd ) + strlen( file ) + 2 );
2095                 sprintf( full, "%s/%s", cwd, file );
2096                 remove( full );
2097                 free( full );
2098                 file = "x264_2pass.log.temp";
2099                 full = malloc( strlen( cwd ) + strlen( file ) + 2 );
2100                 sprintf( full, "%s/%s", cwd, file );
2101                 remove( full );
2102                 free( full );
2103                 file = "x264_2pass.log.mbtree";
2104                 full = malloc( strlen( cwd ) + strlen( file ) + 2 );
2105                 sprintf( full, "%s/%s", cwd, file );
2106                 remove( full );
2107                 free( full );
2108                 free( cwd );
2109                 remove( "x264_2pass.log.temp" );
2110         }
2111
2112         while ( ( frame = mlt_deque_pop_back( queue ) ) )
2113                 mlt_frame_close( frame );
2114
2115         return NULL;
2116 }
2117
2118 /** Close the consumer.
2119 */
2120
2121 static void consumer_close( mlt_consumer consumer )
2122 {
2123         // Stop the consumer
2124         mlt_consumer_stop( consumer );
2125
2126         // Close the parent
2127         mlt_consumer_close( consumer );
2128
2129         // Free the memory
2130         free( consumer );
2131 }