-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Freeze on cutscenes #14
Comments
A link to the affected game would be nice to test this on faster systems. |
Basically any single game with a cutscene is affected by this problem. I noticed this problem in Zelda Link's Awakening (where the whole game runs also at pretty low fps but it can be referred to screen tone issue at least for ingame framerate maybe) and in Grimm Adventures ( http://gbatemp.net/attachments/scr_34_combined-png.43660/ ) |
That's not really a cutscene but just clever event scripting with pictures. |
This is probably only fixable with asynchronous IO (IO in an extra thread). But this would require changing the whole Player code to achieve this. |
Can't this be mitigated at least with JPG images support for Pictures since libjpeg-turbo is really fast on decoding images? (lpp-3ds for example provides a video decoder based only on libjpeg-turbo for MJPEG decoding that can handle videos at 30 fps without framedrops with CPU software rendering). |
The Player doesn't support JPEG and no game uses JPEG. We should figure out first if it's the file access that is slow or the libpng usage. But I bet it's the access. |
When i was working on the video decoder i tried also to use PNG frames instead of JPG ones and at least for lodepng (the decoder i use on lpp-3ds for PNG files), it wasn't able to handle videos with a good framerate cause decoder was SLOOOOOW (it went at like 3-4 fps). |
It looks like the interpreter can't handle properly cutscenes. During such scenes, framerate is 0 on both N3DS and O3DS.
The text was updated successfully, but these errors were encountered: