2014-04-23 04:30:27 +02:00
|
|
|
// 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"
|
|
|
|
|
2015-12-08 08:22:41 +01:00
|
|
|
int ReadWebP(const uint8_t* const data, size_t data_size,
|
|
|
|
WebPPicture* const pic,
|
2014-04-23 04:30:27 +02:00
|
|
|
int keep_alpha, Metadata* const metadata) {
|
|
|
|
int ok = 0;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-12-08 08:22:41 +01:00
|
|
|
status = WebPGetFeatures(data, data_size, bitstream);
|
|
|
|
if (status != VP8_STATUS_OK) {
|
|
|
|
ExUtilPrintWebPError("input data", status);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
{
|
2014-04-23 04:30:27 +02:00
|
|
|
const int has_alpha = keep_alpha && bitstream->has_alpha;
|
2015-10-27 22:54:11 +01:00
|
|
|
// TODO(skal): use MODE_YUV(A), depending on the expected
|
|
|
|
// input pic->use_argb. This would save some conversion steps.
|
2014-04-23 04:30:27 +02:00
|
|
|
output_buffer->colorspace = has_alpha ? MODE_RGBA : MODE_RGB;
|
|
|
|
|
2014-04-26 23:26:13 +02:00
|
|
|
status = ExUtilDecodeWebP(data, data_size, 0, &config);
|
2014-04-23 04:30:27 +02:00
|
|
|
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) {
|
2015-12-08 08:22:41 +01:00
|
|
|
ExUtilPrintWebPError("input data", status);
|
2014-04-23 04:30:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WebPFreeDecBuffer(output_buffer);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|