diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-06-11 23:05:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-06-11 23:05:48 +0100 |
| commit | 7a6b206783fd44735679f8c7ea542b42e1a4dbd6 (patch) | |
| tree | e4469190fd7231b9d350a7da60bc62ca509f48d7 /src/lib | |
| parent | 8cdd8fe486331d10140a4d38a1fef9efc6fb8283 (diff) | |
Fix incorrect audio MXFs when writing multiple reels.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/writer.cc | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index ae00c0122..064c3f0ec 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -247,23 +247,21 @@ Writer::write (shared_ptr<const AudioBuffers> audio) return; } - int32_t const this_time = min ( - audio->frames() - offset, - (int32_t) (_audio_reel->period().duration().frames_floor(_film->audio_frame_rate()) - _audio_reel->total_written_audio_frames()) - ); + int32_t const remaining = audio->frames() - offset; + int32_t const reel_space = _audio_reel->period().duration().frames_floor(_film->audio_frame_rate()) - _audio_reel->total_written_audio_frames(); - if (this_time == audio->frames()) { + if (remaining <= reel_space) { /* Easy case: we can write all the audio to this reel */ _audio_reel->write (audio); + offset += remaining; } else { /* Write the part we can */ - shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), this_time)); - part->copy_from (audio.get(), this_time, offset, 0); + shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), reel_space)); + part->copy_from (audio.get(), reel_space, offset, 0); _audio_reel->write (part); ++_audio_reel; + offset += reel_space; } - - offset += this_time; } } |
