mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
Merge "WebPMuxGetImage: allow image param to be NULL"
This commit is contained in:
commit
cb5810dfbe
@ -230,8 +230,8 @@ WebPMuxError WebPMuxGetImage(const WebPMux* const mux,
|
||||
WebPMuxError err;
|
||||
WebPMuxImage* wpi = NULL;
|
||||
|
||||
if (mux == NULL || image == NULL) return WEBP_MUX_INVALID_ARGUMENT;
|
||||
memset(image, 0, sizeof(*image));
|
||||
if (mux == NULL || (image == NULL && alpha == NULL))
|
||||
return WEBP_MUX_INVALID_ARGUMENT;
|
||||
|
||||
err = ValidateForImage(mux);
|
||||
if (err != WEBP_MUX_OK) return err;
|
||||
@ -250,10 +250,13 @@ WebPMuxError WebPMuxGetImage(const WebPMux* const mux,
|
||||
}
|
||||
|
||||
// Get image chunk.
|
||||
if (image != NULL) {
|
||||
memset(image, 0, sizeof(*image));
|
||||
if (wpi->vp8_ != NULL) {
|
||||
image->bytes_ = wpi->vp8_->data_;
|
||||
image->size_ = wpi->vp8_->payload_size_;
|
||||
}
|
||||
}
|
||||
return WEBP_MUX_OK;
|
||||
}
|
||||
|
||||
|
@ -149,8 +149,8 @@ WEBP_EXTERN(WebPMuxError) WebPMuxSetImage(
|
||||
// image - (out) the image data
|
||||
// alpha - (out) the alpha data of the image (if present)
|
||||
// Returns:
|
||||
// WEBP_MUX_INVALID_ARGUMENT - if either mux or image is NULL
|
||||
// OR if mux contains animation/tiling.
|
||||
// WEBP_MUX_INVALID_ARGUMENT - if either mux or both image & alpha are NULL
|
||||
// OR mux contains animation/tiling.
|
||||
// WEBP_MUX_NOT_FOUND - if image is not present in mux object.
|
||||
// WEBP_MUX_OK - on success.
|
||||
WEBP_EXTERN(WebPMuxError) WebPMuxGetImage(const WebPMux* const mux,
|
||||
|
Loading…
Reference in New Issue
Block a user