1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibGfx/WebP: Minor cosmetical changes in WebPLoaderLossless.h

Add a comment, remove a parameter name that doesn't add anything,
and remove a weird newline in WebPLoader.cpp too.

No behavior change.
This commit is contained in:
Nico Weber 2023-05-07 15:27:32 -04:00 committed by Andreas Kling
parent eda2a2f5da
commit 119ccfe5da
2 changed files with 3 additions and 2 deletions

View file

@ -19,7 +19,9 @@ struct VP8LHeader {
ReadonlyBytes lossless_data;
};
// Parses the header data in a VP8L chunk. Pass the payload of a `VP8L` chunk, after the tag and after the tag's data size.
ErrorOr<VP8LHeader> decode_webp_chunk_VP8L_header(ReadonlyBytes vp8l_data);
ErrorOr<NonnullRefPtr<Bitmap>> decode_webp_chunk_VP8L_contents(VP8LHeader const& vp8l_header);
ErrorOr<NonnullRefPtr<Bitmap>> decode_webp_chunk_VP8L_contents(VP8LHeader const&);
}