TASK 4 audio follow-up: game audio bar + mic status dot + always-on capture — the footer's second audio control (desktop/game, a mirror of the mic bar: meter + mute + volume) appears only while a full-screen game is producing sound (IGameAudioDetector seam + GameAudioHysteresis: show ~500ms of fullscreen+sound, hide ~1s after leaving fullscreen, silence never hides an active bar; VM polls on a 250ms timer); capture now runs for the app's lifetime so both meters preview live (started at startup via StartMicCaptureAsync, disposed in Shutdown — no longer go-live driven); MIC label is a button with a status dot (Models/MicStatus: green via the source Started event, yellow = mic problem, red = no device); PickMicrophone swaps the live device immediately via AudioMixer.RestartMic; fixed a latent ?.Invoke(meter.Push(...)) short-circuit that skipped the meter update when nothing subscribed — 167 tests passing, 0 warnings

This commit is contained in:
2026-08-13 11:29:44 -07:00
parent ea250c02a6
commit 9f9ed34627
20 changed files with 897 additions and 82 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace ytLive.Models;
/// <summary>Footer mic indicator state (the dot beside the MIC button):
/// <see cref="Connected"/> = mic capture is running; <see cref="Problem"/> = a
/// mic was requested but the connection failed (device in use, unplugged, or
/// unavailable); <see cref="NotConnected"/> = no capture is active (e.g. no
/// mic device present).</summary>
public enum MicStatus
{
NotConnected,
Connected,
Problem
}