mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 12:28:26 +01:00
7861578bd6
This is to infer the needed conversion to YUV(A) or RGB(A). This is useful to avoid some conversion steps between ARGB and YUVA. For instance, if the input file is a JPEG, we decode to RGB and convert to YUV right away, without the intermediate step to ARGB. The only caveat is that cropping/scaling might give slightly different result, because of YUV420 downsampling. Therefore, we omit this feature at cwebp level, when -crop or -rescale is used. Change-Id: I5a3abe5108982f2a4570e841e3d9baffc73f5bee
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
// Copyright 2014 Google Inc. All Rights Reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the COPYING file in the root of the source
|
|
// tree. An additional intellectual property rights grant can be found
|
|
// in the file PATENTS. All contributing project authors may
|
|
// be found in the AUTHORS file in the root of the source tree.
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// WebP decode.
|
|
|
|
#include "./webpdec.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "webp/decode.h"
|
|
#include "webp/encode.h"
|
|
#include "./example_util.h"
|
|
#include "./metadata.h"
|
|
|
|
int ReadWebP(const char* const in_file, WebPPicture* const pic,
|
|
int keep_alpha, Metadata* const metadata) {
|
|
int ok = 0;
|
|
size_t data_size = 0;
|
|
const uint8_t* data = NULL;
|
|
VP8StatusCode status = VP8_STATUS_OK;
|
|
WebPDecoderConfig config;
|
|
WebPDecBuffer* const output_buffer = &config.output;
|
|
WebPBitstreamFeatures* const bitstream = &config.input;
|
|
|
|
// TODO(jzern): add Exif/XMP/ICC extraction.
|
|
if (metadata != NULL) {
|
|
fprintf(stderr, "Warning: metadata extraction from WebP is unsupported.\n");
|
|
}
|
|
|
|
if (!WebPInitDecoderConfig(&config)) {
|
|
fprintf(stderr, "Library version mismatch!\n");
|
|
return 0;
|
|
}
|
|
|
|
if (ExUtilLoadWebP(in_file, &data, &data_size, bitstream)) {
|
|
const int has_alpha = keep_alpha && bitstream->has_alpha;
|
|
// TODO(skal): use MODE_YUV(A), depending on the expected
|
|
// input pic->use_argb. This would save some conversion steps.
|
|
output_buffer->colorspace = has_alpha ? MODE_RGBA : MODE_RGB;
|
|
|
|
status = ExUtilDecodeWebP(data, data_size, 0, &config);
|
|
if (status == VP8_STATUS_OK) {
|
|
const uint8_t* const rgba = output_buffer->u.RGBA.rgba;
|
|
const int stride = output_buffer->u.RGBA.stride;
|
|
pic->width = output_buffer->width;
|
|
pic->height = output_buffer->height;
|
|
ok = has_alpha ? WebPPictureImportRGBA(pic, rgba, stride)
|
|
: WebPPictureImportRGB(pic, rgba, stride);
|
|
}
|
|
}
|
|
|
|
if (status != VP8_STATUS_OK) {
|
|
ExUtilPrintWebPError(in_file, status);
|
|
}
|
|
|
|
free((void*)data);
|
|
WebPFreeDecBuffer(output_buffer);
|
|
return ok;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|