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