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