mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibGfx/WebPWriter: Add comment for image-stream production
This commit is contained in:
parent
286cc6f905
commit
d9aa594e86
Notes:
sideshowbarker
2024-07-18 03:35:30 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/d9aa594e86 Pull-request: https://github.com/SerenityOS/serenity/pull/24483 Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 0 deletions
|
@ -217,6 +217,7 @@ static ErrorOr<void> write_VP8L_image_data(Stream& stream, Bitmap const& bitmap,
|
|||
{
|
||||
LittleEndianOutputBitStream bit_stream { MaybeOwned<Stream>(stream) };
|
||||
|
||||
// image-stream = optional-transform spatially-coded-image
|
||||
// optional-transform = (%b1 transform optional-transform) / %b0
|
||||
TRY(bit_stream.write_bits(0u, 1u)); // No transform for now.
|
||||
|
||||
|
|
Loading…
Reference in a new issue