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