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