summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-03-10 00:55:33 +0000
committerCarl Hetherington <cth@carlh.net>2018-03-10 00:55:33 +0000
commit057a3fcfd98e5c8dec16294caf230aee2b5229eb (patch)
tree344f8150b089054908a4037aa141a1965c7a74b7 /src/lib
parentb11fd6e76982ec18309484278fd40ee1b068c602 (diff)
Remove assert in emit_audio to work around #1206.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/player.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index bd194c373..e8005c655 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -1031,8 +1031,8 @@ Player::emit_audio (shared_ptr<AudioBuffers> data, DCPTime time)
_film->log()->log(String::compose("Out-of-sequence emit %1 vs %2", to_string(time), to_string(*_last_audio_time)), LogEntry::TYPE_WARNING);
}
- /* This audio must follow on from the previous */
- DCPOMATIC_ASSERT (!_last_audio_time || time == *_last_audio_time);
+ /* This audio must follow on from the previous, but I'll remove this check for the 2.12.x release */
+ // DCPOMATIC_ASSERT (!_last_audio_time || time == *_last_audio_time);
Audio (data, time);
_last_audio_time = time + DCPTime::from_frames (data->frames(), _film->audio_frame_rate());
}