summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-01-17 22:34:58 +0000
committerCarl Hetherington <cth@carlh.net>2020-01-17 22:34:58 +0000
commitffb3cf8bfe397c87d0e797eb8732aa6b1f6c5091 (patch)
treef291cc5394963a8064db6b4e270512f641d42a19 /src/lib/writer.cc
parentd8ded66fccb98bd0145afb2f08cf84aad7002a15 (diff)
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index f9009be37..db9a67b20 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -285,12 +285,14 @@ Writer::write (shared_ptr<const AudioBuffers> audio, DCPTime const time)
if (part_frames[0]) {
shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), part_frames[0]));
+ LOG_GENERAL_NC("copy from #10");
part->copy_from (audio.get(), part_frames[0], 0, 0);
_audio_reel->write (part);
}
if (part_frames[1]) {
shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), part_frames[1]));
+ LOG_GENERAL_NC("copy from #11");
part->copy_from (audio.get(), part_frames[1], part_frames[0], 0);
audio = part;
} else {