Refactor video playback speed options

This commit is contained in:
qtchaos 2023-12-28 21:57:14 +02:00
parent 9f7432450b
commit c3494c2f84
No known key found for this signature in database
GPG Key ID: 7DA98B2B9EF06A90

View File

@ -93,12 +93,10 @@ export function KeyboardEvents() {
// Video playback speed // Video playback speed
if (k === ">" || k === "<") { if (k === ">" || k === "<") {
const playbackRates = [0.25, 0.5, 1, 1.5, 2]; const options = [0.25, 0.5, 1, 1.5, 2];
const idx = playbackRates.indexOf( const idx = options.indexOf(dataRef.current.mediaPlaying?.playbackRate);
dataRef.current.mediaPlaying?.playbackRate,
);
const nextIdx = idx + (k === ">" ? 1 : -1); const nextIdx = idx + (k === ">" ? 1 : -1);
const next = playbackRates[nextIdx]; const next = options[nextIdx];
if (next) dataRef.current.display?.setPlaybackRate(next); if (next) dataRef.current.display?.setPlaybackRate(next);
} }