2012-05-12 01:00:57 +02:00
|
|
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
|
|
|
//
|
2013-06-07 08:05:58 +02:00
|
|
|
// 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.
|
2012-05-12 01:00:57 +02:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Utility functions used by the example programs.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "./example_util.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-03-12 19:32:16 +01:00
|
|
|
#include <string.h>
|
2012-05-12 01:00:57 +02:00
|
|
|
|
2014-04-23 04:33:22 +02:00
|
|
|
#include "webp/decode.h"
|
|
|
|
#include "./stopwatch.h"
|
|
|
|
|
2012-05-12 01:00:57 +02:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// File I/O
|
|
|
|
|
2014-03-12 19:32:16 +01:00
|
|
|
static const size_t kBlockSize = 16384; // default initial size
|
|
|
|
|
|
|
|
int ExUtilReadFromStdin(const uint8_t** data, size_t* data_size) {
|
|
|
|
size_t max_size = 0;
|
|
|
|
size_t size = 0;
|
|
|
|
uint8_t* input = NULL;
|
|
|
|
|
|
|
|
if (data == NULL || data_size == NULL) return 0;
|
|
|
|
*data = NULL;
|
|
|
|
*data_size = 0;
|
|
|
|
|
|
|
|
while (!feof(stdin)) {
|
|
|
|
// We double the buffer size each time and read as much as possible.
|
|
|
|
const size_t extra_size = (max_size == 0) ? kBlockSize : max_size;
|
|
|
|
void* const new_data = realloc(input, max_size + extra_size);
|
|
|
|
if (new_data == NULL) goto Error;
|
|
|
|
input = (uint8_t*)new_data;
|
|
|
|
max_size += extra_size;
|
|
|
|
size += fread(input + size, 1, extra_size, stdin);
|
|
|
|
if (size < max_size) break;
|
|
|
|
}
|
|
|
|
if (ferror(stdin)) goto Error;
|
|
|
|
*data = input;
|
|
|
|
*data_size = size;
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
Error:
|
|
|
|
free(input);
|
|
|
|
fprintf(stderr, "Could not read from stdin\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-12 01:00:57 +02:00
|
|
|
int ExUtilReadFile(const char* const file_name,
|
|
|
|
const uint8_t** data, size_t* data_size) {
|
|
|
|
int ok;
|
|
|
|
void* file_data;
|
|
|
|
size_t file_size;
|
|
|
|
FILE* in;
|
2014-03-12 19:32:16 +01:00
|
|
|
const int from_stdin = (file_name == NULL) || !strcmp(file_name, "-");
|
|
|
|
|
|
|
|
if (from_stdin) return ExUtilReadFromStdin(data, data_size);
|
2012-05-12 01:00:57 +02:00
|
|
|
|
2014-03-12 19:32:16 +01:00
|
|
|
if (data == NULL || data_size == NULL) return 0;
|
2012-05-12 01:00:57 +02:00
|
|
|
*data = NULL;
|
|
|
|
*data_size = 0;
|
|
|
|
|
|
|
|
in = fopen(file_name, "rb");
|
|
|
|
if (in == NULL) {
|
|
|
|
fprintf(stderr, "cannot open input file '%s'\n", file_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
fseek(in, 0, SEEK_END);
|
|
|
|
file_size = ftell(in);
|
|
|
|
fseek(in, 0, SEEK_SET);
|
|
|
|
file_data = malloc(file_size);
|
|
|
|
if (file_data == NULL) return 0;
|
|
|
|
ok = (fread(file_data, file_size, 1, in) == 1);
|
|
|
|
fclose(in);
|
|
|
|
|
|
|
|
if (!ok) {
|
2013-03-21 00:59:35 +01:00
|
|
|
fprintf(stderr, "Could not read %d bytes of data from file %s\n",
|
|
|
|
(int)file_size, file_name);
|
2012-05-12 01:00:57 +02:00
|
|
|
free(file_data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*data = (uint8_t*)file_data;
|
|
|
|
*data_size = file_size;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-11-07 23:41:15 +01:00
|
|
|
int ExUtilWriteFile(const char* const file_name,
|
|
|
|
const uint8_t* data, size_t data_size) {
|
|
|
|
int ok;
|
|
|
|
FILE* out;
|
2014-03-12 19:32:16 +01:00
|
|
|
const int to_stdout = (file_name == NULL) || !strcmp(file_name, "-");
|
2012-11-07 23:41:15 +01:00
|
|
|
|
2014-03-12 19:32:16 +01:00
|
|
|
if (data == NULL) {
|
2012-11-07 23:41:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-03-12 19:32:16 +01:00
|
|
|
out = to_stdout ? stdout : fopen(file_name, "wb");
|
2012-11-07 23:41:15 +01:00
|
|
|
if (out == NULL) {
|
|
|
|
fprintf(stderr, "Error! Cannot open output file '%s'\n", file_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ok = (fwrite(data, data_size, 1, out) == 1);
|
2014-03-12 19:32:16 +01:00
|
|
|
if (out != stdout) fclose(out);
|
2012-11-07 23:41:15 +01:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2014-04-23 04:33:22 +02:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// WebP decoding
|
|
|
|
|
|
|
|
static const char* const kStatusMessages[] = {
|
|
|
|
"OK", "OUT_OF_MEMORY", "INVALID_PARAM", "BITSTREAM_ERROR",
|
|
|
|
"UNSUPPORTED_FEATURE", "SUSPENDED", "USER_ABORT", "NOT_ENOUGH_DATA"
|
|
|
|
};
|
|
|
|
|
2014-04-26 23:26:13 +02:00
|
|
|
static void PrintAnimationWarning(const WebPDecoderConfig* const config) {
|
|
|
|
if (config->input.has_animation) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Error! Decoding of an animated WebP file is not supported.\n"
|
|
|
|
" Use webpmux to extract the individual frames or\n"
|
|
|
|
" vwebp to view this image.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-23 04:33:22 +02:00
|
|
|
void ExUtilPrintWebPError(const char* const in_file, int status) {
|
|
|
|
fprintf(stderr, "Decoding of %s failed.\n", in_file);
|
|
|
|
fprintf(stderr, "Status: %d", status);
|
|
|
|
if (status >= VP8_STATUS_OK && status <= VP8_STATUS_NOT_ENOUGH_DATA) {
|
|
|
|
fprintf(stderr, "(%s)", kStatusMessages[status]);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int ExUtilLoadWebP(const char* const in_file,
|
|
|
|
const uint8_t** data, size_t* data_size,
|
|
|
|
WebPBitstreamFeatures* bitstream) {
|
|
|
|
VP8StatusCode status;
|
2014-04-26 10:10:52 +02:00
|
|
|
WebPBitstreamFeatures local_features;
|
2014-04-23 04:33:22 +02:00
|
|
|
if (!ExUtilReadFile(in_file, data, data_size)) return 0;
|
|
|
|
|
2014-04-26 10:10:52 +02:00
|
|
|
if (bitstream == NULL) {
|
|
|
|
bitstream = &local_features;
|
|
|
|
}
|
|
|
|
|
2014-04-23 04:33:22 +02:00
|
|
|
status = WebPGetFeatures(*data, *data_size, bitstream);
|
|
|
|
if (status != VP8_STATUS_OK) {
|
|
|
|
free((void*)*data);
|
|
|
|
*data = NULL;
|
|
|
|
*data_size = 0;
|
|
|
|
ExUtilPrintWebPError(in_file, status);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-26 23:26:13 +02:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2014-04-23 04:33:22 +02:00
|
|
|
VP8StatusCode ExUtilDecodeWebP(const uint8_t* const data, size_t data_size,
|
2014-04-26 23:26:13 +02:00
|
|
|
int verbose, WebPDecoderConfig* const config) {
|
2014-04-23 04:33:22 +02:00
|
|
|
Stopwatch stop_watch;
|
|
|
|
VP8StatusCode status = VP8_STATUS_OK;
|
2014-04-26 23:26:13 +02:00
|
|
|
if (config == NULL) return VP8_STATUS_INVALID_PARAM;
|
|
|
|
|
|
|
|
PrintAnimationWarning(config);
|
|
|
|
|
|
|
|
StopwatchReset(&stop_watch);
|
|
|
|
|
|
|
|
// Decoding call.
|
|
|
|
status = WebPDecode(data, data_size, config);
|
2014-04-23 04:33:22 +02:00
|
|
|
|
|
|
|
if (verbose) {
|
2014-04-26 23:26:13 +02:00
|
|
|
const double decode_time = StopwatchReadAndReset(&stop_watch);
|
|
|
|
fprintf(stderr, "Time to decode picture: %.3fs\n", decode_time);
|
2014-04-23 04:33:22 +02:00
|
|
|
}
|
2014-04-26 23:26:13 +02:00
|
|
|
return status;
|
|
|
|
}
|
2014-04-23 04:33:22 +02:00
|
|
|
|
2014-04-26 23:26:13 +02:00
|
|
|
VP8StatusCode ExUtilDecodeWebPIncremental(
|
|
|
|
const uint8_t* const data, size_t data_size,
|
|
|
|
int verbose, WebPDecoderConfig* const config) {
|
|
|
|
Stopwatch stop_watch;
|
|
|
|
VP8StatusCode status = VP8_STATUS_OK;
|
|
|
|
if (config == NULL) return VP8_STATUS_INVALID_PARAM;
|
|
|
|
|
|
|
|
PrintAnimationWarning(config);
|
|
|
|
|
|
|
|
StopwatchReset(&stop_watch);
|
2014-04-23 04:33:22 +02:00
|
|
|
|
|
|
|
// Decoding call.
|
2014-04-26 23:26:13 +02:00
|
|
|
{
|
2014-04-23 04:33:22 +02:00
|
|
|
WebPIDecoder* const idec = WebPIDecode(data, data_size, config);
|
|
|
|
if (idec == NULL) {
|
|
|
|
fprintf(stderr, "Failed during WebPINewDecoder().\n");
|
|
|
|
return VP8_STATUS_OUT_OF_MEMORY;
|
|
|
|
} else {
|
|
|
|
status = WebPIUpdate(idec, data, data_size);
|
|
|
|
WebPIDelete(idec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (verbose) {
|
|
|
|
const double decode_time = StopwatchReadAndReset(&stop_watch);
|
|
|
|
fprintf(stderr, "Time to decode picture: %.3fs\n", decode_time);
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|