diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-02-28 11:09:38 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | 17e80bc37eea735629e13f068005653428c44cce (patch) | |
| tree | c7d89d73f77fd69182b620c6a65b6e57722b4175 /src | |
| parent | 67826e691516e9bbb468ab62737e81e5e2eeeedf (diff) | |
Some comments and a few small cleanups.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/audio_buffers.cc | 24 | ||||
| -rw-r--r-- | src/lib/audio_decoder.cc | 8 | ||||
| -rw-r--r-- | src/lib/audio_decoder.h | 3 | ||||
| -rw-r--r-- | src/lib/audio_merger.cc | 32 | ||||
| -rw-r--r-- | src/lib/audio_merger.h | 12 |
5 files changed, 61 insertions, 18 deletions
diff --git a/src/lib/audio_buffers.cc b/src/lib/audio_buffers.cc index f01f8baaf..aea581a07 100644 --- a/src/lib/audio_buffers.cc +++ b/src/lib/audio_buffers.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -134,7 +134,7 @@ AudioBuffers::set_frames (int32_t f) _frames = f; } -/** Make all samples on all channels silent */ +/** Make all frames silent */ void AudioBuffers::make_silent () { @@ -156,6 +156,10 @@ AudioBuffers::make_silent (int c) } } +/** Make some frames. + * @param from Start frame. + * @param frames Number of frames to silence. + */ void AudioBuffers::make_silent (int32_t from, int32_t frames) { @@ -198,7 +202,6 @@ AudioBuffers::copy_from (AudioBuffers const * from, int32_t frames_to_copy, int3 * @param to Offset to move to. * @param frames Number of frames to move. */ - void AudioBuffers::move (int32_t frames, int32_t from, int32_t to) { @@ -272,6 +275,12 @@ AudioBuffers::ensure_size (int32_t frames) _allocated_frames = frames; } +/** Mix some other buffers with these ones. The AudioBuffers must have the same number of channels. + * @param from Audio buffers to get data from. + * @param frames Number of frames to mix. + * @param read_offset Offset within `from' to read from. + * @param write_offset Offset within this to mix into. + */ void AudioBuffers::accumulate_frames (AudioBuffers const * from, int32_t frames, int32_t read_offset, int32_t write_offset) { @@ -311,6 +320,11 @@ AudioBuffers::channel (int c) const return o; } +/** Copy all the samples from a channel on another AudioBuffers to a channel on this one. + * @param from AudioBuffers to copy from. + * @param from_channel Channel index in `from' to copy from. + * @param to_channel Channel index in this to copy into, overwriting what's already there. + */ void AudioBuffers::copy_channel_from (AudioBuffers const * from, int from_channel, int to_channel) { @@ -318,6 +332,7 @@ AudioBuffers::copy_channel_from (AudioBuffers const * from, int from_channel, in memcpy (data(to_channel), from->data(from_channel), frames() * sizeof (float)); } +/** Make a copy of these AudioBuffers */ shared_ptr<AudioBuffers> AudioBuffers::clone () const { @@ -326,14 +341,17 @@ AudioBuffers::clone () const return b; } +/** Extend these buffers with the data from another. The AudioBuffers must have the same number of channels. */ void AudioBuffers::append (shared_ptr<const AudioBuffers> other) { + DCPOMATIC_ASSERT (channels() == other->channels()); ensure_size (_frames + other->frames()); copy_from (other.get(), other->frames(), 0, _frames); _frames += other->frames(); } +/** Remove some frames from the start of these AudioBuffers */ void AudioBuffers::trim_start (int32_t frames) { diff --git a/src/lib/audio_decoder.cc b/src/lib/audio_decoder.cc index 31f713fda..3e4584a3f 100644 --- a/src/lib/audio_decoder.cc +++ b/src/lib/audio_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -36,6 +36,7 @@ using boost::optional; AudioDecoder::AudioDecoder (Decoder* parent, shared_ptr<const AudioContent> content, shared_ptr<Log> log) : DecoderPart (parent, log) { + /* Set up _positions so that we have one for each stream */ BOOST_FOREACH (AudioStreamPtr i, content->streams ()) { _positions[i] = 0; } @@ -49,6 +50,11 @@ AudioDecoder::emit (AudioStreamPtr stream, shared_ptr<const AudioBuffers> data, } if (_positions[stream] == 0) { + /* This is the first data we have received since initialisation or seek. Set + the position based on the ContentTime that was given. After this first time + we just count samples, as it seems that ContentTimes are unreliable from + FFmpegDecoder (not quite continuous; perhaps due to some rounding error). + */ _positions[stream] = time.frames_round (stream->frame_rate ()); } diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index 25d858681..c104d8201 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -52,6 +52,7 @@ public: boost::signals2::signal<void (AudioStreamPtr, ContentAudio)> Data; private: + /** Frame after the last one that was emitted from Data for each AudioStream */ std::map<AudioStreamPtr, Frame> _positions; }; diff --git a/src/lib/audio_merger.cc b/src/lib/audio_merger.cc index 10a71535b..4bed4b3a5 100644 --- a/src/lib/audio_merger.cc +++ b/src/lib/audio_merger.cc @@ -17,6 +17,10 @@ */ +/** @file src/audio_merger.cc + * @brief AudioMerger class. + */ + #include "audio_merger.h" #include "dcpomatic_time.h" #include <iostream> @@ -31,14 +35,21 @@ using boost::shared_ptr; using boost::optional; AudioMerger::AudioMerger (int frame_rate) - : _last_pull (0) - , _frame_rate (frame_rate) + : _frame_rate (frame_rate) { } +Frame +AudioMerger::frames (DCPTime t) const +{ + return t.frames_floor (_frame_rate); +} + /** Pull audio up to a given time; after this call, no more data can be pushed * before the specified time. + * @param time Time to pull up to. + * @return Blocks of merged audio up to `time'. */ list<pair<shared_ptr<AudioBuffers>, DCPTime> > AudioMerger::pull (DCPTime time) @@ -56,7 +67,7 @@ AudioMerger::pull (DCPTime time) out.push_back (make_pair (i.audio, i.time)); } else if (i.time < time) { /* Overlaps the end of the pull period */ - shared_ptr<AudioBuffers> audio (new AudioBuffers (i.audio->channels(), DCPTime(time - i.time).frames_floor(_frame_rate))); + shared_ptr<AudioBuffers> audio (new AudioBuffers (i.audio->channels(), frames(DCPTime(time - i.time)))); audio->copy_from (i.audio.get(), audio->frames(), 0, 0); out.push_back (make_pair (audio, i.time)); i.audio->trim_start (audio->frames ()); @@ -72,6 +83,7 @@ AudioMerger::pull (DCPTime time) return out; } +/** Push some data into the merger at a given time */ void AudioMerger::push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time) { @@ -79,16 +91,16 @@ AudioMerger::push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time) DCPTimePeriod period (time, time + DCPTime::from_frames (audio->frames(), _frame_rate)); - /* Mix any parts of this new block with existing ones */ + /* Mix any overlapping parts of this new block with existing ones */ BOOST_FOREACH (Buffer i, _buffers) { optional<DCPTimePeriod> overlap = i.period().overlap (period); if (overlap) { - int32_t const offset = DCPTime(overlap->from - i.time).frames_floor(_frame_rate); - int32_t const frames = overlap->duration().frames_floor(_frame_rate); + int32_t const offset = frames(DCPTime(overlap->from - i.time)); + int32_t const frames_to_mix = frames(overlap->duration()); if (i.time < time) { - i.audio->accumulate_frames(audio.get(), frames, 0, offset); + i.audio->accumulate_frames(audio.get(), frames_to_mix, 0, offset); } else { - i.audio->accumulate_frames(audio.get(), frames, offset, 0); + i.audio->accumulate_frames(audio.get(), frames_to_mix, offset, 0); } } } @@ -112,8 +124,8 @@ AudioMerger::push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time) } /* Get the part of audio that we want to use */ - shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), i.to.frames_floor(_frame_rate) - i.from.frames_floor(_frame_rate))); - part->copy_from (audio.get(), part->frames(), DCPTime(i.from - time).frames_floor(_frame_rate), 0); + shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), frames(i.to) - frames(i.from))); + part->copy_from (audio.get(), part->frames(), frames(DCPTime(i.from - time)), 0); if (before == _buffers.end() && after == _buffers.end()) { /* New buffer */ diff --git a/src/lib/audio_merger.h b/src/lib/audio_merger.h index 87bda7f8b..ffca29c57 100644 --- a/src/lib/audio_merger.h +++ b/src/lib/audio_merger.h @@ -17,22 +17,28 @@ */ +/** @file src/audio_merger.h + * @brief AudioMerger class. + */ + #include "audio_buffers.h" #include "dcpomatic_time.h" #include "util.h" +/** @class AudioMerger. + * @brief A class that can merge audio data from many sources. + */ class AudioMerger { public: AudioMerger (int frame_rate); - /** Pull audio up to a given time; after this call, no more data can be pushed - * before the specified time. - */ std::list<std::pair<boost::shared_ptr<AudioBuffers>, DCPTime> > pull (DCPTime time); void push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time); private: + Frame frames (DCPTime t) const; + class Buffer { public: |
