Add a TODO comment

WebP can't save all JPEGs, because WEBP_MAX_DIMENSION is only 16383.
This commit is contained in:
Přemysl Eric Janouch 2022-02-18 19:52:51 +01:00
parent 5d019e20b5
commit 3ae8be8348
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 0 deletions

View File

@ -3098,6 +3098,7 @@ fiv_io_encode_webp(
for (int i = h * picture.argb_stride; i-- > 0; argb++)
*argb |= 0xFF000000;
// TODO(p): Prevent or propagate VP8_ENC_ERROR_BAD_DIMENSION.
picture.writer = WebPMemoryWrite;
picture.custom_ptr = &writer;
if (!WebPEncode(config, &picture))