-
Notifications
You must be signed in to change notification settings - Fork 6
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
Compress rapid-fire screenshots #54
Comments
The JPEG-XL variant received funding from Ember2528's Seihou subscription and will be done after #36. |
Well, turns out that for this type of image, lossless WebP beats lossless JPEG XL in both compression ratio and compression speed across all levels. It's also a much less complex and bloated codec, and its reference library is much easier to integrate and has a much better C API. Ember2528 agreed that we use that codec instead.
(RLE is the vintage .BMP run-length compression that was mostly forgotten after the 90's. Added it mostly to hammer home how QOI basically breaks down into a pure run-length encoder for this kind of paletted image, especially in the cropped The test images:
|
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Completes P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Completes P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Completes P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
Using `std::chrono::steady_clock` rather than insisting on the SDL functions is *definitely* fine for now: • On Windows, MSVC implements it in terms of QueryPerformanceCounter(), so it will work on 9x as well. • Also, that one `std::this_thread::sleep_for()` in the MIDI frontend has already been using it. Closes #54. Part of P0309, funded by Ember2528.
The original game's screenshot feature (#15) only writes uncompressed .BMP files that take up quite a bit of disk space. Due to the rapid-fire nature of these screenshots, this can add up to hundreds of MB very quickly.
Nowadays, there are
twothreefour main contenders for lossless compressed image formats:GIF: Would actually compress only slightly worse than PNG, but 256 colors are probably not enough once Direct3D-rendered transparent shapes come into play.None of these are part of SDL, so we'd have to add another library in any case.
Here's a decently busy reference screenshot:

-e 1
GIF, optimized61,290 bytes-z 0
-z 1
-z 2
-z 3
-z 4
-z 5
oxipng -o max -Z
-z 6
-z 7
-z 8
-z 9
The text was updated successfully, but these errors were encountered: