From 22b30da94e636c64334df233b4b00a2f1f706cde Mon Sep 17 00:00:00 2001 From: Matthew Duggan Date: Thu, 23 Feb 2023 13:46:02 +0900 Subject: [PATCH] VIDEO: Fix theora playback rate This reverts PR #4276 - "rate" is a multiplier not a framerate. --- video/theora_decoder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/video/theora_decoder.cpp b/video/theora_decoder.cpp index b9b57912d30..c833fce80fe 100644 --- a/video/theora_decoder.cpp +++ b/video/theora_decoder.cpp @@ -169,7 +169,6 @@ bool TheoraDecoder::loadStream(Common::SeekableReadStream *stream) { if (_hasVideo) { _videoTrack = new TheoraVideoTrack(getDefaultHighColorFormat(), theoraInfo, theoraSetup); addTrack(_videoTrack); - setRate(_videoTrack->getFrameRate()); } th_info_clear(&theoraInfo);