Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9af609b0 authored by Henri Chataing's avatar Henri Chataing Committed by Gerrit Code Review
Browse files

Merge "asrc: Fix logging on negative deviation" into main

parents 991d8f9e e4b3fa39
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -162,8 +162,8 @@ class SourceAudioHalAsrc::ClockRecovery : public bluetooth::hal::ReadClockHandle
    log::info(
            "Deviation: {:6} us ({:3.0f} ppm) | Output Fs: {:5.2f} Hz  drift: {:2} "
            "us",
            state.stream_time - state.local_time, state.butter_drift, output_stats.sample_rate,
            output_stats.drift_us);
            static_cast<int32_t>(state.stream_time - state.local_time), state.butter_drift,
            output_stats.sample_rate, output_stats.drift_us);
  }

public: