From 78e5a331074a456097a162d47501daf1df1ab1a3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 25 Jul 2013 22:04:20 +0100 Subject: Hopefully much cleaner handling of PTS changes under resample. --- src/lib/audio_decoder.cc | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) (limited to 'src/lib/audio_decoder.cc') diff --git a/src/lib/audio_decoder.cc b/src/lib/audio_decoder.cc index 846cdf595..1f5868583 100644 --- a/src/lib/audio_decoder.cc +++ b/src/lib/audio_decoder.cc @@ -32,36 +32,16 @@ using std::cout; using boost::optional; using boost::shared_ptr; -AudioDecoder::AudioDecoder (shared_ptr film, shared_ptr content) +AudioDecoder::AudioDecoder (shared_ptr film) : Decoder (film) , _audio_position (0) { - if (content->content_audio_frame_rate() != content->output_audio_frame_rate() && content->audio_channels ()) { - _resampler.reset ( - new Resampler ( - content->content_audio_frame_rate(), - content->output_audio_frame_rate(), - content->audio_channels() - ) - ); - } -} - -void -AudioDecoder::audio (shared_ptr data, AudioContent::Frame) -{ - if (_resampler) { - data = _resampler->run (data); - } - Audio (data, _audio_position); - _audio_position += data->frames (); } void -AudioDecoder::flush () +AudioDecoder::audio (shared_ptr data, AudioContent::Frame frame) { - if (_resampler) { - _resampler->flush (); - } + Audio (data, frame); + _audio_position = frame + data->frames (); } -- cgit v1.2.3