X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.cc;h=4bd6535d81a2888f98af09016652e0642dc1e674;hb=0ca36c0d2b238a9e2165b5d113c22f144835a672;hp=69d86c57b6d5ecb5059b32f7ad26708398163b24;hpb=9824173a79ce723068296b3a44499101408c24f2;p=dcpomatic.git diff --git a/src/lib/audio_decoder.cc b/src/lib/audio_decoder.cc index 69d86c57b..4bd6535d8 100644 --- a/src/lib/audio_decoder.cc +++ b/src/lib/audio_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2017 Carl Hetherington + Copyright (C) 2012-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -37,9 +37,10 @@ using std::pair; using boost::shared_ptr; using boost::optional; -AudioDecoder::AudioDecoder (Decoder* parent, shared_ptr content, shared_ptr log) +AudioDecoder::AudioDecoder (Decoder* parent, shared_ptr content, shared_ptr log, bool fast) : DecoderPart (parent, log) , _content (content) + , _fast (fast) { /* Set up _positions so that we have one for each stream */ BOOST_FOREACH (AudioStreamPtr i, content->streams ()) { @@ -60,6 +61,11 @@ AudioDecoder::emit (AudioStreamPtr stream, shared_ptr data, we just count samples, as it seems that ContentTimes are unreliable from FFmpegDecoder (not quite continuous; perhaps due to some rounding error). */ + if (_content->delay() > 0) { + /* Insert silence to give the delay */ + silence (_content->delay ()); + } + time += ContentTime::from_seconds (_content->delay() / 1000.0); _positions[stream] = time.frames_round (stream->frame_rate ()); } @@ -77,6 +83,9 @@ AudioDecoder::emit (AudioStreamPtr stream, shared_ptr data, ); resampler.reset (new Resampler (stream->frame_rate(), _content->resampled_frame_rate(), stream->channels())); + if (_fast) { + resampler->set_fast (); + } _resamplers[stream] = resampler; } } @@ -89,7 +98,7 @@ AudioDecoder::emit (AudioStreamPtr stream, shared_ptr data, data = ro; } - Data (stream, ContentAudio (data, _positions[stream])); + Data(stream, ContentAudio (data, _positions[stream])); _positions[stream] += data->frames(); } @@ -139,4 +148,20 @@ AudioDecoder::flush () _positions[i->first] += ro->frames(); } } + + if (_content->delay() < 0) { + /* Finish off with the gap caused by the delay */ + silence (-_content->delay ()); + } +} + +void +AudioDecoder::silence (int milliseconds) +{ + BOOST_FOREACH (AudioStreamPtr i, _content->streams ()) { + int const samples = ContentTime::from_seconds(milliseconds / 1000.0).frames_round(i->frame_rate()); + shared_ptr silence (new AudioBuffers (i->channels(), samples)); + silence->make_silent (); + Data (i, ContentAudio (silence, _positions[i])); + } }