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