diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-01-17 22:34:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-01-17 22:34:58 +0000 |
| commit | ffb3cf8bfe397c87d0e797eb8732aa6b1f6c5091 (patch) | |
| tree | f291cc5394963a8064db6b4e270512f641d42a19 /src/lib/writer.cc | |
| parent | d8ded66fccb98bd0145afb2f08cf84aad7002a15 (diff) | |
Debug.debug/shane
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 2 |
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 { |
