2012-01-06 23:49:06 +01:00
|
|
|
// Copyright 2011 Google Inc. All Rights Reserved.
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
//
|
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.
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Alpha-plane decompression.
|
|
|
|
//
|
|
|
|
// Author: Skal (pascal.massimino@gmail.com)
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2017-10-07 23:15:11 +02:00
|
|
|
#include "src/dec/alphai_dec.h"
|
|
|
|
#include "src/dec/vp8i_dec.h"
|
|
|
|
#include "src/dec/vp8li_dec.h"
|
|
|
|
#include "src/dsp/dsp.h"
|
|
|
|
#include "src/utils/quant_levels_dec_utils.h"
|
|
|
|
#include "src/utils/utils.h"
|
|
|
|
#include "src/webp/format_constants.h"
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
|
2012-05-21 15:22:06 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2013-06-12 01:04:54 +02:00
|
|
|
// ALPHDecoder object.
|
|
|
|
|
2016-04-04 15:50:57 +02:00
|
|
|
// Allocates a new alpha decoder instance.
|
|
|
|
static ALPHDecoder* ALPHNew(void) {
|
2014-03-27 23:27:32 +01:00
|
|
|
ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec));
|
2013-06-12 01:04:54 +02:00
|
|
|
return dec;
|
|
|
|
}
|
|
|
|
|
2016-04-04 15:50:57 +02:00
|
|
|
// Clears and deallocates an alpha decoder instance.
|
|
|
|
static void ALPHDelete(ALPHDecoder* const dec) {
|
2013-06-12 01:04:54 +02:00
|
|
|
if (dec != NULL) {
|
|
|
|
VP8LDelete(dec->vp8l_dec_);
|
|
|
|
dec->vp8l_dec_ = NULL;
|
2014-03-27 23:27:32 +01:00
|
|
|
WebPSafeFree(dec);
|
2013-06-12 01:04:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Decoding.
|
|
|
|
|
|
|
|
// Initialize alpha decoding by parsing the alpha header and decoding the image
|
|
|
|
// header for alpha data stored using lossless compression.
|
|
|
|
// Returns false in case of error in alpha header (data too short, invalid
|
|
|
|
// compression method or filter, error in lossless header data etc).
|
|
|
|
static int ALPHInit(ALPHDecoder* const dec, const uint8_t* data,
|
2016-04-04 15:50:57 +02:00
|
|
|
size_t data_size, const VP8Io* const src_io,
|
|
|
|
uint8_t* output) {
|
2012-05-21 15:22:06 +02:00
|
|
|
int ok = 0;
|
2013-05-03 03:24:46 +02:00
|
|
|
const uint8_t* const alpha_data = data + ALPHA_HEADER_LEN;
|
|
|
|
const size_t alpha_data_size = data_size - ALPHA_HEADER_LEN;
|
2013-06-12 01:04:54 +02:00
|
|
|
int rsrv;
|
2016-04-04 15:50:57 +02:00
|
|
|
VP8Io* const io = &dec->io_;
|
2012-05-21 15:22:06 +02:00
|
|
|
|
2016-04-04 15:50:57 +02:00
|
|
|
assert(data != NULL && output != NULL && src_io != NULL);
|
2012-05-21 15:22:06 +02:00
|
|
|
|
2016-04-07 10:21:02 +02:00
|
|
|
VP8FiltersInit();
|
|
|
|
dec->output_ = output;
|
2016-04-04 15:50:57 +02:00
|
|
|
dec->width_ = src_io->width;
|
|
|
|
dec->height_ = src_io->height;
|
|
|
|
assert(dec->width_ > 0 && dec->height_ > 0);
|
2013-06-12 01:04:54 +02:00
|
|
|
|
2012-05-21 15:22:06 +02:00
|
|
|
if (data_size <= ALPHA_HEADER_LEN) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-12 01:04:54 +02:00
|
|
|
dec->method_ = (data[0] >> 0) & 0x03;
|
2016-10-05 09:39:08 +02:00
|
|
|
dec->filter_ = (WEBP_FILTER_TYPE)((data[0] >> 2) & 0x03);
|
2013-06-12 01:04:54 +02:00
|
|
|
dec->pre_processing_ = (data[0] >> 4) & 0x03;
|
2012-05-22 11:36:22 +02:00
|
|
|
rsrv = (data[0] >> 6) & 0x03;
|
2013-06-12 01:04:54 +02:00
|
|
|
if (dec->method_ < ALPHA_NO_COMPRESSION ||
|
|
|
|
dec->method_ > ALPHA_LOSSLESS_COMPRESSION ||
|
2016-04-07 10:21:02 +02:00
|
|
|
dec->filter_ >= WEBP_FILTER_LAST ||
|
2013-06-12 01:04:54 +02:00
|
|
|
dec->pre_processing_ > ALPHA_PREPROCESSED_LEVELS ||
|
2012-05-22 11:36:22 +02:00
|
|
|
rsrv != 0) {
|
2012-05-21 15:22:06 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-04-04 15:50:57 +02:00
|
|
|
// Copy the necessary parameters from src_io to io
|
|
|
|
VP8InitIo(io);
|
|
|
|
WebPInitCustomIo(NULL, io);
|
2016-04-05 19:58:20 +02:00
|
|
|
io->opaque = dec;
|
2016-04-04 15:50:57 +02:00
|
|
|
io->width = src_io->width;
|
|
|
|
io->height = src_io->height;
|
|
|
|
|
|
|
|
io->use_cropping = src_io->use_cropping;
|
|
|
|
io->crop_left = src_io->crop_left;
|
|
|
|
io->crop_right = src_io->crop_right;
|
|
|
|
io->crop_top = src_io->crop_top;
|
|
|
|
io->crop_bottom = src_io->crop_bottom;
|
|
|
|
// No need to copy the scaling parameters.
|
|
|
|
|
2016-04-05 19:58:20 +02:00
|
|
|
if (dec->method_ == ALPHA_NO_COMPRESSION) {
|
|
|
|
const size_t alpha_decoded_size = dec->width_ * dec->height_;
|
|
|
|
ok = (alpha_data_size >= alpha_decoded_size);
|
|
|
|
} else {
|
|
|
|
assert(dec->method_ == ALPHA_LOSSLESS_COMPRESSION);
|
|
|
|
ok = VP8LDecodeAlphaHeader(dec, alpha_data, alpha_data_size);
|
|
|
|
}
|
|
|
|
|
2013-06-12 01:04:54 +02:00
|
|
|
return ok;
|
|
|
|
}
|
2012-05-21 15:22:06 +02:00
|
|
|
|
2013-06-12 01:04:54 +02:00
|
|
|
// Decodes, unfilters and dequantizes *at least* 'num_rows' rows of alpha
|
2013-11-27 04:21:14 +01:00
|
|
|
// starting from row number 'row'. It assumes that rows up to (row - 1) have
|
2013-06-12 01:04:54 +02:00
|
|
|
// already been decoded.
|
|
|
|
// Returns false in case of bitstream error.
|
|
|
|
static int ALPHDecode(VP8Decoder* const dec, int row, int num_rows) {
|
|
|
|
ALPHDecoder* const alph_dec = dec->alph_dec_;
|
|
|
|
const int width = alph_dec->width_;
|
2016-04-06 13:43:01 +02:00
|
|
|
const int height = alph_dec->io_.crop_bottom;
|
2013-06-12 01:04:54 +02:00
|
|
|
if (alph_dec->method_ == ALPHA_NO_COMPRESSION) {
|
2016-04-14 19:12:09 +02:00
|
|
|
int y;
|
|
|
|
const uint8_t* prev_line = dec->alpha_prev_line_;
|
|
|
|
const uint8_t* deltas = dec->alpha_data_ + ALPHA_HEADER_LEN + row * width;
|
|
|
|
uint8_t* dst = dec->alpha_plane_ + row * width;
|
|
|
|
assert(deltas <= &dec->alpha_data_[dec->alpha_data_size_]);
|
|
|
|
if (alph_dec->filter_ != WEBP_FILTER_NONE) {
|
|
|
|
assert(WebPUnfilters[alph_dec->filter_] != NULL);
|
|
|
|
for (y = 0; y < num_rows; ++y) {
|
|
|
|
WebPUnfilters[alph_dec->filter_](prev_line, deltas, dst, width);
|
|
|
|
prev_line = dst;
|
|
|
|
dst += width;
|
|
|
|
deltas += width;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (y = 0; y < num_rows; ++y) {
|
|
|
|
memcpy(dst, deltas, width * sizeof(*dst));
|
|
|
|
prev_line = dst;
|
|
|
|
dst += width;
|
|
|
|
deltas += width;
|
|
|
|
}
|
2016-04-05 19:58:20 +02:00
|
|
|
}
|
2016-04-14 19:12:09 +02:00
|
|
|
dec->alpha_prev_line_ = prev_line;
|
2013-06-12 01:04:54 +02:00
|
|
|
} else { // alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION
|
|
|
|
assert(alph_dec->vp8l_dec_ != NULL);
|
|
|
|
if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
|
|
|
|
return 0;
|
2012-05-21 15:22:06 +02:00
|
|
|
}
|
2013-06-12 01:04:54 +02:00
|
|
|
}
|
|
|
|
|
2016-04-06 13:43:01 +02:00
|
|
|
if (row + num_rows >= height) {
|
2013-06-12 01:04:54 +02:00
|
|
|
dec->is_alpha_decoded_ = 1;
|
|
|
|
}
|
|
|
|
return 1;
|
2012-05-21 15:22:06 +02:00
|
|
|
}
|
|
|
|
|
2016-04-04 15:50:57 +02:00
|
|
|
static int AllocateAlphaPlane(VP8Decoder* const dec, const VP8Io* const io) {
|
|
|
|
const int stride = io->width;
|
2016-04-06 13:43:01 +02:00
|
|
|
const int height = io->crop_bottom;
|
2016-04-04 15:50:57 +02:00
|
|
|
const uint64_t alpha_size = (uint64_t)stride * height;
|
|
|
|
assert(dec->alpha_plane_mem_ == NULL);
|
|
|
|
dec->alpha_plane_mem_ =
|
|
|
|
(uint8_t*)WebPSafeMalloc(alpha_size, sizeof(*dec->alpha_plane_));
|
2016-04-06 13:43:01 +02:00
|
|
|
if (dec->alpha_plane_mem_ == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-04-04 15:50:57 +02:00
|
|
|
dec->alpha_plane_ = dec->alpha_plane_mem_;
|
2016-04-14 19:12:09 +02:00
|
|
|
dec->alpha_prev_line_ = NULL;
|
2016-04-04 15:50:57 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebPDeallocateAlphaMemory(VP8Decoder* const dec) {
|
|
|
|
assert(dec != NULL);
|
|
|
|
WebPSafeFree(dec->alpha_plane_mem_);
|
|
|
|
dec->alpha_plane_mem_ = NULL;
|
|
|
|
dec->alpha_plane_ = NULL;
|
|
|
|
ALPHDelete(dec->alph_dec_);
|
|
|
|
dec->alph_dec_ = NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2013-06-12 01:04:54 +02:00
|
|
|
// Main entry point.
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
|
|
|
|
const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec,
|
2016-03-18 15:36:58 +01:00
|
|
|
const VP8Io* const io,
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
int row, int num_rows) {
|
2016-03-31 08:18:54 +02:00
|
|
|
const int width = io->width;
|
|
|
|
const int height = io->crop_bottom;
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
|
2016-03-18 15:36:58 +01:00
|
|
|
assert(dec != NULL && io != NULL);
|
|
|
|
|
2016-04-05 11:21:21 +02:00
|
|
|
if (row < 0 || num_rows <= 0 || row + num_rows > height) {
|
2011-12-01 04:27:36 +01:00
|
|
|
return NULL; // sanity check.
|
|
|
|
}
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
|
2016-04-01 09:59:39 +02:00
|
|
|
if (!dec->is_alpha_decoded_) {
|
|
|
|
if (dec->alph_dec_ == NULL) { // Initialize decoder.
|
|
|
|
dec->alph_dec_ = ALPHNew();
|
|
|
|
if (dec->alph_dec_ == NULL) return NULL;
|
2016-04-04 15:50:57 +02:00
|
|
|
if (!AllocateAlphaPlane(dec, io)) goto Error;
|
2016-04-01 09:59:39 +02:00
|
|
|
if (!ALPHInit(dec->alph_dec_, dec->alpha_data_, dec->alpha_data_size_,
|
2016-04-04 15:50:57 +02:00
|
|
|
io, dec->alpha_plane_)) {
|
|
|
|
goto Error;
|
2016-04-01 09:59:39 +02:00
|
|
|
}
|
|
|
|
// if we allowed use of alpha dithering, check whether it's needed at all
|
|
|
|
if (dec->alph_dec_->pre_processing_ != ALPHA_PREPROCESSED_LEVELS) {
|
2016-04-05 11:21:21 +02:00
|
|
|
dec->alpha_dithering_ = 0; // disable dithering
|
2016-04-01 09:59:39 +02:00
|
|
|
} else {
|
2016-04-05 11:21:21 +02:00
|
|
|
num_rows = height - row; // decode everything in one pass
|
2016-04-01 09:59:39 +02:00
|
|
|
}
|
2014-06-14 00:06:16 +02:00
|
|
|
}
|
2013-06-12 01:04:54 +02:00
|
|
|
|
|
|
|
assert(dec->alph_dec_ != NULL);
|
2016-04-05 11:21:21 +02:00
|
|
|
assert(row + num_rows <= height);
|
2016-04-04 15:50:57 +02:00
|
|
|
if (!ALPHDecode(dec, row, num_rows)) goto Error;
|
|
|
|
|
|
|
|
if (dec->is_alpha_decoded_) { // finished?
|
2013-06-12 01:04:54 +02:00
|
|
|
ALPHDelete(dec->alph_dec_);
|
|
|
|
dec->alph_dec_ = NULL;
|
2016-04-04 15:50:57 +02:00
|
|
|
if (dec->alpha_dithering_ > 0) {
|
2016-04-05 11:21:21 +02:00
|
|
|
uint8_t* const alpha = dec->alpha_plane_ + io->crop_top * width
|
|
|
|
+ io->crop_left;
|
|
|
|
if (!WebPDequantizeLevels(alpha,
|
|
|
|
io->crop_right - io->crop_left,
|
|
|
|
io->crop_bottom - io->crop_top,
|
|
|
|
width, dec->alpha_dithering_)) {
|
2016-04-04 15:50:57 +02:00
|
|
|
goto Error;
|
|
|
|
}
|
|
|
|
}
|
2013-06-12 01:04:54 +02:00
|
|
|
}
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
}
|
2016-04-04 15:50:57 +02:00
|
|
|
|
2011-12-01 04:27:36 +01:00
|
|
|
// Return a pointer to the current decoded row.
|
2013-05-03 03:24:46 +02:00
|
|
|
return dec->alpha_plane_ + row * width;
|
2016-04-04 15:50:57 +02:00
|
|
|
|
|
|
|
Error:
|
|
|
|
WebPDeallocateAlphaMemory(dec);
|
|
|
|
return NULL;
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
}
|