]> git.sesse.net Git - mlt/blob - src/modules/avformat/producer_avformat.c
4dd162fada3258535edb1a539749b847ca75da0e
[mlt] / src / modules / avformat / producer_avformat.c
1 /*
2  * producer_avformat.c -- avformat producer
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 // Local header files
22 #include "producer_avformat.h"
23
24 // MLT Header files
25 #include <framework/mlt_frame.h>
26
27 // ffmpeg Header files
28 #include <avformat.h>
29
30 // System header files
31 #include <stdlib.h>
32 #include <string.h>
33 #include <pthread.h>
34 #include <math.h>
35
36 void avformat_lock( );
37 void avformat_unlock( );
38
39 // Forward references.
40 static int producer_open( mlt_producer this, char *file );
41 static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index );
42
43 /** Constructor for libavformat.
44 */
45
46 mlt_producer producer_avformat_init( char *file )
47 {
48         mlt_producer this = NULL;
49
50         // Check that we have a non-NULL argument
51         if ( file != NULL )
52         {
53                 // Construct the producer
54                 this = calloc( 1, sizeof( struct mlt_producer_s ) );
55
56                 // Initialise it
57                 if ( mlt_producer_init( this, NULL ) == 0 )
58                 {
59                         // Get the properties
60                         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
61
62                         // Set the resource property (required for all producers)
63                         mlt_properties_set( properties, "resource", file );
64
65                         // Register our get_frame implementation
66                         this->get_frame = producer_get_frame;
67
68                         // Open the file
69                         if ( producer_open( this, file ) != 0 )
70                         {
71                                 // Clean up
72                                 mlt_producer_close( this );
73                                 this = NULL;
74                         }
75                 }
76         }
77
78         return this;
79 }
80
81 /** Find the default streams.
82 */
83
84 static void find_default_streams( AVFormatContext *context, int *audio_index, int *video_index )
85 {
86         int i;
87
88         // Allow for multiple audio and video streams in the file and select first of each (if available)
89         for( i = 0; i < context->nb_streams; i++ ) 
90         {
91                 // Get the codec context
92                 AVCodecContext *codec_context = context->streams[ i ]->codec;
93
94                 // Determine the type and obtain the first index of each type
95                 switch( codec_context->codec_type ) 
96                 {
97                         case CODEC_TYPE_VIDEO:
98                                 if ( *video_index < 0 )
99                                         *video_index = i;
100                                 break;
101                         case CODEC_TYPE_AUDIO:
102                                 if ( *audio_index < 0 )
103                                         *audio_index = i;
104                                 break;
105                         default:
106                                 break;
107                 }
108         }
109 }
110
111 /** Producer file destructor.
112 */
113
114 static void producer_file_close( void *context )
115 {
116         if ( context != NULL )
117         {
118                 // Lock the mutex now
119                 avformat_lock( );
120
121                 // Close the file
122                 av_close_input_file( context );
123
124                 // Unlock the mutex now
125                 avformat_unlock( );
126         }
127 }
128
129 /** Producer file destructor.
130 */
131
132 static void producer_codec_close( void *codec )
133 {
134         if ( codec != NULL )
135         {
136                 // Lock the mutex now
137                 avformat_lock( );
138
139                 // Close the file
140                 avcodec_close( codec );
141
142                 // Unlock the mutex now
143                 avformat_unlock( );
144         }
145 }
146
147 /** Open the file.
148 */
149
150 static int producer_open( mlt_producer this, char *file )
151 {
152         // Return an error code (0 == no error)
153         int error = 0;
154
155         // Context for avformat
156         AVFormatContext *context = NULL;
157
158         // Get the properties
159         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
160
161         // We will treat everything with the producer fps
162         double fps = mlt_properties_get_double( properties, "fps" );
163
164         // Lock the mutex now
165         avformat_lock( );
166         
167         // If "MRL", then create AVInputFormat
168         AVInputFormat *format = NULL;
169         AVFormatParameters *params = NULL;
170         char *standard = NULL;
171         char *mrl = strchr( file, ':' );
172
173         // AV option (0 = both, 1 = video, 2 = audio)
174         int av = 0;
175         
176         // Setting lowest log level
177         av_log_set_level( -1 );
178
179         // Only if there is not a protocol specification that avformat can handle
180         if ( mrl && !url_exist( file ) )
181         {
182                 // 'file' becomes format abbreviation
183                 mrl[0] = 0;
184         
185                 // Lookup the format
186                 format = av_find_input_format( file );
187                 
188                 // Eat the format designator
189                 file = ++mrl;
190                 
191                 if ( format )
192                 {
193                         // Allocate params
194                         params = calloc( sizeof( AVFormatParameters ), 1 );
195                         
196                         // These are required by video4linux (defaults)
197                         params->width = 640;
198                         params->height = 480;
199                         params->time_base= (AVRational){1,25};
200                         params->device = file;
201                         params->channels = 2;
202                         params->sample_rate = 48000;
203                 }
204                 
205                 // Parse out params
206                 mrl = strchr( file, '?' );
207                 while ( mrl )
208                 {
209                         mrl[0] = 0;
210                         char *name = strdup( ++mrl );
211                         char *value = strchr( name, ':' );
212                         if ( value )
213                         {
214                                 value[0] = 0;
215                                 value++;
216                                 char *t = strchr( value, '&' );
217                                 if ( t )
218                                         t[0] = 0;
219                                 if ( !strcmp( name, "frame_rate" ) )
220                                         params->time_base.den = atoi( value );
221                                 else if ( !strcmp( name, "frame_rate_base" ) )
222                                         params->time_base.num = atoi( value );
223                                 else if ( !strcmp( name, "sample_rate" ) )
224                                         params->sample_rate = atoi( value );
225                                 else if ( !strcmp( name, "channels" ) )
226                                         params->channels = atoi( value );
227                                 else if ( !strcmp( name, "width" ) )
228                                         params->width = atoi( value );
229                                 else if ( !strcmp( name, "height" ) )
230                                         params->height = atoi( value );
231                                 else if ( !strcmp( name, "standard" ) )
232                                 {
233                                         standard = strdup( value );
234                                         params->standard = standard;
235                                 }
236                                 else if ( !strcmp( name, "av" ) )
237                                         av = atoi( value );
238                         }
239                         free( name );
240                         mrl = strchr( mrl, '&' );
241                 }
242         }
243
244         // Now attempt to open the file
245         error = av_open_input_file( &context, file, format, 0, params );
246         error = error < 0;
247         
248         // Cleanup AVFormatParameters
249         free( standard );
250         free( params );
251
252         // If successful, then try to get additional info
253         if ( error == 0 )
254         {
255                 // Get the stream info
256                 error = av_find_stream_info( context ) < 0;
257
258                 // Continue if no error
259                 if ( error == 0 )
260                 {
261                         // We will default to the first audio and video streams found
262                         int audio_index = -1;
263                         int video_index = -1;
264                         int av_bypass = 0;
265
266                         // Now set properties where we can (use default unknowns if required)
267                         if ( context->duration != AV_NOPTS_VALUE ) 
268                         {
269                                 // This isn't going to be accurate for all formats
270                                 mlt_position frames = ( mlt_position )( ( ( double )context->duration / ( double )AV_TIME_BASE ) * fps );
271                                 mlt_properties_set_position( properties, "out", frames - 2 );
272                                 mlt_properties_set_position( properties, "length", frames - 1 );
273                         }
274
275                         // Find default audio and video streams
276                         find_default_streams( context, &audio_index, &video_index );
277
278             if ( context->start_time != AV_NOPTS_VALUE )
279                 mlt_properties_set_double( properties, "_start_time", context->start_time );
280                         
281                         // Check if we're seekable (something funny about mpeg here :-/)
282                         if ( strcmp( file, "pipe:" ) && strncmp( file, "http://", 6 ) )
283                                 mlt_properties_set_int( properties, "seekable", av_seek_frame( context, -1, mlt_properties_get_double( properties, "_start_time" ), AVSEEK_FLAG_BACKWARD ) >= 0 );
284                         else
285                                 av_bypass = 1;
286
287                         // Store selected audio and video indexes on properties
288                         mlt_properties_set_int( properties, "audio_index", audio_index );
289                         mlt_properties_set_int( properties, "video_index", video_index );
290
291                         // Fetch the width, height and aspect ratio
292                         if ( video_index != -1 )
293                         {
294                                 AVCodecContext *codec_context = context->streams[ video_index ]->codec;
295                                 mlt_properties_set_int( properties, "width", codec_context->width );
296                                 mlt_properties_set_int( properties, "height", codec_context->height );
297                                 mlt_properties_set_double( properties, "aspect_ratio", av_q2d( codec_context->sample_aspect_ratio ) );
298                         }
299                         
300                         // We're going to cheat here - for a/v files, we will have two contexts (reasoning will be clear later)
301                         if ( av == 0 && !av_bypass && audio_index != -1 && video_index != -1 )
302                         {
303                                 // We'll use the open one as our video_context
304                                 mlt_properties_set_data( properties, "video_context", context, 0, producer_file_close, NULL );
305
306                                 // And open again for our audio context
307                                 av_open_input_file( &context, file, NULL, 0, NULL );
308                                 av_find_stream_info( context );
309
310                                 // Audio context
311                                 mlt_properties_set_data( properties, "audio_context", context, 0, producer_file_close, NULL );
312                         }
313                         else if ( av != 2 && video_index != -1 )
314                         {
315                                 // We only have a video context
316                                 mlt_properties_set_data( properties, "video_context", context, 0, producer_file_close, NULL );
317                         }
318                         else if ( audio_index != -1 )
319                         {
320                                 // We only have an audio context
321                                 mlt_properties_set_data( properties, "audio_context", context, 0, producer_file_close, NULL );
322                         }
323                         else
324                         {
325                                 // Something has gone wrong
326                                 error = -1;
327                         }
328
329                         mlt_properties_set_int( properties, "av_bypass", av_bypass );
330                 }
331         }
332
333         // Unlock the mutex now
334         avformat_unlock( );
335
336         return error;
337 }
338
339 /** Convert a frame position to a time code.
340 */
341
342 static double producer_time_of_frame( mlt_producer this, mlt_position position )
343 {
344         // Get the properties
345         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
346
347         // Obtain the fps
348         double fps = mlt_properties_get_double( properties, "fps" );
349
350         // Do the calc
351         return ( double )position / fps;
352 }
353
354 static inline void convert_image( AVFrame *frame, uint8_t *buffer, int pix_fmt, mlt_image_format format, int width, int height )
355 {
356         if ( format == mlt_image_yuv420p )
357         {
358                 AVPicture pict;
359                 pict.data[0] = buffer;
360                 pict.data[1] = buffer + width * height;
361                 pict.data[2] = buffer + ( 3 * width * height ) / 2;
362                 pict.linesize[0] = width;
363                 pict.linesize[1] = width >> 1;
364                 pict.linesize[2] = width >> 1;
365                 img_convert( &pict, PIX_FMT_YUV420P, (AVPicture *)frame, pix_fmt, width, height );
366         }
367         else if ( format == mlt_image_rgb24 )
368         {
369                 AVPicture output;
370                 avpicture_fill( &output, buffer, PIX_FMT_RGB24, width, height );
371                 img_convert( &output, PIX_FMT_RGB24, (AVPicture *)frame, pix_fmt, width, height );
372         }
373         else
374         {
375                 AVPicture output;
376                 avpicture_fill( &output, buffer, PIX_FMT_YUV422, width, height );
377                 img_convert( &output, PIX_FMT_YUV422, (AVPicture *)frame, pix_fmt, width, height );
378         }
379 }
380
381 /** Get an image from a frame.
382 */
383
384 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
385 {
386         // Get the properties from the frame
387         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
388
389         // Obtain the frame number of this frame
390         mlt_position position = mlt_properties_get_position( frame_properties, "avformat_position" );
391
392         // Get the producer 
393         mlt_producer this = mlt_properties_get_data( frame_properties, "avformat_producer", NULL );
394
395         // Get the producer properties
396         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
397
398         // Fetch the video_context
399         AVFormatContext *context = mlt_properties_get_data( properties, "video_context", NULL );
400
401         // Get the video_index
402         int index = mlt_properties_get_int( properties, "video_index" );
403
404         // Obtain the expected frame numer
405         mlt_position expected = mlt_properties_get_position( properties, "_video_expected" );
406
407         // Calculate the real time code
408         double real_timecode = producer_time_of_frame( this, position );
409
410         // Get the video stream
411         AVStream *stream = context->streams[ index ];
412
413         // Get codec context
414         AVCodecContext *codec_context = stream->codec;
415
416         // Packet
417         AVPacket pkt;
418
419         // Get the conversion frame
420         AVFrame *av_frame = mlt_properties_get_data( properties, "av_frame", NULL );
421
422         // Special case pause handling flag
423         int paused = 0;
424
425         // Special case ffwd handling
426         int ignore = 0;
427
428         // Current time calcs
429         double current_time = mlt_properties_get_double( properties, "_current_time" );
430
431         // We may want to use the source fps if available
432         double source_fps = mlt_properties_get_double( properties, "source_fps" );
433
434         // Get the seekable status
435         int seekable = mlt_properties_get_int( properties, "seekable" );
436
437         // Generate the size in bytes
438         int size = 0; 
439
440         // Hopefully provide better support for streams...
441         int av_bypass = mlt_properties_get_int( properties, "av_bypass" );
442
443         // Set the result arguments that we know here (only *buffer is now required)
444         *width = codec_context->width;
445         *height = codec_context->height;
446
447         switch ( *format )
448         {
449                 case mlt_image_yuv420p:
450                         size = *width * 3 * ( *height + 1 ) / 2;
451                         break;
452                 case mlt_image_rgb24:
453                         size = *width * ( *height + 1 ) * 3;
454                         break;
455                 default:
456                         *format = mlt_image_yuv422;
457                         size = *width * ( *height + 1 ) * 2;
458                         break;
459         }
460
461         // Set this on the frame properties
462         mlt_properties_set_int( frame_properties, "width", *width );
463         mlt_properties_set_int( frame_properties, "height", *height );
464
465         // Construct the output image
466         *buffer = mlt_pool_alloc( size );
467
468         // Seek if necessary
469         if ( position != expected )
470         {
471                 if ( position + 1 == expected )
472                 {
473                         // We're paused - use last image
474                         paused = 1;
475                 }
476                 else if ( !seekable && position > expected && ( position - expected ) < 250 )
477                 {
478                         // Fast forward - seeking is inefficient for small distances - just ignore following frames
479                         ignore = position - expected;
480                 }
481                 else if ( seekable && ( position < expected || position - expected >= 12 ) )
482                 {
483                         // Set to the real timecode
484                         av_seek_frame( context, -1, mlt_properties_get_double( properties, "_start_time" ) + real_timecode * 1000000.0, AVSEEK_FLAG_BACKWARD );
485         
486                         // Remove the cached info relating to the previous position
487                         mlt_properties_set_double( properties, "_current_time", real_timecode );
488
489                         mlt_properties_set_data( properties, "av_frame", NULL, 0, NULL, NULL );
490                         av_frame = NULL;
491                 }
492         }
493         
494         // Duplicate the last image if necessary
495         if ( av_frame != NULL && ( paused || mlt_properties_get_double( properties, "_current_time" ) >= real_timecode ) &&
496                  av_bypass == 0 )
497         {
498                 // Duplicate it
499                 convert_image( av_frame, *buffer, codec_context->pix_fmt, *format, *width, *height );
500
501                 // Set this on the frame properties
502                 mlt_properties_set_data( frame_properties, "image", *buffer, size, ( mlt_destructor )mlt_pool_release, NULL );
503         }
504         else
505         {
506                 int ret = 0;
507                 int got_picture = 0;
508                 int must_decode = 1;
509
510                 // Temporary hack to improve intra frame only
511                 if ( !strcmp( codec_context->codec->name, "mjpeg" ) )
512                         must_decode = 0;
513
514                 memset( &pkt, 0, sizeof( pkt ) );
515
516                 // Construct an AVFrame for YUV422 conversion
517                 if ( av_frame == NULL )
518                 {
519                         av_frame = calloc( 1, sizeof( AVFrame ) );
520                         mlt_properties_set_data( properties, "av_frame", av_frame, 0, free, NULL );
521                 }
522
523                 while( ret >= 0 && !got_picture )
524                 {
525                         // Read a packet
526                         ret = av_read_frame( context, &pkt );
527
528                         // We only deal with video from the selected video_index
529                         if ( ret >= 0 && pkt.stream_index == index && pkt.size > 0 )
530                         {
531                                 // Determine time code of the packet
532                                 if ( pkt.dts != AV_NOPTS_VALUE )
533                                         current_time = av_q2d( stream->time_base ) * pkt.dts;
534                                 else
535                                         current_time = real_timecode;
536
537                                 // Decode the image
538                                 if ( must_decode || current_time >= real_timecode )
539                                         ret = avcodec_decode_video( codec_context, av_frame, &got_picture, pkt.data, pkt.size );
540
541                                 if ( got_picture )
542                                 {
543                                         // Handle ignore
544                                         if ( ( int )( current_time * 100 ) < ( int )( real_timecode * 100 ) - 7 )
545                                         {
546                                                 ignore = 0;
547                                                 got_picture = 0;
548                                         }
549                                         else if ( current_time >= real_timecode )
550                                         {
551                                                 ignore = 0;
552                                         }
553                                         else if ( ignore -- )
554                                         {
555                                                 got_picture = 0;
556                                         }
557                                 }
558                         }
559
560                         // We're finished with this packet regardless
561                         av_free_packet( &pkt );
562                 }
563
564                 // Now handle the picture if we have one
565                 if ( got_picture )
566                 {
567                         mlt_properties_set_int( frame_properties, "progressive", !av_frame->interlaced_frame );
568                         mlt_properties_set_int( frame_properties, "top_field_first", av_frame->top_field_first );
569
570                         convert_image( av_frame, *buffer, codec_context->pix_fmt, *format, *width, *height );
571
572                         mlt_properties_set_data( frame_properties, "image", *buffer, size, (mlt_destructor)mlt_pool_release, NULL );
573
574                         if ( current_time == 0 && source_fps != 0 )
575                         {
576                                 double fps = mlt_properties_get_double( properties, "fps" );
577                                 current_time = ceil( source_fps * ( double )position / fps ) * ( 1 / source_fps );
578                                 mlt_properties_set_double( properties, "_current_time", current_time );
579                         }
580                         else
581                         {
582                                 mlt_properties_set_double( properties, "_current_time", current_time );
583                         }
584                 }
585         }
586         
587         // Set the field order property for this frame
588         mlt_properties_set_int( frame_properties, "top_field_first", 
589                 mlt_properties_get_int( properties, "top_field_first" ) );
590
591         // Regardless of speed, we expect to get the next frame (cos we ain't too bright)
592         mlt_properties_set_position( properties, "_video_expected", position + 1 );
593
594         return 0;
595 }
596
597 /** Set up video handling.
598 */
599
600 static void producer_set_up_video( mlt_producer this, mlt_frame frame )
601 {
602         // Get the properties
603         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
604
605         // Fetch the video_context
606         AVFormatContext *context = mlt_properties_get_data( properties, "video_context", NULL );
607
608         // Get the video_index
609         int index = mlt_properties_get_int( properties, "video_index" );
610
611         // Get the frame properties
612         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
613
614         if ( context != NULL && index != -1 )
615         {
616                 // Get the video stream
617                 AVStream *stream = context->streams[ index ];
618
619                 // Get codec context
620                 AVCodecContext *codec_context = stream->codec;
621
622                 // Get the codec
623                 AVCodec *codec = mlt_properties_get_data( properties, "video_codec", NULL );
624
625                 // Initialise the codec if necessary
626                 if ( codec == NULL )
627                 {
628                         // Find the codec
629                         codec = avcodec_find_decoder( codec_context->codec_id );
630
631                         // If we don't have a codec and we can't initialise it, we can't do much more...
632                         if ( codec != NULL && avcodec_open( codec_context, codec ) >= 0 )
633                         {
634                                 // Now store the codec with its destructor
635                                 mlt_properties_set_data( properties, "video_codec", codec_context, 0, producer_codec_close, NULL );
636                         }
637                         else
638                         {
639                                 // Remember that we can't use this later
640                                 mlt_properties_set_int( properties, "video_index", -1 );
641                         }
642                 }
643
644                 // No codec, no show...
645                 if ( codec != NULL )
646                 {
647                         double source_fps = 0;
648                         int norm_aspect_ratio = mlt_properties_get_int( properties, "norm_aspect_ratio" );
649                         double force_aspect_ratio = mlt_properties_get_double( properties, "force_aspect_ratio" );
650                         double aspect_ratio;
651
652                         // XXX: We won't know the real aspect ratio until an image is decoded
653                         // but we do need it now (to satisfy filter_resize) - take a guess based
654                         // on pal/ntsc
655                         if ( force_aspect_ratio > 0.0 )
656                         {
657                                 aspect_ratio = force_aspect_ratio;
658                         }
659                         else if ( !norm_aspect_ratio && codec_context->sample_aspect_ratio.num > 0 )
660                         {
661                                 aspect_ratio = av_q2d( codec_context->sample_aspect_ratio );
662                         }
663                         else
664                         {
665                                 int is_pal = mlt_properties_get_double( properties, "fps" ) == 25.0;
666                                 aspect_ratio = is_pal ? 59.0/54.0 : 10.0/11.0;
667                         }
668
669                         // Determine the fps
670                         source_fps = ( double )codec_context->time_base.den / ( codec_context->time_base.num == 0 ? 1 : codec_context->time_base.num );
671
672                         // We'll use fps if it's available
673                         if ( source_fps > 0 && source_fps < 30 )
674                                 mlt_properties_set_double( properties, "source_fps", source_fps );
675                         mlt_properties_set_double( properties, "aspect_ratio", aspect_ratio );
676                         
677                         // Set the width and height
678                         mlt_properties_set_int( frame_properties, "width", codec_context->width );
679                         mlt_properties_set_int( frame_properties, "height", codec_context->height );
680                         mlt_properties_set_double( frame_properties, "aspect_ratio", aspect_ratio );
681
682                         mlt_frame_push_get_image( frame, producer_get_image );
683                         mlt_properties_set_data( frame_properties, "avformat_producer", this, 0, NULL, NULL );
684                 }
685                 else
686                 {
687                         mlt_properties_set_int( frame_properties, "test_image", 1 );
688                 }
689         }
690         else
691         {
692                 mlt_properties_set_int( frame_properties, "test_image", 1 );
693         }
694 }
695
696 /** Get the audio from a frame.
697 */
698
699 static int producer_get_audio( mlt_frame frame, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
700 {
701         // Get the properties from the frame
702         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
703
704         // Obtain the frame number of this frame
705         mlt_position position = mlt_properties_get_position( frame_properties, "avformat_position" );
706
707         // Get the producer 
708         mlt_producer this = mlt_properties_get_data( frame_properties, "avformat_producer", NULL );
709
710         // Get the producer properties
711         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
712
713         // Fetch the audio_context
714         AVFormatContext *context = mlt_properties_get_data( properties, "audio_context", NULL );
715
716         // Get the audio_index
717         int index = mlt_properties_get_int( properties, "audio_index" );
718
719         // Get the seekable status
720         int seekable = mlt_properties_get_int( properties, "seekable" );
721
722         // Obtain the expected frame numer
723         mlt_position expected = mlt_properties_get_position( properties, "_audio_expected" );
724
725         // Obtain the resample context if it exists (not always needed)
726         ReSampleContext *resample = mlt_properties_get_data( properties, "audio_resample", NULL );
727
728         // Obtain the audio buffer
729         int16_t *audio_buffer = mlt_properties_get_data( properties, "audio_buffer", NULL );
730
731         // Get amount of audio used
732         int audio_used =  mlt_properties_get_int( properties, "_audio_used" );
733
734         // Calculate the real time code
735         double real_timecode = producer_time_of_frame( this, position );
736
737         // Get the audio stream
738         AVStream *stream = context->streams[ index ];
739
740         // Get codec context
741         AVCodecContext *codec_context = stream->codec;
742
743         // Packet
744         AVPacket pkt;
745
746         // Number of frames to ignore (for ffwd)
747         int ignore = 0;
748
749         // Flag for paused (silence) 
750         int paused = 0;
751
752         // Check for resample and create if necessary
753         if ( resample == NULL && codec_context->channels <= 2 )
754         {
755                 // Create the resampler
756                 resample = audio_resample_init( *channels, codec_context->channels, *frequency, codec_context->sample_rate );
757
758                 // And store it on properties
759                 mlt_properties_set_data( properties, "audio_resample", resample, 0, ( mlt_destructor )audio_resample_close, NULL );
760         }
761         else if ( resample == NULL )
762         {
763                 *channels = codec_context->channels;
764                 *frequency = codec_context->sample_rate;
765         }
766
767         // Check for audio buffer and create if necessary
768         if ( audio_buffer == NULL )
769         {
770                 // Allocate the audio buffer
771                 audio_buffer = mlt_pool_alloc( AVCODEC_MAX_AUDIO_FRAME_SIZE * sizeof( int16_t ) );
772
773                 // And store it on properties for reuse
774                 mlt_properties_set_data( properties, "audio_buffer", audio_buffer, 0, ( mlt_destructor )mlt_pool_release, NULL );
775         }
776
777         // Seek if necessary
778         if ( position != expected )
779         {
780                 if ( position + 1 == expected )
781                 {
782                         // We're paused - silence required
783                         paused = 1;
784                 }
785                 else if ( !seekable && position > expected && ( position - expected ) < 250 )
786                 {
787                         // Fast forward - seeking is inefficient for small distances - just ignore following frames
788                         ignore = position - expected;
789                 }
790                 else if ( position < expected || position - expected >= 12 )
791                 {
792                         // Set to the real timecode
793                         if ( av_seek_frame( context, -1, mlt_properties_get_double( properties, "_start_time" ) + real_timecode * 1000000.0, AVSEEK_FLAG_BACKWARD ) != 0 )
794                                 paused = 1;
795
796                         // Clear the usage in the audio buffer
797                         audio_used = 0;
798                 }
799         }
800
801         // Get the audio if required
802         if ( !paused )
803         {
804                 int ret = 0;
805                 int got_audio = 0;
806                 int16_t *temp = mlt_pool_alloc( sizeof( int16_t ) * AVCODEC_MAX_AUDIO_FRAME_SIZE );
807
808                 memset( &pkt, 0, sizeof( pkt ) );
809
810                 while( ret >= 0 && !got_audio )
811                 {
812                         // Check if the buffer already contains the samples required
813                         if ( audio_used >= *samples && ignore == 0 )
814                         {
815                                 got_audio = 1;
816                                 break;
817                         }
818
819                         // Read a packet
820                         ret = av_read_frame( context, &pkt );
821
822                 int len = pkt.size;
823                 uint8_t *ptr = pkt.data;
824                         int data_size;
825
826                         // We only deal with audio from the selected audio_index
827                         while ( ptr != NULL && ret >= 0 && pkt.stream_index == index && len > 0 )
828                         {
829                                 // Decode the audio
830                                 ret = avcodec_decode_audio( codec_context, temp, &data_size, ptr, len );
831
832                                 if ( ret < 0 )
833                                 {
834                                         ret = 0;
835                                         break;
836                                 }
837
838                                 len -= ret;
839                                 ptr += ret;
840
841                                 if ( data_size > 0 )
842                                 {
843                                         if ( resample != NULL )
844                                         {
845                                                 audio_used += audio_resample( resample, &audio_buffer[ audio_used * *channels ], temp, data_size / ( codec_context->channels * sizeof( int16_t ) ) );
846                                         }
847                                         else
848                                         {
849                                                 memcpy( &audio_buffer[ audio_used * *channels ], temp, data_size );
850                                                 audio_used += data_size / ( codec_context->channels * sizeof( int16_t ) );
851                                         }
852
853                                         // Handle ignore
854                                         while ( ignore && audio_used > *samples )
855                                         {
856                                                 ignore --;
857                                                 audio_used -= *samples;
858                                                 memmove( audio_buffer, &audio_buffer[ *samples * *channels ], audio_used * sizeof( int16_t ) );
859                                         }
860                                 }
861
862                                 // If we're behind, ignore this packet
863                                 float current_pts = av_q2d( stream->time_base ) * pkt.pts;
864                                 if ( seekable && ( !ignore && current_pts <= ( real_timecode - 0.02 ) ) )
865                                         ignore = 1;
866                         }
867
868                         // We're finished with this packet regardless
869                         av_free_packet( &pkt );
870                 }
871
872                 *buffer = mlt_pool_alloc( *samples * *channels * sizeof( int16_t ) );
873                 mlt_properties_set_data( frame_properties, "audio", *buffer, 0, ( mlt_destructor )mlt_pool_release, NULL );
874
875                 // Now handle the audio if we have enough
876                 if ( audio_used >= *samples )
877                 {
878                         memcpy( *buffer, audio_buffer, *samples * *channels * sizeof( int16_t ) );
879                         audio_used -= *samples;
880                         memmove( audio_buffer, &audio_buffer[ *samples * *channels ], audio_used * *channels * sizeof( int16_t ) );
881                 }
882                 else
883                 {
884                         memset( *buffer, 0, *samples * *channels * sizeof( int16_t ) );
885                 }
886                 
887                 // Store the number of audio samples still available
888                 mlt_properties_set_int( properties, "_audio_used", audio_used );
889
890                 // Release the temporary audio
891                 mlt_pool_release( temp );
892         }
893         else
894         {
895                 // Get silence and don't touch the context
896                 mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
897         }
898
899         // Regardless of speed (other than paused), we expect to get the next frame
900         if ( !paused )
901                 mlt_properties_set_position( properties, "_audio_expected", position + 1 );
902
903         return 0;
904 }
905
906 /** Set up audio handling.
907 */
908
909 static void producer_set_up_audio( mlt_producer this, mlt_frame frame )
910 {
911         // Get the properties
912         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
913
914         // Fetch the audio_context
915         AVFormatContext *context = mlt_properties_get_data( properties, "audio_context", NULL );
916
917         // Get the audio_index
918         int index = mlt_properties_get_int( properties, "audio_index" );
919
920         // Deal with audio context
921         if ( context != NULL && index != -1 )
922         {
923                 // Get the frame properties
924                 mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
925
926                 // Get the audio stream
927                 AVStream *stream = context->streams[ index ];
928
929                 // Get codec context
930                 AVCodecContext *codec_context = stream->codec;
931
932                 // Get the codec
933                 AVCodec *codec = mlt_properties_get_data( properties, "audio_codec", NULL );
934
935                 // Initialise the codec if necessary
936                 if ( codec == NULL )
937                 {
938                         // Find the codec
939                         codec = avcodec_find_decoder( codec_context->codec_id );
940
941                         // If we don't have a codec and we can't initialise it, we can't do much more...
942                         if ( codec != NULL && avcodec_open( codec_context, codec ) >= 0 )
943                         {
944                                 // Now store the codec with its destructor
945                                 mlt_properties_set_data( properties, "audio_codec", codec_context, 0, producer_codec_close, NULL );
946
947                         }
948                         else
949                         {
950                                 // Remember that we can't use this later
951                                 mlt_properties_set_int( properties, "audio_index", -1 );
952                         }
953                 }
954
955                 // No codec, no show...
956                 if ( codec != NULL )
957                 {
958                         mlt_frame_push_audio( frame, producer_get_audio );
959                         mlt_properties_set_data( frame_properties, "avformat_producer", this, 0, NULL, NULL );
960                         mlt_properties_set_int( frame_properties, "frequency", codec_context->sample_rate );
961                         mlt_properties_set_int( frame_properties, "channels", codec_context->channels );
962                 }
963         }
964 }
965
966 /** Our get frame implementation.
967 */
968
969 static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index )
970 {
971         // Create an empty frame
972         *frame = mlt_frame_init( );
973
974         // Update timecode on the frame we're creating
975         mlt_frame_set_position( *frame, mlt_producer_position( this ) );
976
977         // Set the position of this producer
978         mlt_properties_set_position( MLT_FRAME_PROPERTIES( *frame ), "avformat_position", mlt_producer_frame( this ) );
979
980         // Set up the video
981         producer_set_up_video( this, *frame );
982
983         // Set up the audio
984         producer_set_up_audio( this, *frame );
985
986         // Set the aspect_ratio
987         mlt_properties_set_double( MLT_FRAME_PROPERTIES( *frame ), "aspect_ratio", mlt_properties_get_double( MLT_PRODUCER_PROPERTIES( this ), "aspect_ratio" ) );
988
989         // Calculate the next timecode
990         mlt_producer_prepare_next( this );
991
992         return 0;
993 }