Sasha Szpakowski
Sasha Szpakowski
**Original comment by Varun Ramesh (Bitbucket: [varunr](https://bitbucket.org/varunr), GitHub: [varunr](https://github.com/varunr)).** ---------------------------------------- As far as I can tell, the freezing is due to an infinite loop in [OggDemuxer::readPage()](https://bitbucket.org/rude/love/src/55f6c5a90b3edd23782e0595ee00740ea76a3a20/src/modules/video/theora/OggDemuxer.cpp?at=default&fileviewer=file-view-default#OggDemuxer.cpp-49). `ogg_sync_pageout` always returns zero...
**Original comment by Varun Ramesh (Bitbucket: [varunr](https://bitbucket.org/varunr), GitHub: [varunr](https://github.com/varunr)).** ---------------------------------------- Commenting out the `lagCounter` code in `TheoraVideoStream::threadedFillBackBuffer` seems to fix the lockup. I still get artifacts, but that's not as...
**Original comment by Bart van Strien (Bitbucket: [bartbes](https://bitbucket.org/bartbes), GitHub: [bartbes](https://github.com/bartbes)).** ---------------------------------------- I still need to find a better way to detect when to seek forwards... I should be able to...
[video_artifacts_lockup.zip](https://github.com/love2d/love/files/4238665/video_artifacts_lockup.zip)
"Failed to initialize filesystem: already initialized" error triggering when a stack overflow occurs
A few people have run into this issue before I think - if anyone has some code that can reproduce it, it'd help a lot with fixing it.
"Failed to initialize filesystem: already initialized" error triggering when a stack overflow occurs
Thanks to @zombrodo I am able to reproduce it about half the time with this code: ```Lua function love.load() local function x(b) if true then local a = 2 *...
For reference, there's a bit of discussion about this in #972. However I haven't decided yet if the same stance should be taken as in the original issue so I...
pgimeno did a bit of investigation into the problem, here: https://love2d.org/forums/viewtopic.php?f=3&t=92555
This is fixed as of [6b54ee5](https://github.com/love2d/love/commit/6b54ee50db121f907c38dfb882970f2826b12853) (part of love 12, although we could backport the fix I suppose if we end up releasing a new 11.x version).
Is it possible the Linux/Github Actions machine you're testing on is using a graphics driver that uses a different internal backbuffer color format than other platforms? (For example 16 bit...