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