mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
Merge changes I66a64a0a,I4d2e520f
* changes: cosmetics,webpinfo: remove an else after a return cosmetics,cwebp: remove an else after a return
This commit is contained in:
commit
5bd40066cc
@ -486,10 +486,10 @@ static int WriteWebPWithMetadata(FILE* const out,
|
|||||||
*metadata_written |= METADATA_XMP;
|
*metadata_written |= METADATA_XMP;
|
||||||
}
|
}
|
||||||
return ok;
|
return ok;
|
||||||
} else {
|
|
||||||
// No metadata, just write the original image file.
|
|
||||||
return (fwrite(webp, webp_size, 1, out) == 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No metadata, just write the original image file.
|
||||||
|
return (fwrite(webp, webp_size, 1, out) == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
@ -817,9 +817,8 @@ static WebPInfoStatus ProcessImageChunk(const ChunkData* const chunk_data,
|
|||||||
if (webp_info->seen_image_subchunk_) {
|
if (webp_info->seen_image_subchunk_) {
|
||||||
LOG_ERROR("Consecutive VP8/VP8L sub-chunks in an ANMF chunk.");
|
LOG_ERROR("Consecutive VP8/VP8L sub-chunks in an ANMF chunk.");
|
||||||
return WEBP_INFO_PARSE_ERROR;
|
return WEBP_INFO_PARSE_ERROR;
|
||||||
} else {
|
|
||||||
webp_info->seen_image_subchunk_ = 1;
|
|
||||||
}
|
}
|
||||||
|
webp_info->seen_image_subchunk_ = 1;
|
||||||
} else {
|
} else {
|
||||||
if (webp_info->chunk_counts_[CHUNK_VP8] ||
|
if (webp_info->chunk_counts_[CHUNK_VP8] ||
|
||||||
webp_info->chunk_counts_[CHUNK_VP8L]) {
|
webp_info->chunk_counts_[CHUNK_VP8L]) {
|
||||||
@ -873,9 +872,9 @@ static WebPInfoStatus ProcessALPHChunk(const ChunkData* const chunk_data,
|
|||||||
if (webp_info->seen_alpha_subchunk_) {
|
if (webp_info->seen_alpha_subchunk_) {
|
||||||
LOG_ERROR("Consecutive ALPH sub-chunks in an ANMF chunk.");
|
LOG_ERROR("Consecutive ALPH sub-chunks in an ANMF chunk.");
|
||||||
return WEBP_INFO_PARSE_ERROR;
|
return WEBP_INFO_PARSE_ERROR;
|
||||||
} else {
|
|
||||||
webp_info->seen_alpha_subchunk_ = 1;
|
|
||||||
}
|
}
|
||||||
|
webp_info->seen_alpha_subchunk_ = 1;
|
||||||
|
|
||||||
if (webp_info->seen_image_subchunk_) {
|
if (webp_info->seen_image_subchunk_) {
|
||||||
LOG_ERROR("ALPHA sub-chunk detected after VP8 sub-chunk "
|
LOG_ERROR("ALPHA sub-chunk detected after VP8 sub-chunk "
|
||||||
"in an ANMF chunk.");
|
"in an ANMF chunk.");
|
||||||
|
Loading…
Reference in New Issue
Block a user