From 8c2e20165a0b8342ae296b1817203e2a7f97252a Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Tue, 24 Mar 2026 16:41:23 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20rename=20codec=20buttons=20to=20Standar?= =?UTF-8?q?d/NVIDIA=20=C2=B7=20Apple=20with=20codec=20subtitles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/voice/ScreenShareSettingsPopover.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/web/src/components/voice/ScreenShareSettingsPopover.tsx b/packages/web/src/components/voice/ScreenShareSettingsPopover.tsx index 240a31e5..a97084f9 100644 --- a/packages/web/src/components/voice/ScreenShareSettingsPopover.tsx +++ b/packages/web/src/components/voice/ScreenShareSettingsPopover.tsx @@ -21,8 +21,8 @@ const MODES: { value: ScreenShareConfig['mode']; label: string }[] = [ ]; const CODEC_OPTIONS = [ - { value: 'vp9' as const, label: 'VP9' }, - { value: 'hw' as const, label: 'H.264 HW' }, + { value: 'vp9' as const, label: 'Standard', sub: 'VP9' }, + { value: 'hw' as const, label: 'NVIDIA / Apple', sub: 'H.264' }, ]; function formatBitrate(bps: number): string { @@ -198,13 +198,14 @@ export function ScreenShareSettingsPopover({ open, onClose, anchorRef }: ScreenS ); })}