]> git.sesse.net Git - mlt/blob - src/modules/avformat/producer_avformat.c
make mlt_position type double
[mlt] / src / modules / avformat / producer_avformat.c
1 /*
2  * producer_avformat.c -- avformat producer
3  * Copyright (C) 2003-2012 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
5  * Author: Dan Dennedy <dan@dennedy.org>
6  * Much code borrowed from ffmpeg.c: Copyright (c) 2000-2003 Fabrice Bellard
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 // MLT Header files
24 #include <framework/mlt_producer.h>
25 #include <framework/mlt_frame.h>
26 #include <framework/mlt_profile.h>
27 #include <framework/mlt_log.h>
28 #include <framework/mlt_deque.h>
29 #include <framework/mlt_factory.h>
30 #include <framework/mlt_cache.h>
31
32 // ffmpeg Header files
33 #include <libavformat/avformat.h>
34 #include <libswscale/swscale.h>
35 #include <libavutil/samplefmt.h>
36 #include <libavutil/pixdesc.h>
37
38 #ifdef VDPAU
39 #  include <libavcodec/vdpau.h>
40 #endif
41 #if (LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0))
42 #  include <libavutil/dict.h>
43 #endif
44
45 // System header files
46 #include <stdlib.h>
47 #include <string.h>
48 #include <pthread.h>
49 #include <limits.h>
50
51 #if LIBAVCODEC_VERSION_MAJOR >= 53
52 #include <libavutil/opt.h>
53 #define CODEC_TYPE_VIDEO      AVMEDIA_TYPE_VIDEO
54 #define CODEC_TYPE_AUDIO      AVMEDIA_TYPE_AUDIO
55 #define PKT_FLAG_KEY AV_PKT_FLAG_KEY
56 #else
57 #include <libavcodec/opt.h>
58 #endif
59
60 #if LIBAVCODEC_VERSION_MAJOR < 55
61 #define AV_CODEC_ID_DVVIDEO CODEC_ID_DVVIDEO
62 #define AV_CODEC_ID_H264    CODEC_ID_H264
63 #endif
64
65 #define POSITION_INITIAL (-2)
66 #define POSITION_INVALID (-1)
67
68 #define MAX_AUDIO_STREAMS (32)
69 #define MAX_VDPAU_SURFACES (10)
70 #define MAX_AUDIO_FRAME_SIZE (192000) // 1 second of 48khz 32bit audio
71
72 struct producer_avformat_s
73 {
74         mlt_producer parent;
75         AVFormatContext *dummy_context;
76         AVFormatContext *audio_format;
77         AVFormatContext *video_format;
78         AVCodecContext *audio_codec[ MAX_AUDIO_STREAMS ];
79         AVCodecContext *video_codec;
80         AVFrame *video_frame;
81         AVFrame *audio_frame;
82         AVPacket pkt;
83         mlt_position audio_expected;
84         mlt_position video_expected;
85         int audio_index;
86         int video_index;
87         int64_t first_pts;
88         int64_t last_position;
89         int seekable;
90         int64_t current_position;
91         mlt_position nonseek_position;
92         int top_field_first;
93         uint8_t *audio_buffer[ MAX_AUDIO_STREAMS ];
94         size_t audio_buffer_size[ MAX_AUDIO_STREAMS ];
95         uint8_t *decode_buffer[ MAX_AUDIO_STREAMS ];
96         int audio_used[ MAX_AUDIO_STREAMS ];
97         int audio_streams;
98         int audio_max_stream;
99         int total_channels;
100         int max_channel;
101         int max_frequency;
102         unsigned int invalid_pts_counter;
103         unsigned int invalid_dts_counter;
104         mlt_cache image_cache;
105         int colorspace;
106         int full_luma;
107         pthread_mutex_t video_mutex;
108         pthread_mutex_t audio_mutex;
109         mlt_deque apackets;
110         mlt_deque vpackets;
111         pthread_mutex_t packets_mutex;
112         pthread_mutex_t open_mutex;
113         int is_mutex_init;
114         AVRational video_time_base;
115 #ifdef VDPAU
116         struct
117         {
118                 // from FFmpeg
119                 struct vdpau_render_state render_states[MAX_VDPAU_SURFACES];
120                 
121                 // internal
122                 mlt_deque deque;
123                 int b_age;
124                 int ip_age[2];
125                 int is_decoded;
126                 uint8_t *buffer;
127
128                 VdpDevice device;
129                 VdpDecoder decoder;
130         } *vdpau;
131 #endif
132 };
133 typedef struct producer_avformat_s *producer_avformat;
134
135 // Forward references.
136 static int list_components( char* file );
137 static int producer_open( producer_avformat self, mlt_profile profile, const char *URL, int take_lock );
138 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index );
139 static void producer_avformat_close( producer_avformat );
140 static void producer_close( mlt_producer parent );
141 static void producer_set_up_video( producer_avformat self, mlt_frame frame );
142 static void producer_set_up_audio( producer_avformat self, mlt_frame frame );
143 static void apply_properties( void *obj, mlt_properties properties, int flags );
144 static int video_codec_init( producer_avformat self, int index, mlt_properties properties );
145 static void get_audio_streams_info( producer_avformat self );
146 static mlt_audio_format pick_audio_format( int sample_fmt );
147
148 #ifdef VDPAU
149 #include "vdpau.c"
150 #endif
151
152 /** Constructor for libavformat.
153 */
154
155 mlt_producer producer_avformat_init( mlt_profile profile, const char *service, char *file )
156 {
157         if ( list_components( file ) )
158                 return NULL;
159
160         mlt_producer producer = NULL;
161
162         // Check that we have a non-NULL argument
163         if ( file )
164         {
165                 // Construct the producer
166                 producer_avformat self = calloc( 1, sizeof( struct producer_avformat_s ) );
167                 producer = calloc( 1, sizeof( struct mlt_producer_s ) );
168
169                 // Initialise it
170                 if ( mlt_producer_init( producer, self ) == 0 )
171                 {
172                         self->parent = producer;
173
174                         // Get the properties
175                         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
176
177                         // Set the resource property (required for all producers)
178                         mlt_properties_set( properties, "resource", file );
179
180                         // Register transport implementation with the producer
181                         producer->close = (mlt_destructor) producer_close;
182
183                         // Register our get_frame implementation
184                         producer->get_frame = producer_get_frame;
185
186                         if ( strcmp( service, "avformat-novalidate" ) )
187                         {
188                                 // Open the file
189                                 if ( producer_open( self, profile, file, 1 ) != 0 )
190                                 {
191                                         // Clean up
192                                         mlt_producer_close( producer );
193                                         producer = NULL;
194                                         producer_avformat_close( self );
195                                 }
196                                 else if ( self->seekable )
197                                 {
198                                         // Close the file to release resources for large playlists - reopen later as needed
199 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0)
200                                         if ( self->audio_format )
201                                                 avformat_close_input( &self->audio_format );
202                                         if ( self->video_format )
203                                                 avformat_close_input( &self->video_format );
204 #else
205                                         if ( self->audio_format )
206                                                 av_close_input_file( self->audio_format );
207                                         if ( self->video_format )
208                                                 av_close_input_file( self->video_format );
209 #endif
210                                         self->audio_format = NULL;
211                                         self->video_format = NULL;
212                                 }
213                         }
214                         if ( producer )
215                         {
216                                 // Default the user-selectable indices from the auto-detected indices
217                                 mlt_properties_set_int( properties, "audio_index",  self->audio_index );
218                                 mlt_properties_set_int( properties, "video_index",  self->video_index );
219 #ifdef VDPAU
220                                 mlt_service_cache_set_size( MLT_PRODUCER_SERVICE(producer), "producer_avformat", 5 );
221 #endif
222                                 mlt_service_cache_put( MLT_PRODUCER_SERVICE(producer), "producer_avformat", self, 0, (mlt_destructor) producer_avformat_close );
223                         }
224                 }
225         }
226         return producer;
227 }
228
229 int list_components( char* file )
230 {
231         int skip = 0;
232
233         // Report information about available demuxers and codecs as YAML Tiny
234         if ( file && strstr( file, "f-list" ) )
235         {
236                 fprintf( stderr, "---\nformats:\n" );
237                 AVInputFormat *format = NULL;
238                 while ( ( format = av_iformat_next( format ) ) )
239                         fprintf( stderr, "  - %s\n", format->name );
240                 fprintf( stderr, "...\n" );
241                 skip = 1;
242         }
243         if ( file && strstr( file, "acodec-list" ) )
244         {
245                 fprintf( stderr, "---\naudio_codecs:\n" );
246                 AVCodec *codec = NULL;
247                 while ( ( codec = av_codec_next( codec ) ) )
248                         if ( codec->decode && codec->type == CODEC_TYPE_AUDIO )
249                                 fprintf( stderr, "  - %s\n", codec->name );
250                 fprintf( stderr, "...\n" );
251                 skip = 1;
252         }
253         if ( file && strstr( file, "vcodec-list" ) )
254         {
255                 fprintf( stderr, "---\nvideo_codecs:\n" );
256                 AVCodec *codec = NULL;
257                 while ( ( codec = av_codec_next( codec ) ) )
258                         if ( codec->decode && codec->type == CODEC_TYPE_VIDEO )
259                                 fprintf( stderr, "  - %s\n", codec->name );
260                 fprintf( stderr, "...\n" );
261                 skip = 1;
262         }
263
264         return skip;
265 }
266
267 static int first_video_index( producer_avformat self )
268 {
269         AVFormatContext *context = self->video_format? self->video_format : self->audio_format;
270         int i = -1; // not found
271
272         if ( context ) {
273                 for ( i = 0; i < context->nb_streams; i++ ) {
274                         if ( context->streams[i]->codec &&
275                              context->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO )
276                                 break;
277                 }
278                 if ( i == context->nb_streams )
279                         i = -1;
280         }
281         return i;
282 }
283
284 /** Find the default streams.
285 */
286
287 static mlt_properties find_default_streams( producer_avformat self )
288 {
289         int i;
290         char key[200];
291 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
292         AVDictionaryEntry *tag = NULL;
293 #else
294         AVMetadataTag *tag = NULL;
295 #endif
296         AVFormatContext *context = self->video_format;
297         mlt_properties meta_media = MLT_PRODUCER_PROPERTIES( self->parent );
298
299         // Default to the first audio and video streams found
300         self->audio_index = -1;
301         self->video_index = -1;
302
303         mlt_properties_set_int( meta_media, "meta.media.nb_streams", context->nb_streams );
304
305         // Allow for multiple audio and video streams in the file and select first of each (if available)
306         for( i = 0; i < context->nb_streams; i++ )
307         {
308                 // Get the codec context
309                 AVStream *stream = context->streams[ i ];
310                 if ( ! stream ) continue;
311                 AVCodecContext *codec_context = stream->codec;
312                 if ( ! codec_context ) continue;
313                 AVCodec *codec = avcodec_find_decoder( codec_context->codec_id );
314                 if ( ! codec ) continue;
315
316                 snprintf( key, sizeof(key), "meta.media.%d.stream.type", i );
317
318                 // Determine the type and obtain the first index of each type
319                 switch( codec_context->codec_type )
320                 {
321                         case CODEC_TYPE_VIDEO:
322                                 // Use first video stream
323                                 if ( self->video_index < 0 )
324                                         self->video_index = i;
325                                 mlt_properties_set( meta_media, key, "video" );
326                                 snprintf( key, sizeof(key), "meta.media.%d.stream.frame_rate", i );
327                                 double ffmpeg_fps = av_q2d( context->streams[ i ]->avg_frame_rate );
328 #if LIBAVFORMAT_VERSION_MAJOR < 55
329                                 if ( isnan( ffmpeg_fps ) || ffmpeg_fps == 0 )
330                                         ffmpeg_fps = av_q2d( context->streams[ i ]->r_frame_rate );
331 #endif
332                                 mlt_properties_set_double( meta_media, key, ffmpeg_fps );
333
334                                 snprintf( key, sizeof(key), "meta.media.%d.stream.sample_aspect_ratio", i );
335                                 mlt_properties_set_double( meta_media, key, av_q2d( context->streams[ i ]->sample_aspect_ratio ) );
336                                 snprintf( key, sizeof(key), "meta.media.%d.codec.width", i );
337                                 mlt_properties_set_int( meta_media, key, codec_context->width );
338                                 snprintf( key, sizeof(key), "meta.media.%d.codec.height", i );
339                                 mlt_properties_set_int( meta_media, key, codec_context->height );
340                                 snprintf( key, sizeof(key), "meta.media.%d.codec.frame_rate", i );
341                                 AVRational frame_rate = { codec_context->time_base.den, codec_context->time_base.num * codec_context->ticks_per_frame };
342                                 mlt_properties_set_double( meta_media, key, av_q2d( frame_rate ) );
343                                 snprintf( key, sizeof(key), "meta.media.%d.codec.pix_fmt", i );
344 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(3<<8)+0)
345                                 mlt_properties_set( meta_media, key, av_get_pix_fmt_name( codec_context->pix_fmt ) );
346 #else
347                                 mlt_properties_set( meta_media, key, avcodec_get_pix_fmt_name( codec_context->pix_fmt ) );
348 #endif
349                                 snprintf( key, sizeof(key), "meta.media.%d.codec.sample_aspect_ratio", i );
350                                 mlt_properties_set_double( meta_media, key, av_q2d( codec_context->sample_aspect_ratio ) );
351                                 snprintf( key, sizeof(key), "meta.media.%d.codec.colorspace", i );
352                                 switch ( codec_context->colorspace )
353                                 {
354                                 case AVCOL_SPC_SMPTE240M:
355                                         mlt_properties_set_int( meta_media, key, 240 );
356                                         break;
357                                 case AVCOL_SPC_BT470BG:
358                                 case AVCOL_SPC_SMPTE170M:
359                                         mlt_properties_set_int( meta_media, key, 601 );
360                                         break;
361                                 case AVCOL_SPC_BT709:
362                                         mlt_properties_set_int( meta_media, key, 709 );
363                                         break;
364                                 default:
365                                         // This is a heuristic Charles Poynton suggests in "Digital Video and HDTV"
366                                         mlt_properties_set_int( meta_media, key, codec_context->width * codec_context->height > 750000 ? 709 : 601 );
367                                         break;
368                                 }
369                                 break;
370                         case CODEC_TYPE_AUDIO:
371                                 if ( !codec_context->channels )
372                                         break;
373                                 // Use first audio stream
374                                 if ( self->audio_index < 0 && pick_audio_format( codec_context->sample_fmt ) != mlt_audio_none )
375                                         self->audio_index = i;
376
377                                 mlt_properties_set( meta_media, key, "audio" );
378                                 snprintf( key, sizeof(key), "meta.media.%d.codec.sample_fmt", i );
379                                 mlt_properties_set( meta_media, key, av_get_sample_fmt_name( codec_context->sample_fmt ) );
380                                 snprintf( key, sizeof(key), "meta.media.%d.codec.sample_rate", i );
381                                 mlt_properties_set_int( meta_media, key, codec_context->sample_rate );
382                                 snprintf( key, sizeof(key), "meta.media.%d.codec.channels", i );
383                                 mlt_properties_set_int( meta_media, key, codec_context->channels );
384                                 break;
385                         default:
386                                 break;
387                 }
388 //              snprintf( key, sizeof(key), "meta.media.%d.stream.time_base", i );
389 //              mlt_properties_set_double( meta_media, key, av_q2d( context->streams[ i ]->time_base ) );
390                 snprintf( key, sizeof(key), "meta.media.%d.codec.name", i );
391                 mlt_properties_set( meta_media, key, codec->name );
392                 snprintf( key, sizeof(key), "meta.media.%d.codec.long_name", i );
393                 mlt_properties_set( meta_media, key, codec->long_name );
394                 snprintf( key, sizeof(key), "meta.media.%d.codec.bit_rate", i );
395                 mlt_properties_set_int( meta_media, key, codec_context->bit_rate );
396 //              snprintf( key, sizeof(key), "meta.media.%d.codec.time_base", i );
397 //              mlt_properties_set_double( meta_media, key, av_q2d( codec_context->time_base ) );
398 //              snprintf( key, sizeof(key), "meta.media.%d.codec.profile", i );
399 //              mlt_properties_set_int( meta_media, key, codec_context->profile );
400 //              snprintf( key, sizeof(key), "meta.media.%d.codec.level", i );
401 //              mlt_properties_set_int( meta_media, key, codec_context->level );
402
403                 // Read Metadata
404 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
405                 while ( ( tag = av_dict_get( stream->metadata, "", tag, AV_DICT_IGNORE_SUFFIX ) ) )
406 #else
407                 while ( ( tag = av_metadata_get( stream->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX ) ) )
408 #endif
409                 {
410                         if ( tag->value && strcmp( tag->value, "" ) && strcmp( tag->value, "und" ) )
411                         {
412                                 snprintf( key, sizeof(key), "meta.attr.%d.stream.%s.markup", i, tag->key );
413                                 mlt_properties_set( meta_media, key, tag->value );
414                         }
415                 }
416         }
417 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
418         while ( ( tag = av_dict_get( context->metadata, "", tag, AV_DICT_IGNORE_SUFFIX ) ) )
419 #else
420         while ( ( tag = av_metadata_get( context->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX ) ) )
421 #endif
422         {
423                 if ( tag->value && strcmp( tag->value, "" ) && strcmp( tag->value, "und" ) )
424                 {
425                         snprintf( key, sizeof(key), "meta.attr.%s.markup", tag->key );
426                         mlt_properties_set( meta_media, key, tag->value );
427                 }
428         }
429
430         return meta_media;
431 }
432
433 static void get_aspect_ratio( mlt_properties properties, AVStream *stream, AVCodecContext *codec_context )
434 {
435         AVRational sar = stream->sample_aspect_ratio;
436         if ( sar.num <= 0 || sar.den <= 0 )
437                 sar = codec_context->sample_aspect_ratio;
438         if ( sar.num <= 0 || sar.den <= 0 )
439                 sar.num = sar.den = 1;
440         mlt_properties_set_int( properties, "meta.media.sample_aspect_num", sar.num );
441         mlt_properties_set_int( properties, "meta.media.sample_aspect_den", sar.den );
442         mlt_properties_set_double( properties, "aspect_ratio", av_q2d( sar ) );
443 }
444
445 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
446 static char* parse_url( mlt_profile profile, const char* URL, AVInputFormat **format, AVDictionary **params )
447 #else
448 static char* parse_url( mlt_profile profile, const char* URL, AVInputFormat **format, AVFormatParameters *params )
449 #endif
450 {
451         if ( !URL ) return NULL;
452
453         char *result = NULL;
454         char *protocol = strdup( URL );
455         char *url = strchr( protocol, ':' );
456
457         // Only if there is not a protocol specification that avformat can handle
458 #if LIBAVFORMAT_VERSION_MAJOR >= 53
459         if ( url && avio_check( URL, 0 ) < 0 )
460 #else
461         if ( url && !url_exist( URL ) )
462 #endif
463         {
464                 // Truncate protocol string
465                 url[0] = 0;
466                 mlt_log_debug( NULL, "%s: protocol=%s resource=%s\n", __FUNCTION__, protocol, url + 1 );
467
468                 // Lookup the format
469                 *format = av_find_input_format( protocol );
470
471                 // Eat the format designator
472                 result = ++url;
473
474                 if ( *format )
475                 {
476 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
477                         // support for legacy width and height parameters
478                         char *width = NULL;
479                         char *height = NULL;
480 #else
481                         // These are required by video4linux2 (defaults)
482                         params->width = profile->width;
483                         params->height = profile->height;
484                         if ( !strstr( URL, "&frame_rate" ) )
485                                 params->time_base = (AVRational){ profile->frame_rate_den, profile->frame_rate_num };
486                         params->channels = 2;
487                         params->sample_rate = 48000;
488 #endif
489
490                         // Parse out params
491                         url = strchr( url, '?' );
492                         while ( url )
493                         {
494                                 url[0] = 0;
495                                 char *name = strdup( ++url );
496                                 char *value = strchr( name, '=' );
497                                 if ( !value )
498                                         // Also accept : as delimiter for backwards compatibility.
499                                         value = strchr( name, ':' );
500                                 if ( value )
501                                 {
502                                         value[0] = 0;
503                                         value++;
504                                         char *t = strchr( value, '&' );
505                                         if ( t )
506                                                 t[0] = 0;
507 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
508                                         // translate old parameters to new av_dict names
509                                         if ( !strcmp( name, "frame_rate" ) )
510                                                 av_dict_set( params, "framerate", value, 0 );
511                                         else if ( !strcmp( name, "pix_fmt" ) )
512                                                 av_dict_set( params, "pixel_format", value, 0 );
513                                         else if ( !strcmp( name, "width" ) )
514                                                 width = strdup( value );
515                                         else if ( !strcmp( name, "height" ) )
516                                                 height = strdup( value );
517                                         else
518                                                 // generic demux/device option support
519                                                 av_dict_set( params, name, value, 0 );
520 #else
521                                         if ( !strcmp( name, "frame_rate" ) )
522                                                 params->time_base.den = atoi( value );
523                                         else if ( !strcmp( name, "frame_rate_base" ) )
524                                                 params->time_base.num = atoi( value );
525                                         else if ( !strcmp( name, "sample_rate" ) )
526                                                 params->sample_rate = atoi( value );
527                                         else if ( !strcmp( name, "channel" ) )
528                                                 params->channel = atoi( value );
529                                         else if ( !strcmp( name, "channels" ) )
530                                                 params->channels = atoi( value );
531                                         else if ( !strcmp( name, "pix_fmt" ) )
532                                                 params->pix_fmt = av_get_pix_fmt( value );
533                                         else if ( !strcmp( name, "width" ) )
534                                                 params->width = atoi( value );
535                                         else if ( !strcmp( name, "height" ) )
536                                                 params->height = atoi( value );
537                                         else if ( !strcmp( name, "standard" ) )
538                                                 params->standard = strdup( value );
539 #endif
540                                 }
541                                 free( name );
542                                 url = strchr( url, '&' );
543                         }
544 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
545                         // continued support for legacy width and height parameters
546                         if ( width && height )
547                         {
548                                 char *s = malloc( strlen( width ) + strlen( height ) + 2 );
549                                 strcpy( s, width );
550                                 strcat( s, "x");
551                                 strcat( s, height );
552                                 av_dict_set( params, "video_size", s, 0 );
553                                 free( s );
554                         }
555                         if ( width ) free( width );
556                         if ( height ) free ( height );
557 #endif
558                 }
559                 result = strdup( result );
560         }
561         else
562         {
563                 result = strdup( URL );
564         }
565         free( protocol );
566         return result;
567 }
568
569 static int get_basic_info( producer_avformat self, mlt_profile profile, const char *filename )
570 {
571         int error = 0;
572
573         // Get the properties
574         mlt_properties properties = MLT_PRODUCER_PROPERTIES( self->parent );
575
576         AVFormatContext *format = self->video_format;
577
578         // We will treat everything with the producer fps.
579         // TODO: make this more flexible.
580         double fps = mlt_profile_fps( profile );
581
582         // Get the duration
583         if ( !mlt_properties_get_int( properties, "_length_computed" ) )
584         {
585                 // The _length_computed flag prevents overwriting explicity set length/out/eof properties
586                 // when producer_open is called after initial call when restoring or reseting the producer.
587                 if ( format->duration != AV_NOPTS_VALUE )
588                 {
589                         // This isn't going to be accurate for all formats
590                         mlt_position frames = ( mlt_position )( ( ( double )format->duration / ( double )AV_TIME_BASE ) * fps );
591                         mlt_properties_set_position( properties, "out", frames - 1 );
592                         mlt_properties_set_position( properties, "length", frames );
593                         mlt_properties_set_int( properties, "_length_computed", 1 );
594                 }
595                 else
596                 {
597                         // Set live sources to run forever
598                         mlt_properties_set_position( properties, "length", INT_MAX );
599                         mlt_properties_set_position( properties, "out", INT_MAX - 1 );
600                         mlt_properties_set( properties, "eof", "loop" );
601                         mlt_properties_set_int( properties, "_length_computed", 1 );
602                 }
603         }
604
605         // Check if we're seekable
606         // avdevices are typically AVFMT_NOFILE and not seekable
607         self->seekable = !format->iformat || !( format->iformat->flags & AVFMT_NOFILE );
608         if ( format->pb )
609         {
610                 // protocols can indicate if they support seeking
611 #if LIBAVFORMAT_VERSION_MAJOR >= 53
612                 self->seekable = format->pb->seekable;
613 #else
614                 URLContext *uc = url_fileno( format->pb );
615                 if ( uc )
616                         self->seekable = !uc->is_streamed;
617 #endif
618         }
619         if ( self->seekable )
620         {
621                 // Do a more rigourous test of seekable on a disposable context
622                 self->seekable = av_seek_frame( format, -1, format->start_time, AVSEEK_FLAG_BACKWARD ) >= 0;
623                 mlt_properties_set_int( properties, "seekable", self->seekable );
624                 self->dummy_context = format;
625 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
626                 self->video_format = NULL;
627                 avformat_open_input( &self->video_format, filename, NULL, NULL );
628                 avformat_find_stream_info( self->video_format, NULL );
629 #else
630                 av_open_input_file( &self->video_format, filename, NULL, 0, NULL );
631                 av_find_stream_info( self->video_format );
632 #endif
633                 format = self->video_format;
634         }
635
636         // Fetch the width, height and aspect ratio
637         if ( self->video_index != -1 )
638         {
639                 AVCodecContext *codec_context = format->streams[ self->video_index ]->codec;
640                 mlt_properties_set_int( properties, "width", codec_context->width );
641                 mlt_properties_set_int( properties, "height", codec_context->height );
642                 get_aspect_ratio( properties, format->streams[ self->video_index ], codec_context );
643
644                 // Verify that we can convert this to YUV 4:2:2
645                 // TODO: we can now also return RGB and RGBA and quite possibly more in the future.
646                 struct SwsContext *context = sws_getContext( codec_context->width, codec_context->height, codec_context->pix_fmt,
647                         codec_context->width, codec_context->height, PIX_FMT_YUYV422, SWS_BILINEAR, NULL, NULL, NULL);
648                 if ( context )
649                         sws_freeContext( context );
650                 else
651                         error = 1;
652         }
653         return error;
654 }
655
656 /** Open the file.
657 */
658
659 static int producer_open( producer_avformat self, mlt_profile profile, const char *URL, int take_lock )
660 {
661         // Return an error code (0 == no error)
662         int error = 0;
663         mlt_properties properties = MLT_PRODUCER_PROPERTIES( self->parent );
664
665         // Lock the service
666         if ( take_lock )
667         {
668                 if ( !self->is_mutex_init )
669                 {
670                         pthread_mutex_init( &self->audio_mutex, NULL );
671                         pthread_mutex_init( &self->video_mutex, NULL );
672                         pthread_mutex_init( &self->packets_mutex, NULL );
673                         pthread_mutex_init( &self->open_mutex, NULL );
674                         self->is_mutex_init = 1;
675                 }
676                 pthread_mutex_lock( &self->audio_mutex );
677                 pthread_mutex_lock( &self->video_mutex );
678         }
679         mlt_events_block( properties, self->parent );
680
681         // Parse URL
682         AVInputFormat *format = NULL;
683 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
684         AVDictionary *params = NULL;
685 #else
686         AVFormatParameters params;
687         memset( &params, 0, sizeof(params) );
688 #endif
689         char *filename = parse_url( profile, URL, &format, &params );
690
691         // Now attempt to open the file or device with filename
692 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
693         error = avformat_open_input( &self->video_format, filename, format, &params ) < 0;
694         if ( error )
695                 // If the URL is a network stream URL, then we probably need to open with full URL
696                 error = avformat_open_input( &self->video_format, URL, format, &params ) < 0;
697 #else
698         error = av_open_input_file( &self->video_format, filename, format, 0, &params ) < 0;
699         if ( error )
700                 // If the URL is a network stream URL, then we probably need to open with full URL
701                 error = av_open_input_file( &self->video_format, URL, format, 0, &params ) < 0;
702 #endif
703
704         // Set MLT properties onto video AVFormatContext
705         if ( !error && self->video_format )
706         {
707                 apply_properties( self->video_format, properties, AV_OPT_FLAG_DECODING_PARAM );
708                 if ( self->video_format->iformat && self->video_format->iformat->priv_class && self->video_format->priv_data )
709                         apply_properties( self->video_format->priv_data, properties, AV_OPT_FLAG_DECODING_PARAM );
710         }
711
712 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
713         av_dict_free( &params );
714 #else
715         // Cleanup AVFormatParameters
716         if ( params.standard )
717                 free( (void*) params.standard );
718 #endif
719
720         // If successful, then try to get additional info
721         if ( !error && self->video_format )
722         {
723                 // Get the stream info
724 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
725                 error = avformat_find_stream_info( self->video_format, NULL ) < 0;
726 #else
727                 error = av_find_stream_info( self->video_format ) < 0;
728 #endif
729
730                 // Continue if no error
731                 if ( !error && self->video_format )
732                 {
733                         // Find default audio and video streams
734                         find_default_streams( self );
735                         error = get_basic_info( self, profile, filename );
736
737                         // Initialize position info
738                         self->first_pts = AV_NOPTS_VALUE;
739                         self->last_position = POSITION_INITIAL;
740
741                         if ( !self->audio_format )
742                         {
743                                 // We're going to cheat here - for seekable A/V files, we will have separate contexts
744                                 // to support independent seeking of audio from video.
745                                 // TODO: Is this really necessary?
746                                 if ( self->audio_index != -1 && self->video_index != -1 )
747                                 {
748                                         if ( self->seekable )
749                                         {
750                                                 // And open again for our audio context
751 #if LIBAVFORMAT_VERSION_INT > ((53<<16)+(6<<8)+0)
752                                                 avformat_open_input( &self->audio_format, filename, NULL, NULL );
753                                                 apply_properties( self->audio_format, properties, AV_OPT_FLAG_DECODING_PARAM );
754                                                 if ( self->audio_format->iformat && self->audio_format->iformat->priv_class && self->audio_format->priv_data )
755                                                         apply_properties( self->audio_format->priv_data, properties, AV_OPT_FLAG_DECODING_PARAM );
756                                                 avformat_find_stream_info( self->audio_format, NULL );
757 #else
758                                                 av_open_input_file( &self->audio_format, filename, NULL, 0, NULL );
759                                                 apply_properties( self->audio_format, properties, AV_OPT_FLAG_DECODING_PARAM );
760 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(110<<8)+0)
761                         if ( self->audio_format->iformat && self->audio_format->iformat->priv_class && self->audio_format->priv_data )
762                             apply_properties( self->audio_format->priv_data, properties, AV_OPT_FLAG_DECODING_PARAM );
763 #endif
764                                                 av_find_stream_info( self->audio_format );
765 #endif
766                                         }
767                                         else
768                                         {
769                                                 self->audio_format = self->video_format;
770                                         }
771                                 }
772                                 else if ( self->audio_index != -1 )
773                                 {
774                                         // We only have an audio context
775                                         self->audio_format = self->video_format;
776                                         self->video_format = NULL;
777                                 }
778                                 else if ( self->video_index == -1 )
779                                 {
780                                         // Something has gone wrong
781                                         error = -1;
782                                 }
783                                 if ( self->audio_format && !self->audio_streams )
784                                         get_audio_streams_info( self );
785                         }
786                 }
787         }
788         if ( filename )
789                 free( filename );
790         if ( !error )
791         {
792                 self->apackets = mlt_deque_init();
793                 self->vpackets = mlt_deque_init();
794         }
795
796         if ( self->dummy_context )
797         {
798                 pthread_mutex_lock( &self->open_mutex );
799 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0)
800                 avformat_close_input( &self->dummy_context );
801 #else
802                 av_close_input_file( self->dummy_context );
803 #endif
804                 self->dummy_context = NULL;
805                 pthread_mutex_unlock( &self->open_mutex );
806         }
807
808         // Unlock the service
809         if ( take_lock )
810         {
811                 pthread_mutex_unlock( &self->audio_mutex );
812                 pthread_mutex_unlock( &self->video_mutex );
813         }
814         mlt_events_unblock( properties, self->parent );
815
816         return error;
817 }
818
819 static void prepare_reopen( producer_avformat self )
820 {
821         mlt_service_lock( MLT_PRODUCER_SERVICE( self->parent ) );
822         pthread_mutex_lock( &self->audio_mutex );
823         pthread_mutex_lock( &self->open_mutex );
824
825         int i;
826         for ( i = 0; i < MAX_AUDIO_STREAMS; i++ )
827         {
828                 mlt_pool_release( self->audio_buffer[i] );
829                 self->audio_buffer[i] = NULL;
830                 av_free( self->decode_buffer[i] );
831                 self->decode_buffer[i] = NULL;
832                 if ( self->audio_codec[i] )
833                         avcodec_close( self->audio_codec[i] );
834                 self->audio_codec[i] = NULL;
835         }
836         if ( self->video_codec )
837                 avcodec_close( self->video_codec );
838         self->video_codec = NULL;
839
840 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0)
841         if ( self->seekable && self->audio_format )
842                 avformat_close_input( &self->audio_format );
843         if ( self->video_format )
844                 avformat_close_input( &self->video_format );
845 #else
846         if ( self->seekable && self->audio_format )
847                 av_close_input_file( self->audio_format );
848         if ( self->video_format )
849                 av_close_input_file( self->video_format );
850 #endif
851         self->audio_format = NULL;
852         self->video_format = NULL;
853         pthread_mutex_unlock( &self->open_mutex );
854
855         // Cleanup the packet queues
856         AVPacket *pkt;
857         if ( self->apackets )
858         {
859                 while ( ( pkt = mlt_deque_pop_back( self->apackets ) ) )
860                 {
861                         av_free_packet( pkt );
862                         free( pkt );
863                 }
864                 mlt_deque_close( self->apackets );
865                 self->apackets = NULL;
866         }
867         if ( self->vpackets )
868         {
869                 while ( ( pkt = mlt_deque_pop_back( self->vpackets ) ) )
870                 {
871                         av_free_packet( pkt );
872                         free( pkt );
873                 }
874                 mlt_deque_close( self->vpackets );
875                 self->vpackets = NULL;
876         }
877         pthread_mutex_unlock( &self->audio_mutex );
878         mlt_service_unlock( MLT_PRODUCER_SERVICE( self->parent ) );
879 }
880
881 static int64_t best_pts( producer_avformat self, int64_t pts, int64_t dts )
882 {
883         self->invalid_pts_counter += pts == AV_NOPTS_VALUE;
884         self->invalid_dts_counter += dts == AV_NOPTS_VALUE;
885         if ( ( self->invalid_pts_counter <= self->invalid_dts_counter
886                    || dts == AV_NOPTS_VALUE ) && pts != AV_NOPTS_VALUE )
887                 return pts;
888         else
889                 return dts;
890 }
891
892 static void find_first_pts( producer_avformat self, int video_index )
893 {
894         // find initial PTS
895         AVFormatContext *context = self->video_format? self->video_format : self->audio_format;
896         int ret = 0;
897         int toscan = 500;
898         AVPacket pkt;
899
900         while ( ret >= 0 && toscan-- > 0 )
901         {
902                 ret = av_read_frame( context, &pkt );
903                 if ( ret >= 0 && pkt.stream_index == video_index && ( pkt.flags & PKT_FLAG_KEY ) )
904                 {
905                         mlt_log_debug( MLT_PRODUCER_SERVICE(self->parent),
906                                 "first_pts %"PRId64" dts %"PRId64" pts_dts_delta %d\n",
907                                 pkt.pts, pkt.dts, (int)(pkt.pts - pkt.dts) );
908                         self->first_pts = best_pts( self, pkt.pts, pkt.dts );
909                         if ( self->first_pts != AV_NOPTS_VALUE )
910                                 toscan = 0;
911                 }
912                 av_free_packet( &pkt );
913         }
914         av_seek_frame( context, -1, 0, AVSEEK_FLAG_BACKWARD );
915 }
916
917 static int seek_video( producer_avformat self, mlt_position position,
918         int64_t req_position, int preseek )
919 {
920         mlt_producer producer = self->parent;
921         int paused = 0;
922
923         if ( self->seekable && ( position != self->video_expected || self->last_position < 0 ) )
924         {
925                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
926
927                 // Fetch the video format context
928                 AVFormatContext *context = self->video_format;
929
930                 // Get the video stream
931                 AVStream *stream = context->streams[ self->video_index ];
932
933                 // Get codec context
934                 AVCodecContext *codec_context = stream->codec;
935
936                 // We may want to use the source fps if available
937                 double source_fps = mlt_properties_get_double( properties, "meta.media.frame_rate_num" ) /
938                         mlt_properties_get_double( properties, "meta.media.frame_rate_den" );
939
940                 if ( self->last_position == POSITION_INITIAL )
941                         find_first_pts( self, self->video_index );
942
943                 if ( self->video_frame && position + 1 == self->video_expected )
944                 {
945                         // We're paused - use last image
946                         paused = 1;
947                 }
948                 else if ( self->seekable && ( position < self->video_expected || position - self->video_expected >= 12 || self->last_position < 0 ) )
949                 {
950                         // Calculate the timestamp for the requested frame
951                         int64_t timestamp = req_position / ( av_q2d( self->video_time_base ) * source_fps );
952                         if ( req_position <= 0 )
953                                 timestamp = 0;
954                         else if ( self->first_pts != AV_NOPTS_VALUE )
955                                 timestamp += self->first_pts;
956                         else if ( context->start_time != AV_NOPTS_VALUE )
957                                 timestamp += context->start_time;
958                         if ( preseek && av_q2d( self->video_time_base ) != 0 )
959                                 timestamp -= 2 / av_q2d( self->video_time_base );
960                         if ( timestamp < 0 )
961                                 timestamp = 0;
962                         mlt_log_debug( MLT_PRODUCER_SERVICE(producer), "seeking timestamp %"PRId64" position " MLT_POSITION_FMT " expected "MLT_POSITION_FMT" last_pos %"PRId64"\n",
963                                 timestamp, position, self->video_expected, self->last_position );
964
965                         // Seek to the timestamp
966                         codec_context->skip_loop_filter = AVDISCARD_NONREF;
967                         av_seek_frame( context, self->video_index, timestamp, AVSEEK_FLAG_BACKWARD );
968
969                         // flush any pictures still in decode buffer
970                         avcodec_flush_buffers( codec_context );
971
972                         // Remove the cached info relating to the previous position
973                         self->current_position = POSITION_INVALID;
974                         self->last_position = POSITION_INVALID;
975                         av_freep( &self->video_frame );
976                 }
977         }
978         return paused;
979 }
980
981 /** Convert a frame position to a time code.
982 */
983
984 static double producer_time_of_frame( mlt_producer producer, mlt_position position )
985 {
986         return ( double )position / mlt_producer_get_fps( producer );
987 }
988
989 // Collect information about all audio streams
990
991 static void get_audio_streams_info( producer_avformat self )
992 {
993         // Fetch the audio format context
994         AVFormatContext *context = self->audio_format;
995         int i;
996
997         for ( i = 0;
998                   i < context->nb_streams;
999                   i++ )
1000         {
1001                 if ( context->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO )
1002                 {
1003                         AVCodecContext *codec_context = context->streams[i]->codec;
1004                         AVCodec *codec = avcodec_find_decoder( codec_context->codec_id );
1005
1006                         // If we don't have a codec and we can't initialise it, we can't do much more...
1007                         pthread_mutex_lock( &self->open_mutex );
1008 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(8<<8)+0)
1009                         if ( codec && avcodec_open2( codec_context, codec, NULL ) >= 0 )
1010 #else
1011                         if ( codec && avcodec_open( codec_context, codec ) >= 0 )
1012 #endif
1013                         {
1014                                 self->audio_streams++;
1015                                 self->audio_max_stream = i;
1016                                 self->total_channels += codec_context->channels;
1017                                 if ( codec_context->channels > self->max_channel )
1018                                         self->max_channel = codec_context->channels;
1019                                 if ( codec_context->sample_rate > self->max_frequency )
1020                                         self->max_frequency = codec_context->sample_rate;
1021                                 avcodec_close( codec_context );
1022                         }
1023                         pthread_mutex_unlock( &self->open_mutex );
1024                 }
1025         }
1026         mlt_log_verbose( NULL, "[producer avformat] audio: total_streams %d max_stream %d total_channels %d max_channels %d\n",
1027                 self->audio_streams, self->audio_max_stream, self->total_channels, self->max_channel );
1028 }
1029
1030 static void set_luma_transfer( struct SwsContext *context, int colorspace, int use_full_range )
1031 {
1032         int *coefficients;
1033         const int *new_coefficients;
1034         int full_range;
1035         int brightness, contrast, saturation;
1036
1037         if ( sws_getColorspaceDetails( context, &coefficients, &full_range, &coefficients, &full_range,
1038                         &brightness, &contrast, &saturation ) != -1 )
1039         {
1040                 // Don't change these from defaults unless explicitly told to.
1041                 if ( use_full_range >= 0 )
1042                         full_range = use_full_range;
1043                 switch ( colorspace )
1044                 {
1045                 case 170:
1046                 case 470:
1047                 case 601:
1048                 case 624:
1049                         new_coefficients = sws_getCoefficients( SWS_CS_ITU601 );
1050                         break;
1051                 case 240:
1052                         new_coefficients = sws_getCoefficients( SWS_CS_SMPTE240M );
1053                         break;
1054                 case 709:
1055                         new_coefficients = sws_getCoefficients( SWS_CS_ITU709 );
1056                         break;
1057                 default:
1058                         new_coefficients = coefficients;
1059                         break;
1060                 }
1061                 sws_setColorspaceDetails( context, new_coefficients, full_range, new_coefficients, full_range,
1062                         brightness, contrast, saturation );
1063         }
1064 }
1065
1066 static mlt_image_format pick_pix_format( enum PixelFormat pix_fmt )
1067 {
1068         switch ( pix_fmt )
1069         {
1070         case PIX_FMT_ARGB:
1071         case PIX_FMT_RGBA:
1072         case PIX_FMT_ABGR:
1073         case PIX_FMT_BGRA:
1074                 return mlt_image_rgb24a;
1075         case PIX_FMT_YUV420P:
1076         case PIX_FMT_YUVJ420P:
1077         case PIX_FMT_YUVA420P:
1078                 return mlt_image_yuv420p;
1079         case PIX_FMT_RGB24:
1080         case PIX_FMT_BGR24:
1081         case PIX_FMT_GRAY8:
1082         case PIX_FMT_MONOWHITE:
1083         case PIX_FMT_MONOBLACK:
1084         case PIX_FMT_RGB8:
1085         case PIX_FMT_BGR8:
1086                 return mlt_image_rgb24;
1087         default:
1088                 return mlt_image_yuv422;
1089         }
1090 }
1091
1092 static mlt_audio_format pick_audio_format( int sample_fmt )
1093 {
1094         switch ( sample_fmt )
1095         {
1096         // interleaved
1097         case AV_SAMPLE_FMT_U8:
1098                 return mlt_audio_u8;
1099         case AV_SAMPLE_FMT_S16:
1100                 return mlt_audio_s16;
1101         case AV_SAMPLE_FMT_S32:
1102                 return mlt_audio_s32le;
1103         case AV_SAMPLE_FMT_FLT:
1104                 return mlt_audio_f32le;
1105         // planar - this producer converts planar to interleaved
1106 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
1107         case AV_SAMPLE_FMT_U8P:
1108                 return mlt_audio_u8;
1109         case AV_SAMPLE_FMT_S16P:
1110                 return mlt_audio_s16;
1111         case AV_SAMPLE_FMT_S32P:
1112                 return mlt_audio_s32le;
1113         case AV_SAMPLE_FMT_FLTP:
1114                 return mlt_audio_f32le;
1115 #endif
1116         default:
1117                 return mlt_audio_none;
1118         }
1119 }
1120
1121 static void convert_image( producer_avformat self, AVFrame *frame, uint8_t *buffer, int pix_fmt,
1122         mlt_image_format *format, int width, int height, uint8_t **alpha )
1123 {
1124         int flags = SWS_BICUBIC | SWS_ACCURATE_RND;
1125
1126 #ifdef USE_MMX
1127         flags |= SWS_CPU_CAPS_MMX;
1128 #endif
1129 #ifdef USE_SSE
1130         flags |= SWS_CPU_CAPS_MMX2;
1131 #endif
1132
1133         // extract alpha from planar formats
1134         if ( ( pix_fmt == PIX_FMT_YUVA420P
1135 #if defined(FFUDIV) && LIBAVUTIL_VERSION_INT >= ((51<<16)+(35<<8)+101)
1136                         || pix_fmt == PIX_FMT_YUVA444P
1137 #endif
1138                         ) &&
1139                 *format != mlt_image_rgb24a && *format != mlt_image_opengl &&
1140                 frame->data[3] && frame->linesize[3] )
1141         {
1142                 int i;
1143                 uint8_t *src, *dst;
1144
1145                 dst = *alpha = mlt_pool_alloc( width * height );
1146                 src = frame->data[3];
1147
1148                 for ( i = 0; i < height; dst += width, src += frame->linesize[3], i++ )
1149                         memcpy( dst, src, FFMIN( width, frame->linesize[3] ) );
1150         }
1151
1152         if ( *format == mlt_image_yuv420p )
1153         {
1154                 struct SwsContext *context = sws_getContext( width, height, pix_fmt,
1155                         width, height, PIX_FMT_YUV420P, flags, NULL, NULL, NULL);
1156                 AVPicture output;
1157                 output.data[0] = buffer;
1158                 output.data[1] = buffer + width * height;
1159                 output.data[2] = buffer + ( 5 * width * height ) / 4;
1160                 output.linesize[0] = width;
1161                 output.linesize[1] = width >> 1;
1162                 output.linesize[2] = width >> 1;
1163                 set_luma_transfer( context, self->colorspace, -1 );
1164                 sws_scale( context, (const uint8_t* const*) frame->data, frame->linesize, 0, height,
1165                         output.data, output.linesize);
1166                 sws_freeContext( context );
1167         }
1168         else if ( *format == mlt_image_rgb24 )
1169         {
1170                 struct SwsContext *context = sws_getContext( width, height, pix_fmt,
1171                         width, height, PIX_FMT_RGB24, flags | SWS_FULL_CHR_H_INT, NULL, NULL, NULL);
1172                 AVPicture output;
1173                 avpicture_fill( &output, buffer, PIX_FMT_RGB24, width, height );
1174                 set_luma_transfer( context, self->colorspace, self->full_luma );
1175                 sws_scale( context, (const uint8_t* const*) frame->data, frame->linesize, 0, height,
1176                         output.data, output.linesize);
1177                 sws_freeContext( context );
1178         }
1179         else if ( *format == mlt_image_rgb24a || *format == mlt_image_opengl )
1180         {
1181                 struct SwsContext *context = sws_getContext( width, height, pix_fmt,
1182                         width, height, PIX_FMT_RGBA, flags | SWS_FULL_CHR_H_INT, NULL, NULL, NULL);
1183                 AVPicture output;
1184                 avpicture_fill( &output, buffer, PIX_FMT_RGBA, width, height );
1185                 set_luma_transfer( context, self->colorspace, self->full_luma );
1186                 sws_scale( context, (const uint8_t* const*) frame->data, frame->linesize, 0, height,
1187                         output.data, output.linesize);
1188                 sws_freeContext( context );
1189         }
1190         else
1191         {
1192                 struct SwsContext *context = sws_getContext( width, height, pix_fmt,
1193                         width, height, PIX_FMT_YUYV422, flags | SWS_FULL_CHR_H_INP, NULL, NULL, NULL);
1194                 AVPicture output;
1195                 avpicture_fill( &output, buffer, PIX_FMT_YUYV422, width, height );
1196                 set_luma_transfer( context, self->colorspace, -1 );
1197                 sws_scale( context, (const uint8_t* const*) frame->data, frame->linesize, 0, height,
1198                         output.data, output.linesize);
1199                 sws_freeContext( context );
1200         }
1201 }
1202
1203 /** Allocate the image buffer and set it on the frame.
1204 */
1205
1206 static int allocate_buffer( mlt_frame frame, AVCodecContext *codec_context, uint8_t **buffer, mlt_image_format *format, int *width, int *height )
1207 {
1208         int size = 0;
1209
1210         if ( codec_context->width == 0 || codec_context->height == 0 )
1211                 return size;
1212
1213         if ( *format == mlt_image_glsl )
1214                 *format = pick_pix_format( codec_context->pix_fmt );
1215
1216         *width = codec_context->width;
1217         *height = codec_context->height;
1218         size = mlt_image_format_size( *format, *width, *height, NULL );
1219         *buffer = mlt_pool_alloc( size );
1220         if ( *buffer )
1221                 mlt_frame_set_image( frame, *buffer, size, mlt_pool_release );
1222         else
1223                 size = 0;
1224
1225         return size;
1226 }
1227
1228 /** Get an image from a frame.
1229 */
1230
1231 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
1232 {
1233         // Get the producer
1234         producer_avformat self = mlt_frame_pop_service( frame );
1235         mlt_producer producer = self->parent;
1236
1237         // Get the properties from the frame
1238         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
1239
1240         // Obtain the frame number of this frame
1241         mlt_position position = mlt_frame_original_position( frame );
1242
1243         // Get the producer properties
1244         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1245
1246         pthread_mutex_lock( &self->video_mutex );
1247
1248         uint8_t *alpha = NULL;
1249         int got_picture = 0;
1250         int image_size = 0;
1251
1252         // Fetch the video format context
1253         AVFormatContext *context = self->video_format;
1254         if ( !context )
1255                 goto exit_get_image;
1256
1257         // Get the video stream
1258         AVStream *stream = context->streams[ self->video_index ];
1259
1260         // Get codec context
1261         AVCodecContext *codec_context = stream->codec;
1262
1263         // Get the image cache
1264         if ( ! self->image_cache )
1265         {
1266                 // if cache size supplied by environment variable
1267                 int cache_supplied = getenv( "MLT_AVFORMAT_CACHE" ) != NULL;
1268                 int cache_size = cache_supplied? atoi( getenv( "MLT_AVFORMAT_CACHE" ) ) : 0;
1269
1270                 // cache size supplied via property
1271                 if ( mlt_properties_get( properties, "cache" ) )
1272                 {
1273                         cache_supplied = 1;
1274                         cache_size = mlt_properties_get_int( properties, "cache" );
1275                 }
1276                 if ( mlt_properties_get_int( properties, "noimagecache" ) )
1277                         cache_size = 0;
1278                 // create cache if not disabled
1279                 if ( !cache_supplied || cache_size > 0 )
1280                         self->image_cache = mlt_cache_init();
1281                 // set cache size if supplied
1282                 if ( self->image_cache && cache_supplied )
1283                         mlt_cache_set_size( self->image_cache, cache_size );
1284         }
1285         if ( self->image_cache )
1286         {
1287                 mlt_frame original = mlt_cache_get_frame( self->image_cache, position );
1288                 if ( original )
1289                 {
1290                         mlt_properties orig_props = MLT_FRAME_PROPERTIES( original );
1291                         int size = 0;
1292
1293                         *buffer = mlt_properties_get_data( orig_props, "alpha", &size );
1294                         if (*buffer)
1295                                 mlt_frame_set_alpha( frame, *buffer, size, NULL );
1296                         *buffer = mlt_properties_get_data( orig_props, "image", &size );
1297                         mlt_frame_set_image( frame, *buffer, size, NULL );
1298                         mlt_properties_set_data( frame_properties, "avformat.image_cache", original, 0, (mlt_destructor) mlt_frame_close, NULL );
1299                         *format = mlt_properties_get_int( orig_props, "format" );
1300
1301                         // Set the resolution
1302                         *width = codec_context->width;
1303                         *height = codec_context->height;
1304
1305                         // Workaround 1088 encodings missing cropping info.
1306                         if ( *height == 1088 && mlt_profile_dar( mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) ) ) == 16.0/9.0 )
1307                                 *height = 1080;
1308
1309                         got_picture = 1;
1310                         goto exit_get_image;
1311                 }
1312         }
1313         // Cache miss
1314
1315         // We may want to use the source fps if available
1316         double source_fps = mlt_properties_get_double( properties, "meta.media.frame_rate_num" ) /
1317                 mlt_properties_get_double( properties, "meta.media.frame_rate_den" );
1318
1319         // This is the physical frame position in the source
1320         int64_t req_position = ( int64_t )( position / mlt_producer_get_fps( producer ) * source_fps + 0.5 );
1321
1322         // Determines if we have to decode all frames in a sequence
1323         // Temporary hack to improve intra frame only
1324         int must_decode = !( codec_context->codec && codec_context->codec->name ) || (
1325                                   strcmp( codec_context->codec->name, "dnxhd" ) &&
1326                                   strcmp( codec_context->codec->name, "dvvideo" ) &&
1327                                   strcmp( codec_context->codec->name, "huffyuv" ) &&
1328                                   strcmp( codec_context->codec->name, "mjpeg" ) &&
1329                                   strcmp( codec_context->codec->name, "rawvideo" ) );
1330
1331         double delay = mlt_properties_get_double( properties, "video_delay" );
1332
1333         // Seek if necessary
1334         const char *interp = mlt_properties_get( frame_properties, "rescale.interp" );
1335         int preseek = must_decode
1336 #if defined(FFUDIV) && LIBAVFORMAT_VERSION_INT >= ((53<<16)+(24<<8)+2)
1337                 && ( interp && strcmp( interp, "nearest" ) )
1338 #endif
1339                 && codec_context->has_b_frames;
1340         int paused = seek_video( self, position, req_position, preseek );
1341
1342         // Seek might have reopened the file
1343         context = self->video_format;
1344         stream = context->streams[ self->video_index ];
1345         codec_context = stream->codec;
1346         if ( *format == mlt_image_none ||
1347                         codec_context->pix_fmt == PIX_FMT_ARGB ||
1348                         codec_context->pix_fmt == PIX_FMT_RGBA ||
1349                         codec_context->pix_fmt == PIX_FMT_ABGR ||
1350                         codec_context->pix_fmt == PIX_FMT_BGRA )
1351                 *format = pick_pix_format( codec_context->pix_fmt );
1352
1353         // Duplicate the last image if necessary
1354         if ( self->video_frame && self->video_frame->linesize[0]
1355                  && ( paused || self->current_position >= req_position ) )
1356         {
1357                 // Duplicate it
1358                 if ( ( image_size = allocate_buffer( frame, codec_context, buffer, format, width, height ) ) )
1359                 {
1360                         // Workaround 1088 encodings missing cropping info.
1361                         if ( *height == 1088 && mlt_profile_dar( mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) ) ) == 16.0/9.0 )
1362                                 *height = 1080;
1363 #ifdef VDPAU
1364                         if ( self->vdpau && self->vdpau->buffer )
1365                         {
1366                                 AVPicture picture;
1367                                 picture.data[0] = self->vdpau->buffer;
1368                                 picture.data[2] = self->vdpau->buffer + codec_context->width * codec_context->height;
1369                                 picture.data[1] = self->vdpau->buffer + codec_context->width * codec_context->height * 5 / 4;
1370                                 picture.linesize[0] = codec_context->width;
1371                                 picture.linesize[1] = codec_context->width / 2;
1372                                 picture.linesize[2] = codec_context->width / 2;
1373                                 convert_image( self, (AVFrame*) &picture, *buffer,
1374                                         PIX_FMT_YUV420P, format, *width, *height, &alpha );
1375                         }
1376                         else
1377 #endif
1378                         convert_image( self, self->video_frame, *buffer, codec_context->pix_fmt,
1379                                 format, *width, *height, &alpha );
1380                         got_picture = 1;
1381                 }
1382         }
1383         else
1384         {
1385                 int ret = 0;
1386                 int64_t int_position = 0;
1387                 int decode_errors = 0;
1388
1389                 // Construct an AVFrame for YUV422 conversion
1390                 if ( !self->video_frame )
1391                         self->video_frame = avcodec_alloc_frame( );
1392
1393                 while( ret >= 0 && !got_picture )
1394                 {
1395                         // Read a packet
1396                         if ( self->pkt.stream_index == self->video_index )
1397                                 av_free_packet( &self->pkt );
1398                         av_init_packet( &self->pkt );
1399                         pthread_mutex_lock( &self->packets_mutex );
1400                         if ( mlt_deque_count( self->vpackets ) )
1401                         {
1402                                 AVPacket *tmp = (AVPacket*) mlt_deque_pop_front( self->vpackets );
1403                                 self->pkt = *tmp;
1404                                 free( tmp );
1405                         }
1406                         else
1407                         {
1408                                 ret = av_read_frame( context, &self->pkt );
1409                                 if ( ret >= 0 && !self->seekable && self->pkt.stream_index == self->audio_index )
1410                                 {
1411                                         if ( !av_dup_packet( &self->pkt ) )
1412                                         {
1413                                                 AVPacket *tmp = malloc( sizeof(AVPacket) );
1414                                                 *tmp = self->pkt;
1415                                                 mlt_deque_push_back( self->apackets, tmp );
1416                                         }
1417                                 }
1418                                 else if ( ret < 0 )
1419                                 {
1420                                         mlt_log_verbose( MLT_PRODUCER_SERVICE(producer), "av_read_frame returned error %d inside get_image\n", ret );
1421                                         if ( !self->seekable && mlt_properties_get_int( properties, "reconnect" ) )
1422                                         {
1423                                                 // Try to reconnect to live sources by closing context and codecs,
1424                                                 // and letting next call to get_frame() reopen.
1425                                                 prepare_reopen( self );
1426                                                 pthread_mutex_unlock( &self->packets_mutex );
1427                                                 goto exit_get_image;
1428                                         }
1429                                         if ( !self->seekable && mlt_properties_get_int( properties, "exit_on_disconnect" ) )
1430                                         {
1431                                                 mlt_log_fatal( MLT_PRODUCER_SERVICE(producer), "Exiting with error due to disconnected source.\n" );
1432                                                 exit( EXIT_FAILURE );
1433                                         }
1434                                 }
1435                         }
1436                         pthread_mutex_unlock( &self->packets_mutex );
1437
1438                         // We only deal with video from the selected video_index
1439                         if ( ret >= 0 && self->pkt.stream_index == self->video_index && self->pkt.size > 0 )
1440                         {
1441                                 int64_t pts = best_pts( self, self->pkt.pts, self->pkt.dts );
1442                                 if ( pts != AV_NOPTS_VALUE )
1443                                 {
1444                                         if ( !self->seekable && self->first_pts == AV_NOPTS_VALUE )
1445                                                 self->first_pts = pts;
1446                                         if ( self->first_pts != AV_NOPTS_VALUE )
1447                                                 pts -= self->first_pts;
1448                                         else if ( context->start_time != AV_NOPTS_VALUE )
1449                                                 pts -= context->start_time;
1450                                         int_position = ( int64_t )( ( av_q2d( self->video_time_base ) * pts + delay ) * source_fps + 0.5 );
1451                                         if ( int_position == self->last_position )
1452                                                 int_position = self->last_position + 1;
1453                                 }
1454                                 mlt_log_debug( MLT_PRODUCER_SERVICE(producer),
1455                                         "V pkt.pts %"PRId64" pkt.dts %"PRId64" req_pos %"PRId64" cur_pos %"PRId64" pkt_pos %"PRId64"\n",
1456                                         self->pkt.pts, self->pkt.dts, req_position, self->current_position, int_position );
1457
1458                                 // Make a dumb assumption on streams that contain wild timestamps
1459                                 if ( abs( req_position - int_position ) > 999 )
1460                                 {
1461                                         int_position = req_position;
1462                                         mlt_log_warning( MLT_PRODUCER_SERVICE(producer), " WILD TIMESTAMP!\n" );
1463                                 }
1464                                 self->last_position = int_position;
1465
1466                                 // Decode the image
1467                                 if ( must_decode || int_position >= req_position )
1468                                 {
1469 #ifdef VDPAU
1470                                         if ( self->vdpau )
1471                                         {
1472                                                 if ( self->vdpau->decoder == VDP_INVALID_HANDLE )
1473                                                 {
1474                                                         vdpau_decoder_init( self );
1475                                                 }
1476                                                 self->vdpau->is_decoded = 0;
1477                                         }
1478 #endif
1479                                         codec_context->reordered_opaque = int_position;
1480                                         if ( int_position >= req_position )
1481                                                 codec_context->skip_loop_filter = AVDISCARD_NONE;
1482 #if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(26<<8)+0))
1483                                         ret = avcodec_decode_video2( codec_context, self->video_frame, &got_picture, &self->pkt );
1484 #else
1485                                         ret = avcodec_decode_video( codec_context, self->video_frame, &got_picture, self->pkt.data, self->pkt.size );
1486 #endif
1487                                         // Note: decode may fail at the beginning of MPEGfile (B-frames referencing before first I-frame), so allow a few errors.
1488                                         if ( ret < 0 )
1489                                         {
1490                                                 if ( ++decode_errors <= 10 )
1491                                                         ret = 0;
1492                                                 else
1493                                                         mlt_log_warning( MLT_PRODUCER_SERVICE(producer), "video decoding error %d\n", ret );
1494                                         }
1495                                         else
1496                                         {
1497                                                 decode_errors = 0;
1498                                         }
1499                                 }
1500
1501                                 if ( got_picture )
1502                                 {
1503                                         // Get position of reordered frame
1504                                         int_position = self->video_frame->reordered_opaque;
1505 #if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(106<<8)+0))
1506                                         pts = best_pts( self, self->video_frame->pkt_pts, self->video_frame->pkt_dts );
1507                                         if ( pts != AV_NOPTS_VALUE )
1508                                         {
1509                                                 if ( self->first_pts != AV_NOPTS_VALUE )
1510                                                         pts -= self->first_pts;
1511                                                 else if ( context->start_time != AV_NOPTS_VALUE )
1512                                                         pts -= context->start_time;
1513                                                 int_position = ( int64_t )( ( av_q2d( self->video_time_base ) * pts + delay ) * source_fps + 0.5 );
1514                                         }
1515 #endif
1516
1517                                         if ( int_position < req_position )
1518                                                 got_picture = 0;
1519                                         else if ( int_position >= req_position )
1520                                                 codec_context->skip_loop_filter = AVDISCARD_NONE;
1521                                 }
1522                                 mlt_log_debug( MLT_PRODUCER_SERVICE(producer), " got_pic %d key %d\n", got_picture, self->pkt.flags & PKT_FLAG_KEY );
1523                         }
1524
1525                         // Now handle the picture if we have one
1526                         if ( got_picture )
1527                         {
1528                                 if ( ( image_size = allocate_buffer( frame, codec_context, buffer, format, width, height ) ) )
1529                                 {
1530                                         // Workaround 1088 encodings missing cropping info.
1531                                         if ( *height == 1088 && mlt_profile_dar( mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) ) ) == 16.0/9.0 )
1532                                                 *height = 1080;
1533 #ifdef VDPAU
1534                                         if ( self->vdpau )
1535                                         {
1536                                                 if ( self->vdpau->is_decoded )
1537                                                 {
1538                                                         struct vdpau_render_state *render = (struct vdpau_render_state*) self->video_frame->data[0];
1539                                                         void *planes[3];
1540                                                         uint32_t pitches[3];
1541                                                         VdpYCbCrFormat dest_format = VDP_YCBCR_FORMAT_YV12;
1542                                                         
1543                                                         if ( !self->vdpau->buffer )
1544                                                                 self->vdpau->buffer = mlt_pool_alloc( codec_context->width * codec_context->height * 3 / 2 );
1545                                                         self->video_frame->data[0] = planes[0] = self->vdpau->buffer;
1546                                                         self->video_frame->data[2] = planes[1] = self->vdpau->buffer + codec_context->width * codec_context->height;
1547                                                         self->video_frame->data[1] = planes[2] = self->vdpau->buffer + codec_context->width * codec_context->height * 5 / 4;
1548                                                         self->video_frame->linesize[0] = pitches[0] = codec_context->width;
1549                                                         self->video_frame->linesize[1] = pitches[1] = codec_context->width / 2;
1550                                                         self->video_frame->linesize[2] = pitches[2] = codec_context->width / 2;
1551
1552                                                         VdpStatus status = vdp_surface_get_bits( render->surface, dest_format, planes, pitches );
1553                                                         if ( status == VDP_STATUS_OK )
1554                                                         {
1555                                                                 convert_image( self, self->video_frame, *buffer, PIX_FMT_YUV420P,
1556                                                                         format, *width, *height, &alpha );
1557                                                         }
1558                                                         else
1559                                                         {
1560                                                                 mlt_log_error( MLT_PRODUCER_SERVICE(producer), "VDPAU Error: %s\n", vdp_get_error_string( status ) );
1561                                                                 image_size = self->vdpau->is_decoded = 0;
1562                                                         }
1563                                                 }
1564                                                 else
1565                                                 {
1566                                                         mlt_log_error( MLT_PRODUCER_SERVICE(producer), "VDPAU error in VdpDecoderRender\n" );
1567                                                         image_size = got_picture = 0;
1568                                                 }
1569                                         }
1570                                         else
1571 #endif
1572                                         convert_image( self, self->video_frame, *buffer, codec_context->pix_fmt,
1573                                                 format, *width, *height, &alpha );
1574                                         self->top_field_first |= self->video_frame->top_field_first;
1575                                         self->current_position = int_position;
1576                                 }
1577                                 else
1578                                 {
1579                                         got_picture = 0;
1580                                 }
1581                         }
1582
1583                         // Free packet data if not video and not live audio packet
1584                         if ( self->pkt.stream_index != self->video_index &&
1585                                  !( !self->seekable && self->pkt.stream_index == self->audio_index ) )
1586                                 av_free_packet( &self->pkt );
1587                 }
1588         }
1589
1590         // set alpha
1591         if ( alpha )
1592                 mlt_frame_set_alpha( frame, alpha, (*width) * (*height), mlt_pool_release );
1593
1594         if ( image_size > 0 && self->image_cache )
1595         {
1596                 mlt_properties_set_int( frame_properties, "format", *format );
1597                 mlt_cache_put_frame( self->image_cache, frame );
1598         }
1599
1600         // Try to duplicate last image if there was a decoding failure
1601         // TODO: with multithread decoding a partial frame decoding resulting
1602         // in failure also resets av_frame making test below fail.
1603         if ( !image_size && self->video_frame && self->video_frame->linesize[0] )
1604         {
1605                 // Duplicate it
1606                 if ( ( image_size = allocate_buffer( frame, codec_context, buffer, format, width, height ) ) )
1607                 {
1608                         // Workaround 1088 encodings missing cropping info.
1609                         if ( *height == 1088 && mlt_profile_dar( mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) ) ) == 16.0/9.0 )
1610                                 *height = 1080;
1611 #ifdef VDPAU
1612                         if ( self->vdpau && self->vdpau->buffer )
1613                         {
1614                                 AVPicture picture;
1615                                 picture.data[0] = self->vdpau->buffer;
1616                                 picture.data[2] = self->vdpau->buffer + codec_context->width * codec_context->height;
1617                                 picture.data[1] = self->vdpau->buffer + codec_context->width * codec_context->height * 5 / 4;
1618                                 picture.linesize[0] = codec_context->width;
1619                                 picture.linesize[1] = codec_context->width / 2;
1620                                 picture.linesize[2] = codec_context->width / 2;
1621                                 convert_image( self, (AVFrame*) &picture, *buffer,
1622                                         PIX_FMT_YUV420P, format, *width, *height, &alpha );
1623                         }
1624                         else
1625 #endif
1626                         convert_image( self, self->video_frame, *buffer, codec_context->pix_fmt,
1627                                 format, *width, *height, &alpha );
1628                         got_picture = 1;
1629                 }
1630         }
1631
1632         // Regardless of speed, we expect to get the next frame (cos we ain't too bright)
1633         self->video_expected = position + 1;
1634
1635 exit_get_image:
1636
1637         pthread_mutex_unlock( &self->video_mutex );
1638
1639         // Set the progressive flag
1640         if ( mlt_properties_get( properties, "force_progressive" ) )
1641                 mlt_properties_set_int( frame_properties, "progressive", !!mlt_properties_get_int( properties, "force_progressive" ) );
1642         else if ( self->video_frame )
1643                 mlt_properties_set_int( frame_properties, "progressive", !self->video_frame->interlaced_frame );
1644
1645         // Set the field order property for this frame
1646         if ( mlt_properties_get( properties, "force_tff" ) )
1647                 mlt_properties_set_int( frame_properties, "top_field_first", !!mlt_properties_get_int( properties, "force_tff" ) );
1648         else
1649                 mlt_properties_set_int( frame_properties, "top_field_first", self->top_field_first );
1650
1651         // Set immutable properties of the selected track's (or overridden) source attributes.
1652         mlt_service_lock( MLT_PRODUCER_SERVICE( producer ) );
1653         mlt_properties_set_int( properties, "meta.media.top_field_first", self->top_field_first );
1654         mlt_properties_set_int( properties, "meta.media.progressive", mlt_properties_get_int( frame_properties, "progressive" ) );
1655         mlt_service_unlock( MLT_PRODUCER_SERVICE( producer ) );
1656
1657         // If we already have RGB, then the full range processing either happened already
1658         // or does not apply (RGB source).
1659         if ( *format == mlt_image_rgb24 || *format == mlt_image_rgb24a || *format == mlt_image_opengl )
1660                 mlt_properties_set( frame_properties, "force_full_luma", NULL );
1661
1662         return !got_picture;
1663 }
1664
1665 /** Process properties as AVOptions and apply to AV context obj
1666 */
1667
1668 static void apply_properties( void *obj, mlt_properties properties, int flags )
1669 {
1670         int i;
1671         int count = mlt_properties_count( properties );
1672         for ( i = 0; i < count; i++ )
1673         {
1674                 const char *opt_name = mlt_properties_get_name( properties, i );
1675 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(10<<8)+0)
1676                 const AVOption *opt = av_opt_find( obj, opt_name, NULL, flags, flags );
1677 #else
1678                 const AVOption *opt = av_find_opt( obj, opt_name, NULL, flags, flags );
1679 #endif
1680                 if ( opt_name && mlt_properties_get( properties, opt_name ) )
1681                 {
1682                         if ( opt )
1683 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(12<<8)+0)
1684                                 av_opt_set( obj, opt_name, mlt_properties_get( properties, opt_name), 0 );
1685 #elif LIBAVCODEC_VERSION_INT >= ((52<<16)+(7<<8)+0)
1686                                 av_set_string3( obj, opt_name, mlt_properties_get( properties, opt_name), 0, NULL );
1687 #elif LIBAVCODEC_VERSION_INT >= ((51<<16)+(59<<8)+0)
1688                                 av_set_string2( obj, opt_name, mlt_properties_get( properties, opt_name), 0 );
1689 #else
1690                                 av_set_string( obj, opt_name, mlt_properties_get( properties, opt_name) );
1691 #endif
1692                 }
1693         }
1694 }
1695
1696 /** Initialize the video codec context.
1697  */
1698
1699 static int video_codec_init( producer_avformat self, int index, mlt_properties properties )
1700 {
1701         // Initialise the codec if necessary
1702         if ( !self->video_codec )
1703         {
1704                 // Get the video stream
1705                 AVStream *stream = self->video_format->streams[ index ];
1706
1707                 // Get codec context
1708                 AVCodecContext *codec_context = stream->codec;
1709
1710                 // Find the codec
1711                 AVCodec *codec = avcodec_find_decoder( codec_context->codec_id );
1712 #ifdef VDPAU
1713                 if ( codec_context->codec_id == AV_CODEC_ID_H264 )
1714                 {
1715                         if ( ( codec = avcodec_find_decoder_by_name( "h264_vdpau" ) ) )
1716                         {
1717                                 if ( vdpau_init( self ) )
1718                                 {
1719                                         self->video_codec = codec_context;
1720                                         if ( !vdpau_decoder_init( self ) )
1721                                                 vdpau_fini( self );
1722                                 }
1723                         }
1724                         if ( !self->vdpau )
1725                                 codec = avcodec_find_decoder( codec_context->codec_id );
1726                 }
1727 #endif
1728
1729                 // Initialise multi-threading
1730                 int thread_count = mlt_properties_get_int( properties, "threads" );
1731                 if ( thread_count == 0 && getenv( "MLT_AVFORMAT_THREADS" ) )
1732                         thread_count = atoi( getenv( "MLT_AVFORMAT_THREADS" ) );
1733                 if ( thread_count > 1 )
1734                         codec_context->thread_count = thread_count;
1735
1736                 // If we don't have a codec and we can't initialise it, we can't do much more...
1737                 pthread_mutex_lock( &self->open_mutex );
1738 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(8<<8)+0)
1739                 if ( codec && avcodec_open2( codec_context, codec, NULL ) >= 0 )
1740 #else
1741                 if ( codec && avcodec_open( codec_context, codec ) >= 0 )
1742 #endif
1743                 {
1744                         // Now store the codec with its destructor
1745                         self->video_codec = codec_context;
1746                 }
1747                 else
1748                 {
1749                         // Remember that we can't use this later
1750                         self->video_index = -1;
1751                         pthread_mutex_unlock( &self->open_mutex );
1752                         return 0;
1753                 }
1754                 pthread_mutex_unlock( &self->open_mutex );
1755
1756                 // Process properties as AVOptions
1757                 apply_properties( codec_context, properties, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM );
1758 #if LIBAVCODEC_VERSION_INT >= ((52<<16)+(122<<8)+0)
1759                 if ( codec->priv_class && codec_context->priv_data )
1760                         apply_properties( codec_context->priv_data, properties, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM );
1761 #endif
1762
1763                 // Reset some image properties
1764                 if ( self->video_codec )
1765                 {
1766                         mlt_properties_set_int( properties, "width", self->video_codec->width );
1767                         mlt_properties_set_int( properties, "height", self->video_codec->height );
1768                         get_aspect_ratio( properties, stream, self->video_codec );
1769                 }
1770
1771                 // Start with the muxer frame rate.
1772 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(42<<8)+0)
1773                 AVRational frame_rate = stream->avg_frame_rate;
1774 #else
1775                 AVRational frame_rate = stream->r_frame_rate;
1776 #endif
1777                 double fps = av_q2d( frame_rate );
1778
1779 #if LIBAVFORMAT_VERSION_MAJOR < 55
1780                 // Verify and sanitize the muxer frame rate.
1781                 if ( isnan( fps ) || isinf( fps ) || fps == 0 )
1782                 {
1783                         frame_rate = stream->r_frame_rate;
1784                         fps = av_q2d( frame_rate );
1785                 }
1786 #endif
1787 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(42<<8)+0) && LIBAVFORMAT_VERSION_MAJOR < 55
1788                 // With my samples when r_frame_rate != 1000 but avg_frame_rate is valid,
1789                 // avg_frame_rate gives some approximate value that does not well match the media.
1790                 // Also, on my sample where r_frame_rate = 1000, using avg_frame_rate directly
1791                 // results in some very choppy output, but some value slightly different works
1792                 // great.
1793                 if ( av_q2d( stream->r_frame_rate ) >= 1000 && av_q2d( stream->avg_frame_rate ) > 0 )
1794                 {
1795                         frame_rate = av_d2q( av_q2d( stream->avg_frame_rate ), 1024 );
1796                         fps = av_q2d( frame_rate );
1797                 }
1798 #endif
1799                 // XXX frame rates less than 1 fps are not considered sane
1800                 if ( isnan( fps ) || isinf( fps ) || fps < 1.0 )
1801                 {
1802                         // Get the frame rate from the codec.
1803                         frame_rate.num = self->video_codec->time_base.den;
1804                         frame_rate.den = self->video_codec->time_base.num * self->video_codec->ticks_per_frame;
1805                         fps = av_q2d( frame_rate );
1806                 }
1807                 if ( isnan( fps ) || isinf( fps ) || fps < 1.0 )
1808                 {
1809                         // Use the profile frame rate if all else fails.
1810                         mlt_profile profile = mlt_service_profile( MLT_PRODUCER_SERVICE( self->parent ) );
1811                         frame_rate.num = profile->frame_rate_num;
1812                         frame_rate.den = profile->frame_rate_den;
1813                 }
1814
1815                 self->video_time_base = stream->time_base;
1816                 if ( mlt_properties_get( properties, "force_fps" ) )
1817                 {
1818                         AVRational force_fps = av_d2q( mlt_properties_get_double( properties, "force_fps" ), 1024 );
1819                         self->video_time_base = av_mul_q( stream->time_base, av_div_q( frame_rate, force_fps ) );
1820                         frame_rate = force_fps;
1821                 }
1822                 mlt_properties_set_int( properties, "meta.media.frame_rate_num", frame_rate.num );
1823                 mlt_properties_set_int( properties, "meta.media.frame_rate_den", frame_rate.den );
1824
1825                 // Set the YUV colorspace from override or detect
1826                 self->colorspace = mlt_properties_get_int( properties, "force_colorspace" );
1827 #if LIBAVCODEC_VERSION_INT > ((52<<16)+(28<<8)+0)
1828                 if ( ! self->colorspace )
1829                 {
1830                         switch ( self->video_codec->colorspace )
1831                         {
1832                         case AVCOL_SPC_SMPTE240M:
1833                                 self->colorspace = 240;
1834                                 break;
1835                         case AVCOL_SPC_BT470BG:
1836                         case AVCOL_SPC_SMPTE170M:
1837                                 self->colorspace = 601;
1838                                 break;
1839                         case AVCOL_SPC_BT709:
1840                                 self->colorspace = 709;
1841                                 break;
1842                         default:
1843                                 // This is a heuristic Charles Poynton suggests in "Digital Video and HDTV"
1844                                 self->colorspace = self->video_codec->width * self->video_codec->height > 750000 ? 709 : 601;
1845                                 break;
1846                         }
1847                 }
1848 #endif
1849                 // Let apps get chosen colorspace
1850                 mlt_properties_set_int( properties, "meta.media.colorspace", self->colorspace );
1851
1852                 self->full_luma = -1;
1853 #if LIBAVCODEC_VERSION_INT >= ((52<<16)+(72<<8)+2)
1854                 mlt_log_debug( MLT_PRODUCER_SERVICE(self->parent), "color_range %d\n", codec_context->color_range );
1855                 if ( codec_context->color_range == AVCOL_RANGE_JPEG )
1856                         self->full_luma = 1;
1857 #endif
1858                 if ( mlt_properties_get( properties, "set.force_full_luma" ) )
1859                         self->full_luma = mlt_properties_get_int( properties, "set.force_full_luma" );
1860         }
1861         return self->video_codec && self->video_index > -1;
1862 }
1863
1864 /** Set up video handling.
1865 */
1866
1867 static void producer_set_up_video( producer_avformat self, mlt_frame frame )
1868 {
1869         // Get the producer
1870         mlt_producer producer = self->parent;
1871
1872         // Get the properties
1873         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1874
1875         // Fetch the video format context
1876         AVFormatContext *context = self->video_format;
1877
1878         // Get the video_index
1879         int index = mlt_properties_get_int( properties, "video_index" );
1880
1881         int unlock_needed = 0;
1882
1883         // Reopen the file if necessary
1884         if ( !context && index > -1 )
1885         {
1886                 unlock_needed = 1;
1887                 pthread_mutex_lock( &self->video_mutex );
1888                 producer_open( self, mlt_service_profile( MLT_PRODUCER_SERVICE(producer) ),
1889                         mlt_properties_get( properties, "resource" ), 0 );
1890                 context = self->video_format;
1891         }
1892
1893         // Exception handling for video_index
1894         if ( context && index >= (int) context->nb_streams )
1895         {
1896                 // Get the last video stream
1897                 for ( index = context->nb_streams - 1;
1898                           index >= 0 && context->streams[ index ]->codec->codec_type != CODEC_TYPE_VIDEO;
1899                           index-- );
1900                 mlt_properties_set_int( properties, "video_index", index );
1901         }
1902         if ( context && index > -1 && context->streams[ index ]->codec->codec_type != CODEC_TYPE_VIDEO )
1903         {
1904                 // Invalidate the video stream
1905                 index = -1;
1906                 mlt_properties_set_int( properties, "video_index", index );
1907         }
1908
1909         // Update the video properties if the index changed
1910         if ( index != self->video_index )
1911         {
1912                 // Reset the video properties if the index changed
1913                 self->video_index = index;
1914                 pthread_mutex_lock( &self->open_mutex );
1915                 if ( self->video_codec )
1916                         avcodec_close( self->video_codec );
1917                 self->video_codec = NULL;
1918                 pthread_mutex_unlock( &self->open_mutex );
1919         }
1920
1921         // Get the frame properties
1922         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
1923
1924         // Get the codec
1925         if ( context && index > -1 && video_codec_init( self, index, properties ) )
1926         {
1927                 // Set the frame properties
1928                 double force_aspect_ratio = mlt_properties_get_double( properties, "force_aspect_ratio" );
1929                 double aspect_ratio = ( force_aspect_ratio > 0.0 ) ?
1930                         force_aspect_ratio : mlt_properties_get_double( properties, "aspect_ratio" );
1931
1932                 // Set the width and height
1933                 mlt_properties_set_int( frame_properties, "width", self->video_codec->width );
1934                 mlt_properties_set_int( frame_properties, "height", self->video_codec->height );
1935                 mlt_properties_set_int( properties, "meta.media.width", self->video_codec->width );
1936                 mlt_properties_set_int( properties, "meta.media.height", self->video_codec->height );
1937                 mlt_properties_set_double( frame_properties, "aspect_ratio", aspect_ratio );
1938                 mlt_properties_set_int( frame_properties, "colorspace", self->colorspace );
1939
1940                 // Workaround 1088 encodings missing cropping info.
1941                 if ( self->video_codec->height == 1088 && mlt_profile_dar( mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) ) ) == 16.0/9.0 )
1942                 {
1943                         mlt_properties_set_int( properties, "meta.media.height", 1080 );
1944                 }
1945
1946                 // Add our image operation
1947                 mlt_frame_push_service( frame, self );
1948                 mlt_frame_push_get_image( frame, producer_get_image );
1949         }
1950         else
1951         {
1952                 // If something failed, use test card image
1953                 mlt_properties_set_int( frame_properties, "test_image", 1 );
1954         }
1955         if ( unlock_needed )
1956                 pthread_mutex_unlock( &self->video_mutex );
1957 }
1958
1959 static int seek_audio( producer_avformat self, mlt_position position, double timecode )
1960 {
1961         int paused = 0;
1962
1963         // Seek if necessary
1964         if ( self->seekable && ( position != self->audio_expected || self->last_position < 0 ) )
1965         {
1966                 if ( self->last_position == POSITION_INITIAL )
1967                 {
1968                         int video_index = self->video_index;
1969                         if ( video_index == -1 )
1970                                 video_index = first_video_index( self );
1971                         if ( video_index >= 0 )
1972                                 find_first_pts( self, video_index );
1973                 }
1974
1975                 if ( position + 1 == self->audio_expected )
1976                 {
1977                         // We're paused - silence required
1978                         paused = 1;
1979                 }
1980                 else if ( position < self->audio_expected || position - self->audio_expected >= 12 )
1981                 {
1982                         AVFormatContext *context = self->audio_format;
1983                         int64_t timestamp = ( int64_t )( timecode * AV_TIME_BASE + 0.5 );
1984                         if ( context->start_time != AV_NOPTS_VALUE )
1985                                 timestamp += context->start_time;
1986                         if ( timestamp < 0 )
1987                                 timestamp = 0;
1988
1989                         // Set to the real timecode
1990                         if ( av_seek_frame( context, -1, timestamp, AVSEEK_FLAG_BACKWARD ) != 0 )
1991                                 paused = 1;
1992
1993                         // Clear the usage in the audio buffer
1994                         int i = MAX_AUDIO_STREAMS + 1;
1995                         while ( --i )
1996                                 self->audio_used[i - 1] = 0;
1997                 }
1998         }
1999         return paused;
2000 }
2001
2002 static int sample_bytes( AVCodecContext *context )
2003 {
2004 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(8<<8)+0)
2005         return av_get_bytes_per_sample( context->sample_fmt );
2006 #elif LIBAVCODEC_VERSION_MAJOR >= 53
2007         return av_get_bits_per_sample_fmt( context->sample_fmt ) / 8;
2008 #else
2009         return av_get_bits_per_sample_format( context->sample_fmt ) / 8;
2010 #endif
2011 }
2012
2013 static void planar_to_interleaved( uint8_t *dest, uint8_t *src, int samples, int channels, int bytes_per_sample )
2014 {
2015         int s, c;
2016         for ( s = 0; s < samples; s++ )
2017         {
2018                 for ( c = 0; c < channels; c++ )
2019                 {
2020                         memcpy( dest, src + ( c * samples + s ) * bytes_per_sample, bytes_per_sample );
2021                         dest += bytes_per_sample;
2022                 }
2023         }
2024 }
2025
2026 static void planar_to_interleaved2( uint8_t *dest, AVFrame *src, int samples, int channels, int bytes_per_sample )
2027 {
2028         int s, c;
2029         for ( s = 0; s < samples; s++ )
2030         {
2031                 for ( c = 0; c < channels; c++ )
2032                 {
2033                         memcpy( dest, &src->data[c][s * bytes_per_sample], bytes_per_sample );
2034                         dest += bytes_per_sample;
2035                 }
2036         }
2037 }
2038
2039 static int decode_audio( producer_avformat self, int *ignore, AVPacket pkt, int channels, int samples, double timecode, double fps )
2040 {
2041         // Fetch the audio_format
2042         AVFormatContext *context = self->audio_format;
2043
2044         // Get the current stream index
2045         int index = pkt.stream_index;
2046
2047         // Get codec context
2048         AVCodecContext *codec_context = self->audio_codec[ index ];
2049
2050         // Obtain the audio buffers
2051         uint8_t *audio_buffer = self->audio_buffer[ index ];
2052         uint8_t *decode_buffer = self->decode_buffer[ index ];
2053
2054         int audio_used = self->audio_used[ index ];
2055         uint8_t *ptr = pkt.data;
2056         int len = pkt.size;
2057         int ret = 0;
2058
2059         while ( ptr && ret >= 0 && len > 0 )
2060         {
2061                 int sizeof_sample = sample_bytes( codec_context );
2062                 int data_size = self->audio_buffer_size[ index ];
2063
2064                 // Decode the audio
2065 #if LIBAVCODEC_VERSION_MAJOR >= 55
2066                 if ( !self->audio_frame )
2067                         self->audio_frame = avcodec_alloc_frame();
2068                 else
2069                         avcodec_get_frame_defaults( self->audio_frame );
2070                 ret = avcodec_decode_audio4( codec_context, self->audio_frame, &data_size, &pkt );
2071                 if ( data_size ) {
2072                         data_size = av_samples_get_buffer_size( NULL, codec_context->channels,
2073                                 self->audio_frame->nb_samples, codec_context->sample_fmt, 1 );
2074                         decode_buffer = self->audio_frame->data[0];
2075                 }
2076 #else
2077                 ret = avcodec_decode_audio3( codec_context, (int16_t*) decode_buffer, &data_size, &pkt );
2078 #endif
2079                 if ( ret < 0 )
2080                 {
2081                         mlt_log_warning( MLT_PRODUCER_SERVICE(self->parent), "audio decoding error %d\n", ret );
2082                         break;
2083                 }
2084
2085                 pkt.size = len -= ret;
2086                 pkt.data = ptr += ret;
2087
2088                 // If decoded successfully
2089                 if ( data_size > 0 )
2090                 {
2091                         // Figure out how many samples will be needed after resampling
2092                         int convert_samples = data_size / codec_context->channels / sample_bytes( codec_context );
2093
2094                         // Resize audio buffer to prevent overflow
2095                         if ( ( audio_used + convert_samples ) * channels * sizeof_sample > self->audio_buffer_size[ index ] )
2096                         {
2097                                 self->audio_buffer_size[ index ] = ( audio_used + convert_samples * 2 ) * channels * sizeof_sample;
2098                                 audio_buffer = self->audio_buffer[ index ] = mlt_pool_realloc( audio_buffer, self->audio_buffer_size[ index ] );
2099                         }
2100                         uint8_t *dest = &audio_buffer[ audio_used * codec_context->channels * sizeof_sample ];
2101                         switch ( codec_context->sample_fmt )
2102                         {
2103 #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(17<<8)+0)
2104                         case AV_SAMPLE_FMT_U8P:
2105                         case AV_SAMPLE_FMT_S16P:
2106                         case AV_SAMPLE_FMT_S32P:
2107                         case AV_SAMPLE_FMT_FLTP:
2108 #if LIBAVCODEC_VERSION_MAJOR >= 55
2109                                 planar_to_interleaved2( dest, self->audio_frame, convert_samples, codec_context->channels, sizeof_sample );
2110 #else
2111                                 planar_to_interleaved( dest, decode_buffer, convert_samples, codec_context->channels, sizeof_sample );
2112 #endif
2113                                 break;
2114 #endif
2115                         default:
2116                                 // Straight copy to audio buffer
2117                                 memcpy( dest, decode_buffer, data_size );
2118                         }
2119                         audio_used += convert_samples;
2120
2121                         // Handle ignore
2122                         while ( *ignore && audio_used )
2123                         {
2124                                 *ignore -= 1;
2125                                 audio_used -= audio_used > samples ? samples : audio_used;
2126                                 memmove( audio_buffer, &audio_buffer[ samples * codec_context->channels * sizeof_sample ],
2127                                                  audio_used * sizeof_sample );
2128                         }
2129                 }
2130         }
2131
2132         // If we're behind, ignore this packet
2133         // Skip this on non-seekable, audio-only inputs.
2134         if ( pkt.pts >= 0 && ( self->seekable || self->video_format ) && *ignore == 0 && audio_used > samples / 2 )
2135         {
2136                 int64_t pts = pkt.pts;
2137                 if ( self->first_pts != AV_NOPTS_VALUE )
2138                         pts -= self->first_pts;
2139                 else if ( context->start_time != AV_NOPTS_VALUE )
2140                         pts -= context->start_time;
2141                 double timebase = av_q2d( context->streams[ index ]->time_base );
2142                 int64_t int_position = ( int64_t )( timebase * pts * fps + 0.5 );
2143                 int64_t req_position = ( int64_t )( timecode * fps + 0.5 );
2144
2145                 mlt_log_debug( MLT_PRODUCER_SERVICE(self->parent),
2146                         "A pkt.pts %"PRId64" pkt.dts %"PRId64" req_pos %"PRId64" cur_pos %"PRId64" pkt_pos %"PRId64"\n",
2147                         pkt.pts, pkt.dts, req_position, self->current_position, int_position );
2148
2149                 if ( int_position > 0 )
2150                 {
2151                         if ( int_position < req_position )
2152                                 // We are behind, so skip some
2153                                 *ignore = req_position - int_position;
2154                         else if ( self->audio_index != INT_MAX && int_position > req_position + 2 )
2155                                 // We are ahead, so seek backwards some more
2156                                 seek_audio( self, req_position, timecode - 1.0 );
2157                 }
2158                 // Cancel the find_first_pts() in seek_audio()
2159                 if ( self->video_index == -1 && self->last_position == POSITION_INITIAL )
2160                         self->last_position = int_position;
2161         }
2162
2163         self->audio_used[ index ] = audio_used;
2164
2165         return ret;
2166 }
2167
2168 /** Get the audio from a frame.
2169 */
2170 static int producer_get_audio( mlt_frame frame, void **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
2171 {
2172         // Get the producer
2173         producer_avformat self = mlt_frame_pop_audio( frame );
2174
2175         pthread_mutex_lock( &self->audio_mutex );
2176         
2177         // Obtain the frame number of this frame
2178         mlt_position position = mlt_frame_original_position( frame );
2179
2180         // Calculate the real time code
2181         double real_timecode = producer_time_of_frame( self->parent, position );
2182
2183         // Get the producer fps
2184         double fps = mlt_producer_get_fps( self->parent );
2185
2186         // Number of frames to ignore (for ffwd)
2187         int ignore[ MAX_AUDIO_STREAMS ] = { 0 };
2188
2189         // Flag for paused (silence)
2190         int paused = seek_audio( self, position, real_timecode );
2191
2192         // Initialize ignore for all streams from the seek return value
2193         int i = MAX_AUDIO_STREAMS;
2194         while ( i-- )
2195                 ignore[i] = ignore[0];
2196
2197         // Fetch the audio_format
2198         AVFormatContext *context = self->audio_format;
2199         if ( !context )
2200                 goto exit_get_audio;
2201
2202         int sizeof_sample = sizeof( int16_t );
2203         
2204         // Determine the tracks to use
2205         int index = self->audio_index;
2206         int index_max = self->audio_index + 1;
2207         if ( self->audio_index == INT_MAX )
2208         {
2209                 index = 0;
2210                 index_max = FFMIN( MAX_AUDIO_STREAMS, context->nb_streams );
2211                 *channels = self->total_channels;
2212                 *samples = mlt_sample_calculator( fps, FFMAX( self->max_frequency, *frequency ), position );
2213                 *frequency = FFMAX( self->max_frequency, *frequency );
2214         }
2215
2216         // Initialize the buffers
2217         for ( ; index < index_max && index < MAX_AUDIO_STREAMS; index++ )
2218         {
2219                 // Get codec context
2220                 AVCodecContext *codec_context = self->audio_codec[ index ];
2221
2222                 if ( codec_context && !self->audio_buffer[ index ] )
2223                 {
2224                         codec_context->request_channels = self->audio_index == INT_MAX ? codec_context->channels : *channels;
2225                         sizeof_sample = sample_bytes( codec_context );
2226
2227                         // Check for audio buffer and create if necessary
2228                         self->audio_buffer_size[ index ] = MAX_AUDIO_FRAME_SIZE * sizeof_sample;
2229                         self->audio_buffer[ index ] = mlt_pool_alloc( self->audio_buffer_size[ index ] );
2230
2231                         // Check for decoder buffer and create if necessary
2232                         self->decode_buffer[ index ] = av_malloc( self->audio_buffer_size[ index ] );
2233                 }
2234         }
2235
2236         // Get the audio if required
2237         if ( !paused && *frequency > 0 )
2238         {
2239                 int ret = 0;
2240                 int got_audio = 0;
2241                 AVPacket pkt;
2242
2243                 av_init_packet( &pkt );
2244                 
2245                 // Caller requested number samples based on requested sample rate.
2246                 if ( self->audio_index != INT_MAX )
2247                         *samples = mlt_sample_calculator( fps, self->audio_codec[ self->audio_index ]->sample_rate, position );
2248
2249                 while ( ret >= 0 && !got_audio )
2250                 {
2251                         // Check if the buffer already contains the samples required
2252                         if ( self->audio_index != INT_MAX &&
2253                                  self->audio_used[ self->audio_index ] >= *samples &&
2254                                  ignore[ self->audio_index ] == 0 )
2255                         {
2256                                 got_audio = 1;
2257                                 break;
2258                         }
2259                         else if ( self->audio_index == INT_MAX )
2260                         {
2261                                 // Check if there is enough audio for all streams
2262                                 got_audio = 1;
2263                                 for ( index = 0; got_audio && index < index_max; index++ )
2264                                         if ( ( self->audio_codec[ index ] && self->audio_used[ index ] < *samples ) || ignore[ index ] )
2265                                                 got_audio = 0;
2266                                 if ( got_audio )
2267                                         break;
2268                         }
2269
2270                         // Read a packet
2271                         pthread_mutex_lock( &self->packets_mutex );
2272                         if ( mlt_deque_count( self->apackets ) )
2273                         {
2274                                 AVPacket *tmp = (AVPacket*) mlt_deque_pop_front( self->apackets );
2275                                 pkt = *tmp;
2276                                 free( tmp );
2277                         }
2278                         else
2279                         {
2280                                 ret = av_read_frame( context, &pkt );
2281                                 if ( ret >= 0 && !self->seekable && pkt.stream_index == self->video_index )
2282                                 {
2283                                         if ( !av_dup_packet( &pkt ) )
2284                                         {
2285                                                 AVPacket *tmp = malloc( sizeof(AVPacket) );
2286                                                 *tmp = pkt;
2287                                                 mlt_deque_push_back( self->vpackets, tmp );
2288                                         }
2289                                 }
2290                                 else if ( ret < 0 )
2291                                 {
2292                                         mlt_producer producer = self->parent;
2293                                         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
2294                                         mlt_log_verbose( MLT_PRODUCER_SERVICE(producer), "av_read_frame returned error %d inside get_audio\n", ret );
2295                                         if ( !self->seekable && mlt_properties_get_int( properties, "reconnect" ) )
2296                                         {
2297                                                 // Try to reconnect to live sources by closing context and codecs,
2298                                                 // and letting next call to get_frame() reopen.
2299                                                 prepare_reopen( self );
2300                                                 pthread_mutex_unlock( &self->packets_mutex );
2301                                                 goto exit_get_audio;
2302                                         }
2303                                         if ( !self->seekable && mlt_properties_get_int( properties, "exit_on_disconnect" ) )
2304                                         {
2305                                                 mlt_log_fatal( MLT_PRODUCER_SERVICE(producer), "Exiting with error due to disconnected source.\n" );
2306                                                 exit( EXIT_FAILURE );
2307                                         }
2308                                 }
2309                         }
2310                         pthread_mutex_unlock( &self->packets_mutex );
2311
2312                         // We only deal with audio from the selected audio index
2313                         index = pkt.stream_index;
2314                         if ( index < MAX_AUDIO_STREAMS && ret >= 0 && pkt.data && pkt.size > 0 && ( index == self->audio_index ||
2315                                  ( self->audio_index == INT_MAX && context->streams[ index ]->codec->codec_type == CODEC_TYPE_AUDIO ) ) )
2316                         {
2317                                 int channels2 = self->audio_codec[index]->channels;
2318                                 ret = decode_audio( self, &ignore[index], pkt, channels2, *samples, real_timecode, fps );
2319                         }
2320
2321                         if ( self->seekable || index != self->video_index )
2322                                 av_free_packet( &pkt );
2323
2324                 }
2325
2326                 // Set some additional return values
2327                 *format = mlt_audio_s16;
2328                 if ( self->audio_index != INT_MAX )
2329                 {
2330                         index = self->audio_index;
2331                         *channels = self->audio_codec[ index ]->channels;
2332                         *frequency = self->audio_codec[ index ]->sample_rate;
2333                         *format = pick_audio_format( self->audio_codec[ index ]->sample_fmt );
2334                         sizeof_sample = sample_bytes( self->audio_codec[ index ] );
2335                 }
2336                 else if ( self->audio_index == INT_MAX )
2337                 {
2338                         for ( index = 0; index < index_max; index++ )
2339                                 if ( self->audio_codec[ index ] )
2340                                 {
2341                                         // XXX: This only works if all audio tracks have the same sample format.
2342                                         *format = pick_audio_format( self->audio_codec[ index ]->sample_fmt );
2343                                         sizeof_sample = sample_bytes( self->audio_codec[ index ] );
2344                                         break;
2345                                 }
2346                 }
2347
2348                 // Allocate and set the frame's audio buffer
2349                 int size = mlt_audio_format_size( *format, *samples, *channels );
2350                 *buffer = mlt_pool_alloc( size );
2351                 mlt_frame_set_audio( frame, *buffer, *format, size, mlt_pool_release );
2352
2353                 // Interleave tracks if audio_index=all
2354                 if ( self->audio_index == INT_MAX )
2355                 {
2356                         uint8_t *dest = *buffer;
2357                         int i;
2358                         for ( i = 0; i < *samples; i++ )
2359                         {
2360                                 for ( index = 0; index < index_max; index++ )
2361                                 if ( self->audio_codec[ index ] )
2362                                 {
2363                                         int current_channels = self->audio_codec[ index ]->channels;
2364                                         uint8_t *src = self->audio_buffer[ index ] + i * current_channels * sizeof_sample;
2365                                         memcpy( dest, src, current_channels * sizeof_sample );
2366                                         dest += current_channels * sizeof_sample;
2367                                 }
2368                         }
2369                         for ( index = 0; index < index_max; index++ )
2370                         if ( self->audio_codec[ index ] && self->audio_used[ index ] >= *samples )
2371                         {
2372                                 int current_channels = self->audio_codec[ index ]->channels;
2373                                 uint8_t *src = self->audio_buffer[ index ] + *samples * current_channels * sizeof_sample;
2374                                 self->audio_used[index] -= *samples;
2375                                 memmove( self->audio_buffer[ index ], src, self->audio_used[ index ] * current_channels * sizeof_sample );
2376                         }
2377                 }
2378                 // Copy a single track to the output buffer
2379                 else
2380                 {
2381                         index = self->audio_index;
2382
2383                         // Now handle the audio if we have enough
2384                         if ( self->audio_used[ index ] > 0 )
2385                         {
2386                                 uint8_t *src = self->audio_buffer[ index ];
2387                                 // copy samples from audio_buffer
2388                                 size = self->audio_used[ index ] < *samples ? self->audio_used[ index ] : *samples;
2389                                 memcpy( *buffer, src, size * *channels * sizeof_sample );
2390                                 // supply the remaining requested samples as silence
2391                                 if ( *samples > self->audio_used[ index ] )
2392                                         memset( *buffer + size * *channels * sizeof_sample, 0, ( *samples - self->audio_used[ index ] ) * *channels * sizeof_sample );
2393                                 // reposition the samples within audio_buffer
2394                                 self->audio_used[ index ] -= size;
2395                                 memmove( src, src + size * *channels * sizeof_sample, self->audio_used[ index ] * *channels * sizeof_sample );
2396                         }
2397                         else
2398                         {
2399                                 // Otherwise fill with silence
2400                                 memset( *buffer, 0, *samples * *channels * sizeof_sample );
2401                         }
2402                 }
2403         }
2404         else
2405         {
2406 exit_get_audio:
2407                 // Get silence and don't touch the context
2408                 mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
2409         }
2410         
2411         // Regardless of speed (other than paused), we expect to get the next frame
2412         if ( !paused )
2413                 self->audio_expected = position + 1;
2414
2415         pthread_mutex_unlock( &self->audio_mutex );
2416
2417         return 0;
2418 }
2419
2420 /** Initialize the audio codec context.
2421 */
2422
2423 static int audio_codec_init( producer_avformat self, int index, mlt_properties properties )
2424 {
2425         // Initialise the codec if necessary
2426         if ( !self->audio_codec[ index ] )
2427         {
2428                 // Get codec context
2429                 AVCodecContext *codec_context = self->audio_format->streams[index]->codec;
2430
2431                 // Find the codec
2432                 AVCodec *codec = avcodec_find_decoder( codec_context->codec_id );
2433
2434                 // If we don't have a codec and we can't initialise it, we can't do much more...
2435                 pthread_mutex_lock( &self->open_mutex );
2436 #if LIBAVCODEC_VERSION_INT >= ((53<<16)+(8<<8)+0)
2437                 if ( codec && avcodec_open2( codec_context, codec, NULL ) >= 0 )
2438 #else
2439                 if ( codec && avcodec_open( codec_context, codec ) >= 0 )
2440 #endif
2441                 {
2442                         // Now store the codec with its destructor
2443                         if ( self->audio_codec[ index ] )
2444                                 avcodec_close( self->audio_codec[ index ] );
2445                         self->audio_codec[ index ] = codec_context;
2446                 }
2447                 else
2448                 {
2449                         // Remember that we can't use self later
2450                         self->audio_index = -1;
2451                 }
2452                 pthread_mutex_unlock( &self->open_mutex );
2453
2454                 // Process properties as AVOptions
2455                 apply_properties( codec_context, properties, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM );
2456                 if ( codec && codec->priv_class && codec_context->priv_data )
2457                         apply_properties( codec_context->priv_data, properties, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM );
2458         }
2459         return self->audio_codec[ index ] && self->audio_index > -1;
2460 }
2461
2462 /** Set up audio handling.
2463 */
2464
2465 static void producer_set_up_audio( producer_avformat self, mlt_frame frame )
2466 {
2467         // Get the producer
2468         mlt_producer producer = self->parent;
2469
2470         // Get the properties
2471         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
2472
2473         // Fetch the audio format context
2474         AVFormatContext *context = self->audio_format;
2475
2476         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
2477
2478         // Get the audio_index
2479         int index = mlt_properties_get_int( properties, "audio_index" );
2480
2481         // Handle all audio tracks
2482         if ( self->audio_index > -1 &&
2483              mlt_properties_get( properties, "audio_index" ) &&
2484              !strcmp( mlt_properties_get( properties, "audio_index" ), "all" ) )
2485                 index = INT_MAX;
2486
2487         // Reopen the file if necessary
2488         if ( !context && self->audio_index > -1 && index > -1 )
2489         {
2490                 producer_open( self, mlt_service_profile( MLT_PRODUCER_SERVICE(producer) ),
2491                         mlt_properties_get( properties, "resource" ), 1 );
2492                 context = self->audio_format;
2493         }
2494
2495         // Exception handling for audio_index
2496         if ( context && index >= (int) context->nb_streams && index < INT_MAX )
2497         {
2498                 for ( index = context->nb_streams - 1;
2499                           index >= 0 && context->streams[ index ]->codec->codec_type != CODEC_TYPE_AUDIO;
2500                           index-- );
2501                 mlt_properties_set_int( properties, "audio_index", index );
2502         }
2503         if ( context && index > -1 && index < INT_MAX &&
2504                  context->streams[ index ]->codec->codec_type != CODEC_TYPE_AUDIO )
2505         {
2506                 index = self->audio_index;
2507                 mlt_properties_set_int( properties, "audio_index", index );
2508         }
2509         if ( context && index > -1 && index < INT_MAX &&
2510                  pick_audio_format( context->streams[ index ]->codec->sample_fmt ) == mlt_audio_none )
2511         {
2512                 index = -1;
2513         }
2514
2515         // Update the audio properties if the index changed
2516         if ( context && index > -1 && index != self->audio_index )
2517         {
2518                 pthread_mutex_lock( &self->open_mutex );
2519                 if ( self->audio_codec[ self->audio_index ] )
2520                         avcodec_close( self->audio_codec[ self->audio_index ] );
2521                 self->audio_codec[ self->audio_index ] = NULL;
2522                 pthread_mutex_unlock( &self->open_mutex );
2523         }
2524         if ( self->audio_index != -1 )
2525                 self->audio_index = index;
2526         else
2527                 index = -1;
2528
2529         // Get the codec(s)
2530         if ( context && index == INT_MAX )
2531         {
2532                 mlt_properties_set_int( frame_properties, "audio_frequency", self->max_frequency );
2533                 mlt_properties_set_int( frame_properties, "audio_channels", self->total_channels );
2534                 for ( index = 0; index < context->nb_streams; index++ )
2535                 {
2536                         if ( context->streams[ index ]->codec->codec_type == CODEC_TYPE_AUDIO )
2537                                 audio_codec_init( self, index, properties );
2538                 }
2539         }
2540         else if ( context && index > -1 && audio_codec_init( self, index, properties ) )
2541         {
2542                 // Set the frame properties
2543                 if ( index < MAX_AUDIO_STREAMS )
2544                 {
2545                         mlt_properties_set_int( frame_properties, "audio_frequency", self->audio_codec[ index ]->sample_rate );
2546                         mlt_properties_set_int( frame_properties, "audio_channels", self->audio_codec[ index ]->channels );
2547                 }
2548         }
2549         if ( context && index > -1 )
2550         {
2551                 // Add our audio operation
2552                 mlt_frame_push_audio( frame, self );
2553                 mlt_frame_push_audio( frame, producer_get_audio );
2554         }
2555 }
2556
2557 /** Our get frame implementation.
2558 */
2559
2560 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
2561 {
2562         // Access the private data
2563         mlt_service service = MLT_PRODUCER_SERVICE( producer );
2564         mlt_cache_item cache_item = mlt_service_cache_get( service, "producer_avformat" );
2565         producer_avformat self = mlt_cache_item_data( cache_item, NULL );
2566
2567         // If cache miss
2568         if ( !self )
2569         {
2570                 self = calloc( 1, sizeof( struct producer_avformat_s ) );
2571                 producer->child = self;
2572                 self->parent = producer;
2573                 mlt_service_cache_put( service, "producer_avformat", self, 0, (mlt_destructor) producer_avformat_close );
2574                 cache_item = mlt_service_cache_get( service, "producer_avformat" );
2575         }
2576
2577         // Create an empty frame
2578         *frame = mlt_frame_init( service);
2579         
2580         if ( *frame )
2581         {
2582                 mlt_properties_set_data( MLT_FRAME_PROPERTIES(*frame), "avformat_cache", cache_item, 0, (mlt_destructor) mlt_cache_item_close, NULL );
2583         }
2584         else
2585         {
2586                 mlt_cache_item_close( cache_item );
2587                 return 1;
2588         }
2589
2590         // Update timecode on the frame we're creating
2591         mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
2592
2593         // Set up the video
2594         producer_set_up_video( self, *frame );
2595
2596         // Set up the audio
2597         producer_set_up_audio( self, *frame );
2598
2599         // Set the position of this producer
2600         mlt_position position = self->seekable ? mlt_producer_frame( producer ) : self->nonseek_position++;
2601         mlt_properties_set_position( MLT_FRAME_PROPERTIES( *frame ), "original_position", position );
2602
2603         // Calculate the next timecode
2604         mlt_producer_prepare_next( producer );
2605
2606         return 0;
2607 }
2608
2609 static void producer_avformat_close( producer_avformat self )
2610 {
2611         mlt_log_debug( NULL, "producer_avformat_close\n" );
2612
2613         // Cleanup av contexts
2614         av_free_packet( &self->pkt );
2615         av_free( self->video_frame );
2616         av_free( self->audio_frame );
2617         pthread_mutex_lock( &self->open_mutex );
2618         int i;
2619         for ( i = 0; i < MAX_AUDIO_STREAMS; i++ )
2620         {
2621                 mlt_pool_release( self->audio_buffer[i] );
2622                 av_free( self->decode_buffer[i] );
2623                 if ( self->audio_codec[i] )
2624                         avcodec_close( self->audio_codec[i] );
2625                 self->audio_codec[i] = NULL;
2626         }
2627         if ( self->video_codec )
2628                 avcodec_close( self->video_codec );
2629         self->video_codec = NULL;
2630         // Close the file
2631 #if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0)
2632         if ( self->dummy_context )
2633                 avformat_close_input( &self->dummy_context );
2634         if ( self->seekable && self->audio_format )
2635                 avformat_close_input( &self->audio_format );
2636         if ( self->video_format )
2637                 avformat_close_input( &self->video_format );
2638 #else
2639         if ( self->dummy_context )
2640                 av_close_input_file( self->dummy_context );
2641         if ( self->seekable && self->audio_format )
2642                 av_close_input_file( self->audio_format );
2643         if ( self->video_format )
2644                 av_close_input_file( self->video_format );
2645 #endif
2646         pthread_mutex_unlock( &self->open_mutex );
2647 #ifdef VDPAU
2648         vdpau_producer_close( self );
2649 #endif
2650         if ( self->image_cache )
2651                 mlt_cache_close( self->image_cache );
2652
2653         // Cleanup the mutexes
2654         if ( self->is_mutex_init )
2655         {
2656                 pthread_mutex_destroy( &self->audio_mutex );
2657                 pthread_mutex_destroy( &self->video_mutex );
2658                 pthread_mutex_destroy( &self->packets_mutex );
2659                 pthread_mutex_destroy( &self->open_mutex );
2660         }
2661
2662         // Cleanup the packet queues
2663         AVPacket *pkt;
2664         if ( self->apackets )
2665         {
2666                 while ( ( pkt = mlt_deque_pop_back( self->apackets ) ) )
2667                 {
2668                         av_free_packet( pkt );
2669                         free( pkt );
2670                 }
2671                 mlt_deque_close( self->apackets );
2672                 self->apackets = NULL;
2673         }
2674         if ( self->vpackets )
2675         {
2676                 while ( ( pkt = mlt_deque_pop_back( self->vpackets ) ) )
2677                 {
2678                         av_free_packet( pkt );
2679                         free( pkt );
2680                 }
2681                 mlt_deque_close( self->vpackets );
2682                 self->vpackets = NULL;
2683         }
2684
2685         free( self );
2686 }
2687
2688 static void producer_close( mlt_producer parent )
2689 {
2690         // Remove this instance from the cache
2691         mlt_service_cache_purge( MLT_PRODUCER_SERVICE(parent) );
2692
2693         // Close the parent
2694         parent->close = NULL;
2695         mlt_producer_close( parent );
2696
2697         // Free the memory
2698         free( parent );
2699 }