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