()
| 391 | |
| 392 | // Hide video settings popup |
| 393 | function hideVideoSettingsPopup() { |
| 394 | const overlay = document.getElementById('video-settings-overlay'); |
| 395 | const popup = document.getElementById('video-settings-popup'); |
| 396 | if (!overlay || !popup) return; |
| 397 | |
| 398 | overlay.style.opacity = '0'; |
| 399 | setTimeout(() => { |
| 400 | overlay.style.display = 'none'; |
| 401 | popup.style.display = 'none'; |
| 402 | }, 200); |
| 403 | } |
| 404 | |
| 405 | // Update bitrate display labels |
| 406 | function updateBitrateDisplays() { |