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 ); })}