Merge p10-reduce-smoothing into dev (waveform smoothing 50ms->15ms; DEBUG flags off)

This commit is contained in:
daniel-c-harvey
2026-06-17 06:33:43 -04:00
3 changed files with 13 additions and 17 deletions
@@ -57,11 +57,8 @@ public partial class MixWaveformVisualizer : ComponentBase, IAsyncDisposable
// Bridge-level diagnostics. Mirrors the JS-side DEBUG flag in MixVisualizer.ts: when true the
// datum-fetch / subscription / playback-coupling seams log to the browser console (prefixed
// `[MixVisualizer]`, same as the JS logs so the two interleave into one timeline). These pinpoint
// which upstream link is broken when the ribbon stays blank — set false once confirmed healthy.
// ON for the Phase 10 reframe Wave R4 controls test (matches the JS-side DEBUG in
// MixVisualizer.ts). Daniel evaluates the eight-knob bar + pause behavior in-browser; flip back to
// false at reframe close along with the JS flag.
private static readonly bool Debug = true;
// which upstream link is broken when the ribbon stays blank — set true temporarily to diagnose.
private static readonly bool Debug = false;
private const string Tag = "[MixVisualizer]";
private static void DebugLog(string message)