mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 07:56:49 +02:00
wicdec: fail with animated images
this matches the behavior of other decoders (WebP) in imageio. Bug: webp:479 Change-Id: Ifcae0f38d7eebde31cd294070a6dd1f80cb30043
This commit is contained in:
parent
ab2d08a842
commit
26faf7706b
@ -298,9 +298,15 @@ int ReadPictureWithWIC(const char* const filename,
|
|||||||
factory, stream, NULL,
|
factory, stream, NULL,
|
||||||
WICDecodeMetadataCacheOnDemand, &decoder));
|
WICDecodeMetadataCacheOnDemand, &decoder));
|
||||||
IFS(IWICBitmapDecoder_GetFrameCount(decoder, &frame_count));
|
IFS(IWICBitmapDecoder_GetFrameCount(decoder, &frame_count));
|
||||||
if (SUCCEEDED(hr) && frame_count == 0) {
|
if (SUCCEEDED(hr)) {
|
||||||
fprintf(stderr, "No frame found in input file.\n");
|
if (frame_count == 0) {
|
||||||
hr = E_FAIL;
|
fprintf(stderr, "No frame found in input file.\n");
|
||||||
|
hr = E_FAIL;
|
||||||
|
} else if (frame_count > 1) {
|
||||||
|
// WIC will be tried before native WebP decoding so avoid duplicating the
|
||||||
|
// error message.
|
||||||
|
hr = E_FAIL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
IFS(IWICBitmapDecoder_GetFrame(decoder, 0, &frame));
|
IFS(IWICBitmapDecoder_GetFrame(decoder, 0, &frame));
|
||||||
IFS(IWICBitmapFrameDecode_GetPixelFormat(frame, &src_pixel_format));
|
IFS(IWICBitmapFrameDecode_GetPixelFormat(frame, &src_pixel_format));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user