Pipe support for audio or video only
[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 *
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 // Only if there is not a protocol specification that avformat can handle
177 if ( mrl && !url_exist( file ) )
178 {
179 // 'file' becomes format abbreviation
180 mrl[0] = 0;
181
182 // Lookup the format
183 format = av_find_input_format( file );
184
185 // Eat the format designator
186 file = ++mrl;
187
188 if ( format )
189 {
190 // Allocate params
191 params = calloc( sizeof( AVFormatParameters ), 1 );
192
193 // These are required by video4linux (defaults)
194 params->width = 640;
195 params->height = 480;
196 params->frame_rate = 25;
197 params->frame_rate_base = 1;
198 params->device = file;
199 params->channels = 2;
200 params->sample_rate = 48000;
201 }
202
203 // Parse out params
204 mrl = strchr( file, '?' );
205 while ( mrl )
206 {
207 mrl[0] = 0;
208 char *name = strdup( ++mrl );
209 char *value = strchr( name, ':' );
210 if ( value )
211 {
212 value[0] = 0;
213 value++;
214 char *t = strchr( value, '&' );
215 if ( t )
216 t[0] = 0;
217 if ( !strcmp( name, "frame_rate" ) )
218 params->frame_rate = atoi( value );
219 else if ( !strcmp( name, "frame_rate_base" ) )
220 params->frame_rate_base = atoi( value );
221 else if ( !strcmp( name, "sample_rate" ) )
222 params->sample_rate = atoi( value );
223 else if ( !strcmp( name, "channels" ) )
224 params->channels = atoi( value );
225 else if ( !strcmp( name, "width" ) )
226 params->width = atoi( value );
227 else if ( !strcmp( name, "height" ) )
228 params->height = atoi( value );
229 else if ( !strcmp( name, "standard" ) )
230 {
231 standard = strdup( value );
232 params->standard = standard;
233 }
234 else if ( !strcmp( name, "av" ) )
235 av = atoi( value );
236 }
237 free( name );
238 mrl = strchr( mrl, '&' );
239 }
240 }
241
242 // Now attempt to open the file
243 error = av_open_input_file( &context, file, format, 0, params );
244 error = error < 0;
245
246 // Cleanup AVFormatParameters
247 free( standard );
248 free( params );
249
250 // If successful, then try to get additional info
251 if ( error == 0 )
252 {
253 // Get the stream info
254 error = av_find_stream_info( context ) < 0;
255
256 // Continue if no error
257 if ( error == 0 )
258 {
259 // We will default to the first audio and video streams found
260 int audio_index = -1;
261 int video_index = -1;
262
263 // Now set properties where we can (use default unknowns if required)
264 if ( context->duration != AV_NOPTS_VALUE )
265 {
266 // This isn't going to be accurate for all formats
267 mlt_position frames = ( mlt_position )( ( ( double )context->duration / ( double )AV_TIME_BASE ) * fps );
268 mlt_properties_set_position( properties, "out", frames - 2 );
269 mlt_properties_set_position( properties, "length", frames - 1 );
270 }
271
272 // Find default audio and video streams
273 find_default_streams( context, &audio_index, &video_index );
274
275 if ( context->start_time != AV_NOPTS_VALUE )
276 mlt_properties_set_double( properties, "start_time", context->start_time );
277
278 // Check if we're seekable (something funny about mpeg here :-/)
279 if ( strcmp( file, "pipe:" ) )
280 mlt_properties_set_int( properties, "seekable", av_seek_frame( context, -1, mlt_properties_get_double( properties, "start_time" ) ) >= 0 );
281
282 // Store selected audio and video indexes on properties
283 mlt_properties_set_int( properties, "audio_index", audio_index );
284 mlt_properties_set_int( properties, "video_index", video_index );
285
286 // We're going to cheat here - for a/v files, we will have two contexts (reasoning will be clear later)
287 if ( av == 0 && strcmp( file, "pipe:" ) && audio_index != -1 && video_index != -1 )
288 {
289 // We'll use the open one as our video_context
290 mlt_properties_set_data( properties, "video_context", context, 0, producer_file_close, NULL );
291
292 // And open again for our audio context
293 av_open_input_file( &context, file, NULL, 0, NULL );
294 av_find_stream_info( context );
295
296 // Audio context
297 mlt_properties_set_data( properties, "audio_context", context, 0, producer_file_close, NULL );
298 }
299 else if ( av != 2 && video_index != -1 )
300 {
301 // We only have a video context
302 mlt_properties_set_data( properties, "video_context", context, 0, producer_file_close, NULL );
303 }
304 else if ( audio_index != -1 )
305 {
306 // We only have an audio context
307 mlt_properties_set_data( properties, "audio_context", context, 0, producer_file_close, NULL );
308 }
309 else
310 {
311 // Something has gone wrong
312 error = -1;
313 }
314 }
315 }
316
317 // Unlock the mutex now
318 avformat_unlock( );
319
320 return error;
321 }
322
323 /** Convert a frame position to a time code.
324 */
325
326 static double producer_time_of_frame( mlt_producer this, mlt_position position )
327 {
328 // Get the properties
329 mlt_properties properties = mlt_producer_properties( this );
330
331 // Obtain the fps
332 double fps = mlt_properties_get_double( properties, "fps" );
333
334 // Do the calc
335 return ( double )position / fps;
336 }
337
338 /** Get an image from a frame.
339 */
340
341 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
342 {
343 // Get the properties from the frame
344 mlt_properties frame_properties = mlt_frame_properties( frame );
345
346 // Obtain the frame number of this frame
347 mlt_position position = mlt_properties_get_position( frame_properties, "avformat_position" );
348
349 // Get the producer
350 mlt_producer this = mlt_properties_get_data( frame_properties, "avformat_producer", NULL );
351
352 // Get the producer properties
353 mlt_properties properties = mlt_producer_properties( this );
354
355 // Fetch the video_context
356 AVFormatContext *context = mlt_properties_get_data( properties, "video_context", NULL );
357
358 // Get the video_index
359 int index = mlt_properties_get_int( properties, "video_index" );
360
361 // Obtain the expected frame numer
362 mlt_position expected = mlt_properties_get_position( properties, "video_expected" );
363
364 // Calculate the real time code
365 double real_timecode = producer_time_of_frame( this, position );
366
367 // Get the video stream
368 AVStream *stream = context->streams[ index ];
369
370 // Get codec context
371 AVCodecContext *codec_context = &stream->codec;
372
373 // Packet
374 AVPacket pkt;
375
376 // Get the conversion frame
377 AVPicture *output = mlt_properties_get_data( properties, "video_output_frame", NULL );
378
379 // Special case pause handling flag
380 int paused = 0;
381
382 // Special case ffwd handling
383 int ignore = 0;
384
385 // Current time calcs
386 double current_time = mlt_properties_get_double( properties, "current_time" );
387
388 // We may want to use the source fps if available
389 double source_fps = mlt_properties_get_double( properties, "source_fps" );
390
391 // Get the seekable status
392 int seekable = mlt_properties_get_int( properties, "seekable" );
393
394 // Set the result arguments that we know here (only *buffer is now required)
395 *format = mlt_image_yuv422;
396 *width = codec_context->width;
397 *height = codec_context->height;
398
399 // Set this on the frame properties
400 mlt_properties_set_int( frame_properties, "width", *width );
401 mlt_properties_set_int( frame_properties, "height", *height );
402
403 // Construct an AVFrame for YUV422 conversion
404 if ( output == NULL )
405 {
406 int size = avpicture_get_size( PIX_FMT_YUV422, *width, *height + 1 );
407 uint8_t *buf = mlt_pool_alloc( size );
408 output = mlt_pool_alloc( sizeof( AVPicture ) );
409 avpicture_fill( output, buf, PIX_FMT_YUV422, *width, *height );
410 mlt_properties_set_data( properties, "video_output_frame", output, 0, ( mlt_destructor )mlt_pool_release, NULL );
411 mlt_properties_set_data( properties, "video_output_buffer", buf, 0, ( mlt_destructor )mlt_pool_release, NULL );
412 }
413
414 // Seek if necessary
415 if ( position != expected )
416 {
417 if ( position + 1 == expected )
418 {
419 // We're paused - use last image
420 paused = 1;
421 }
422 else if ( !seekable && position > expected && ( position - expected ) < 250 )
423 {
424 // Fast forward - seeking is inefficient for small distances - just ignore following frames
425 ignore = position - expected;
426 }
427 else if ( position < expected || position - expected >= 12 )
428 {
429 // Set to the real timecode
430 av_seek_frame( context, -1, mlt_properties_get_double( properties, "start_time" ) + real_timecode * 1000000.0 );
431
432 // Remove the cached info relating to the previous position
433 mlt_properties_set_double( properties, "current_time", real_timecode );
434 mlt_properties_set_data( properties, "current_image", NULL, 0, NULL, NULL );
435 }
436 }
437
438 // Duplicate the last image if necessary
439 if ( mlt_properties_get_data( properties, "current_image", NULL ) != NULL &&
440 ( paused || mlt_properties_get_double( properties, "current_time" ) >= real_timecode ) )
441 {
442 // Get current image and size
443 int size = 0;
444 uint8_t *image = mlt_properties_get_data( properties, "current_image", &size );
445
446 // Duplicate it
447 *buffer = mlt_pool_alloc( size );
448 memcpy( *buffer, image, size );
449
450 // Set this on the frame properties
451 mlt_properties_set_data( frame_properties, "image", *buffer, size, ( mlt_destructor )mlt_pool_release, NULL );
452 }
453 else
454 {
455 int ret = 0;
456 int got_picture = 0;
457 AVFrame frame;
458
459 memset( &pkt, 0, sizeof( pkt ) );
460 memset( &frame, 0, sizeof( frame ) );
461
462 while( ret >= 0 && !got_picture )
463 {
464 // Read a packet
465 ret = av_read_frame( context, &pkt );
466
467 // We only deal with video from the selected video_index
468 if ( ret >= 0 && pkt.stream_index == index && pkt.size > 0 )
469 {
470 // Decode the image
471 ret = avcodec_decode_video( codec_context, &frame, &got_picture, pkt.data, pkt.size );
472
473 if ( got_picture )
474 {
475 if ( pkt.pts != AV_NOPTS_VALUE )
476 current_time = ( double )pkt.pts / 1000000.0;
477 else
478 current_time = real_timecode;
479
480 // Handle ignore
481 if ( ( int )( current_time * 100 ) < ( int )( real_timecode * 100 ) - 7 )
482 {
483 ignore = 0;
484 got_picture = 0;
485 }
486 else if ( current_time >= real_timecode )
487 {
488 //current_time = real_timecode;
489 ignore = 0;
490 }
491 else if ( ignore -- )
492 {
493 got_picture = 0;
494 }
495 mlt_properties_set_int( properties, "top_field_first", frame.top_field_first );
496 }
497 }
498
499 // We're finished with this packet regardless
500 av_free_packet( &pkt );
501 }
502
503 // Now handle the picture if we have one
504 if ( got_picture )
505 {
506 // Get current image and size
507 int size = 0;
508 uint8_t *image = mlt_properties_get_data( properties, "current_image", &size );
509
510 if ( image == NULL || size != *width * *height * 2 )
511 {
512 size = *width * ( *height + 1 ) * 2;
513 image = mlt_pool_alloc( size );
514 mlt_properties_set_data( properties, "current_image", image, size, ( mlt_destructor )mlt_pool_release, NULL );
515 }
516
517 *buffer = mlt_pool_alloc( size );
518
519 // EXPERIMENTAL IMAGE NORMALISATIONS
520 if ( codec_context->pix_fmt == PIX_FMT_YUV420P )
521 {
522 register int i, j;
523 register int half = *width >> 1;
524 register uint8_t *Y = ( ( AVPicture * )&frame )->data[ 0 ];
525 register uint8_t *U = ( ( AVPicture * )&frame )->data[ 1 ];
526 register uint8_t *V = ( ( AVPicture * )&frame )->data[ 2 ];
527 register uint8_t *d = *buffer;
528 register uint8_t *y, *u, *v;
529
530 i = *height >> 1;
531 while ( i -- )
532 {
533 y = Y;
534 u = U;
535 v = V;
536 j = half;
537 while ( j -- )
538 {
539 *d ++ = *y ++;
540 *d ++ = *u ++;
541 *d ++ = *y ++;
542 *d ++ = *v ++;
543 }
544
545 Y += ( ( AVPicture * )&frame )->linesize[ 0 ];
546 y = Y;
547 u = U;
548 v = V;
549 j = half;
550 while ( j -- )
551 {
552 *d ++ = *y ++;
553 *d ++ = *u ++;
554 *d ++ = *y ++;
555 *d ++ = *v ++;
556 }
557
558 Y += ( ( AVPicture * )&frame )->linesize[ 0 ];
559 U += ( ( AVPicture * )&frame )->linesize[ 1 ];
560 V += ( ( AVPicture * )&frame )->linesize[ 2 ];
561 }
562 }
563 else
564 {
565 img_convert( output, PIX_FMT_YUV422, (AVPicture *)&frame, codec_context->pix_fmt, *width, *height );
566 memcpy( *buffer, output->data[ 0 ], size );
567 }
568
569 memcpy( image, *buffer, size );
570 mlt_properties_set_data( frame_properties, "image", *buffer, size, ( mlt_destructor )mlt_pool_release, NULL );
571
572 if ( current_time == 0 && source_fps != 0 )
573 {
574 double fps = mlt_properties_get_double( properties, "fps" );
575 current_time = ceil( source_fps * ( double )position / fps ) * ( 1 / source_fps );
576 mlt_properties_set_double( properties, "current_time", current_time );
577 }
578 else
579 {
580 mlt_properties_set_double( properties, "current_time", current_time );
581 }
582 }
583 }
584
585 // Set the field order property for this frame
586 mlt_properties_set_int( frame_properties, "top_field_first",
587 mlt_properties_get_int( properties, "top_field_first" ) );
588
589 // Regardless of speed, we expect to get the next frame (cos we ain't too bright)
590 mlt_properties_set_position( properties, "video_expected", position + 1 );
591
592 return 0;
593 }
594
595 /** Set up video handling.
596 */
597
598 static void producer_set_up_video( mlt_producer this, mlt_frame frame )
599 {
600 // Get the properties
601 mlt_properties properties = mlt_producer_properties( this );
602
603 // Fetch the video_context
604 AVFormatContext *context = mlt_properties_get_data( properties, "video_context", NULL );
605
606 // Get the video_index
607 int index = mlt_properties_get_int( properties, "video_index" );
608
609 // Get the frame properties
610 mlt_properties frame_properties = mlt_frame_properties( frame );
611
612 if ( context != NULL && index != -1 )
613 {
614 // Get the video stream
615 AVStream *stream = context->streams[ index ];
616
617 // Get codec context
618 AVCodecContext *codec_context = &stream->codec;
619
620 // Get the codec
621 AVCodec *codec = mlt_properties_get_data( properties, "video_codec", NULL );
622
623 // Initialise the codec if necessary
624 if ( codec == NULL )
625 {
626 // Find the codec
627 codec = avcodec_find_decoder( codec_context->codec_id );
628
629 // If we don't have a codec and we can't initialise it, we can't do much more...
630 if ( codec != NULL && avcodec_open( codec_context, codec ) >= 0 )
631 {
632 // Now store the codec with its destructor
633 mlt_properties_set_data( properties, "video_codec", codec_context, 0, producer_codec_close, NULL );
634 }
635 else
636 {
637 // Remember that we can't use this later
638 mlt_properties_set_int( properties, "video_index", -1 );
639 }
640 }
641
642 // No codec, no show...
643 if ( codec != NULL )
644 {
645 double source_fps = 0;
646
647 // XXX: We won't know the real aspect ratio until an image is decoded
648 // but we do need it now (to satisfy filter_resize) - take a guess based
649 // on pal/ntsc
650 if ( codec_context->sample_aspect_ratio.num > 0 )
651 {
652 mlt_properties_set_double( properties, "aspect_ratio", av_q2d( codec_context->sample_aspect_ratio ) );
653 }
654 else
655 {
656 int is_pal = mlt_properties_get_double( properties, "fps" ) == 25.0;
657 mlt_properties_set_double( properties, "aspect_ratio", is_pal ? 128.0/117.0 : 72.0/79.0 );
658 }
659
660 //fprintf( stderr, "AVFORMAT: sample aspect %f %dx%d\n", av_q2d( codec_context->sample_aspect_ratio ), codec_context->width, codec_context->height );
661
662 // Determine the fps
663 source_fps = ( double )codec_context->frame_rate / ( codec_context->frame_rate_base == 0 ? 1 : codec_context->frame_rate_base );
664
665 // We'll use fps if it's available
666 if ( source_fps > 0 && source_fps < 30 )
667 mlt_properties_set_double( properties, "source_fps", source_fps );
668
669 // Set the width and height
670 mlt_properties_set_int( frame_properties, "width", codec_context->width );
671 mlt_properties_set_int( frame_properties, "height", codec_context->height );
672
673 mlt_frame_push_get_image( frame, producer_get_image );
674 mlt_properties_set_data( frame_properties, "avformat_producer", this, 0, NULL, NULL );
675 }
676 else
677 {
678 mlt_properties_set_int( frame_properties, "test_image", 1 );
679 }
680 }
681 else
682 {
683 mlt_properties_set_int( frame_properties, "test_image", 1 );
684 }
685 }
686
687 /** Get the audio from a frame.
688 */
689
690 static int producer_get_audio( mlt_frame frame, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
691 {
692 // Get the properties from the frame
693 mlt_properties frame_properties = mlt_frame_properties( frame );
694
695 // Obtain the frame number of this frame
696 mlt_position position = mlt_properties_get_position( frame_properties, "avformat_position" );
697
698 // Get the producer
699 mlt_producer this = mlt_properties_get_data( frame_properties, "avformat_producer", NULL );
700
701 // Get the producer properties
702 mlt_properties properties = mlt_producer_properties( this );
703
704 // Fetch the audio_context
705 AVFormatContext *context = mlt_properties_get_data( properties, "audio_context", NULL );
706
707 // Get the audio_index
708 int index = mlt_properties_get_int( properties, "audio_index" );
709
710 // Get the seekable status
711 int seekable = mlt_properties_get_int( properties, "seekable" );
712
713 // Obtain the expected frame numer
714 mlt_position expected = mlt_properties_get_position( properties, "audio_expected" );
715
716 // Obtain the resample context if it exists (not always needed)
717 ReSampleContext *resample = mlt_properties_get_data( properties, "audio_resample", NULL );
718
719 // Obtain the audio buffer
720 int16_t *audio_buffer = mlt_properties_get_data( properties, "audio_buffer", NULL );
721
722 // Get amount of audio used
723 int audio_used = mlt_properties_get_int( properties, "audio_used" );
724
725 // Calculate the real time code
726 double real_timecode = producer_time_of_frame( this, position );
727
728 // Get the audio stream
729 AVStream *stream = context->streams[ index ];
730
731 // Get codec context
732 AVCodecContext *codec_context = &stream->codec;
733
734 // Packet
735 AVPacket pkt;
736
737 // Number of frames to ignore (for ffwd)
738 int ignore = 0;
739
740 // Flag for paused (silence)
741 int paused = 0;
742
743 // Check for resample and create if necessary
744 if ( resample == NULL && codec_context->channels <= 2 )
745 {
746 // Create the resampler
747 resample = audio_resample_init( *channels, codec_context->channels, *frequency, codec_context->sample_rate );
748
749 // And store it on properties
750 mlt_properties_set_data( properties, "audio_resample", resample, 0, ( mlt_destructor )audio_resample_close, NULL );
751 }
752 else if ( resample == NULL )
753 {
754 *channels = codec_context->channels;
755 *frequency = codec_context->sample_rate;
756 }
757
758 // Check for audio buffer and create if necessary
759 if ( audio_buffer == NULL )
760 {
761 // Allocate the audio buffer
762 audio_buffer = mlt_pool_alloc( AVCODEC_MAX_AUDIO_FRAME_SIZE * sizeof( int16_t ) );
763
764 // And store it on properties for reuse
765 mlt_properties_set_data( properties, "audio_buffer", audio_buffer, 0, ( mlt_destructor )mlt_pool_release, NULL );
766 }
767
768 // Seek if necessary
769 if ( position != expected )
770 {
771 if ( position + 1 == expected )
772 {
773 // We're paused - silence required
774 paused = 1;
775 }
776 else if ( !seekable && position > expected && ( position - expected ) < 250 )
777 {
778 // Fast forward - seeking is inefficient for small distances - just ignore following frames
779 ignore = position - expected;
780 }
781 else if ( position < expected || position - expected >= 12 )
782 {
783 // Set to the real timecode
784 if ( av_seek_frame( context, -1, mlt_properties_get_double( properties, "start_time" ) + real_timecode * 1000000.0 ) != 0 )
785 paused = 1;
786
787 // Clear the usage in the audio buffer
788 audio_used = 0;
789 }
790 }
791
792 // Get the audio if required
793 if ( !paused )
794 {
795 int ret = 0;
796 int got_audio = 0;
797 int16_t *temp = mlt_pool_alloc( sizeof( int16_t ) * AVCODEC_MAX_AUDIO_FRAME_SIZE );
798
799 memset( &pkt, 0, sizeof( pkt ) );
800
801 while( ret >= 0 && !got_audio )
802 {
803 // Check if the buffer already contains the samples required
804 if ( audio_used >= *samples && ignore == 0 )
805 {
806 got_audio = 1;
807 break;
808 }
809
810 // Read a packet
811 ret = av_read_frame( context, &pkt );
812
813 int len = pkt.size;
814 uint8_t *ptr = pkt.data;
815 int data_size;
816
817 // We only deal with audio from the selected audio_index
818 while ( ptr != NULL && ret >= 0 && pkt.stream_index == index && len > 0 )
819 {
820 // Decode the audio
821 ret = avcodec_decode_audio( codec_context, temp, &data_size, ptr, len );
822
823 if ( ret < 0 )
824 {
825 ret = 0;
826 break;
827 }
828
829 len -= ret;
830 ptr += ret;
831
832 if ( data_size > 0 )
833 {
834 if ( resample != NULL )
835 {
836 audio_used += audio_resample( resample, &audio_buffer[ audio_used * *channels ], temp, data_size / ( codec_context->channels * sizeof( int16_t ) ) );
837 }
838 else
839 {
840 memcpy( &audio_buffer[ audio_used * *channels ], temp, data_size );
841 audio_used += data_size / ( codec_context->channels * sizeof( int16_t ) );
842 }
843
844 // Handle ignore
845 while ( ignore && audio_used > *samples )
846 {
847 ignore --;
848 audio_used -= *samples;
849 memmove( audio_buffer, &audio_buffer[ *samples * *channels ], audio_used * sizeof( int16_t ) );
850 }
851 }
852
853 // If we're behind, ignore this packet
854 float current_pts = (float)pkt.pts / 1000000.0;
855 if ( seekable && ( !ignore && current_pts <= ( real_timecode - 0.02 ) ) )
856 ignore = 1;
857 }
858
859 // We're finished with this packet regardless
860 av_free_packet( &pkt );
861 }
862
863 *buffer = mlt_pool_alloc( *samples * *channels * sizeof( int16_t ) );
864 mlt_properties_set_data( frame_properties, "audio", *buffer, 0, ( mlt_destructor )mlt_pool_release, NULL );
865
866 // Now handle the audio if we have enough
867 if ( audio_used >= *samples )
868 {
869 memcpy( *buffer, audio_buffer, *samples * *channels * sizeof( int16_t ) );
870 audio_used -= *samples;
871 memmove( audio_buffer, &audio_buffer[ *samples * *channels ], audio_used * *channels * sizeof( int16_t ) );
872 }
873 else
874 {
875 memset( *buffer, 0, *samples * *channels * sizeof( int16_t ) );
876 }
877
878 // Store the number of audio samples still available
879 mlt_properties_set_int( properties, "audio_used", audio_used );
880
881 // Release the temporary audio
882 mlt_pool_release( temp );
883 }
884 else
885 {
886 // Get silence and don't touch the context
887 frame->get_audio = NULL;
888 mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
889 }
890
891 // Regardless of speed (other than paused), we expect to get the next frame
892 if ( !paused )
893 mlt_properties_set_position( properties, "audio_expected", position + 1 );
894
895 return 0;
896 }
897
898 /** Set up audio handling.
899 */
900
901 static void producer_set_up_audio( mlt_producer this, mlt_frame frame )
902 {
903 // Get the properties
904 mlt_properties properties = mlt_producer_properties( this );
905
906 // Fetch the audio_context
907 AVFormatContext *context = mlt_properties_get_data( properties, "audio_context", NULL );
908
909 // Get the audio_index
910 int index = mlt_properties_get_int( properties, "audio_index" );
911
912 // Deal with audio context
913 if ( context != NULL && index != -1 )
914 {
915 // Get the frame properties
916 mlt_properties frame_properties = mlt_frame_properties( frame );
917
918 // Get the audio stream
919 AVStream *stream = context->streams[ index ];
920
921 // Get codec context
922 AVCodecContext *codec_context = &stream->codec;
923
924 // Get the codec
925 AVCodec *codec = mlt_properties_get_data( properties, "audio_codec", NULL );
926
927 // Initialise the codec if necessary
928 if ( codec == NULL )
929 {
930 // Find the codec
931 codec = avcodec_find_decoder( codec_context->codec_id );
932
933 // If we don't have a codec and we can't initialise it, we can't do much more...
934 if ( codec != NULL && avcodec_open( codec_context, codec ) >= 0 )
935 {
936 // Now store the codec with its destructor
937 mlt_properties_set_data( properties, "audio_codec", codec_context, 0, producer_codec_close, NULL );
938
939 }
940 else
941 {
942 // Remember that we can't use this later
943 mlt_properties_set_int( properties, "audio_index", -1 );
944 }
945 }
946
947 // No codec, no show...
948 if ( codec != NULL )
949 {
950 frame->get_audio = producer_get_audio;
951 mlt_properties_set_data( frame_properties, "avformat_producer", this, 0, NULL, NULL );
952 }
953 }
954 }
955
956 /** Our get frame implementation.
957 */
958
959 static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index )
960 {
961 // Create an empty frame
962 *frame = mlt_frame_init( );
963
964 // Update timecode on the frame we're creating
965 mlt_frame_set_position( *frame, mlt_producer_position( this ) );
966
967 // Set the position of this producer
968 mlt_properties_set_position( mlt_frame_properties( *frame ), "avformat_position", mlt_producer_position( this ) );
969
970 // Set up the video
971 producer_set_up_video( this, *frame );
972
973 // Set up the audio
974 producer_set_up_audio( this, *frame );
975
976 // Set the aspect_ratio
977 mlt_properties_set_double( mlt_frame_properties( *frame ), "aspect_ratio", mlt_properties_get_double( mlt_producer_properties( this ), "aspect_ratio" ) );
978
979 // Calculate the next timecode
980 mlt_producer_prepare_next( this );
981
982 return 0;
983 }