From 9c2e4ec6d27c7c7d70a191c0303aa526f09e3a42 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 27 Jul 2021 11:51:04 -0600 Subject: [PATCH] libtemporal: fix timepos_t::set_time_domain() For legacy reasons, this was going via a sample intermediate representation --- libs/temporal/timeline.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/timeline.cc b/libs/temporal/timeline.cc index 00659f0259..4b878dd100 100644 --- a/libs/temporal/timeline.cc +++ b/libs/temporal/timeline.cc @@ -461,7 +461,7 @@ timepos_t::set_time_domain (TimeDomain td) } if (td == AudioTime) { - v = build (false, superclock_to_samples (_superclocks(), TEMPORAL_SAMPLE_RATE)); + v = build (false, _superclocks()); } else { v = build (true, _beats().to_ticks()); }