summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/WebPLoader.cpp
AgeCommit message (Expand)Author
2023-03-21LibGfx: Move all image loaders and writers to a subdirectoryLucas CHOLLET
2023-02-26LibGfx: Return bool not ErrorOr<bool> from ImageDecoderPlugin::sniff()MacDue
2023-02-26LibGfx: Don't return an error for webp sniff failuresMacDue
2023-02-26LibGfx: Implement WebPImageDecoderPlugin::loop_count()Nico Weber
2023-02-26LibGfx: Implement is_animated() and frame_count() for webp pluginNico Weber
2023-02-26LibGfx: Add some chunk validation to decode_webp_extended()Nico Weber
2023-02-26LibGfx: In WebP, rename decode_webp_size to decode_webp_first_chunkNico Weber
2023-02-26LibGfx: In WebP, rename decode_webp_first_chunk to read_webp_first_chunkNico Weber
2023-02-25LibGfx: Decode WebP canvas sizeNico Weber
2023-02-25LibGfx: Parse WebP VP8L chunk headerNico Weber
2023-02-25LibGfx: Fix lossless fourcc in VP8X chunk decoderNico Weber
2023-02-25LibGfx: Add link to webp overviewNico Weber
2023-02-25LibGfx: Parse some of WebP 'VP8 ' chunkNico Weber
2023-02-25LibGfx: Parse WebP VP8X chunkNico Weber
2023-02-25LibGfx: Add a FIXME to WebPImageDecoderPlugin::icc_data()Nico Weber
2023-02-25LibGfx: Add a WebPLoadingContext::error() helperNico Weber
2023-02-24LibGfx+Tests: Add test for webp ICC loading and fix bugNico Weber
2023-02-24LibGfx: Add scaffolding for a webp decoderNico Weber