VIDEO: Fix theora playback rate

This reverts PR #4276 - "rate" is a multiplier not a framerate.
This commit is contained in:
Matthew Duggan 2023-02-23 13:46:02 +09:00
parent 70e2b02696
commit 22b30da94e

View file

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