mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 16:06:49 +02:00
fix alpha decode
- remove left-over WEBP_EXPERIMENTAL_FEATURES #ifdef Change-Id: I2b91ccd2e2b3ebea63d5f698f90206feec30a4db
This commit is contained in:
parent
60942c8cea
commit
721f3f48e7
@ -365,7 +365,6 @@ int VP8FinishRow(VP8Decoder* const dec, VP8Io* io) {
|
|||||||
y_end = io->crop_bottom; // make sure we don't overflow on last row.
|
y_end = io->crop_bottom; // make sure we don't overflow on last row.
|
||||||
}
|
}
|
||||||
io->a = NULL;
|
io->a = NULL;
|
||||||
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
|
||||||
if (dec->alpha_data_) {
|
if (dec->alpha_data_) {
|
||||||
io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
|
io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
|
||||||
if (io->a == NULL) {
|
if (io->a == NULL) {
|
||||||
@ -373,7 +372,6 @@ int VP8FinishRow(VP8Decoder* const dec, VP8Io* io) {
|
|||||||
"Could not decode alpha data.");
|
"Could not decode alpha data.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
if (y_start < io->crop_top) {
|
if (y_start < io->crop_top) {
|
||||||
const int delta_y = io->crop_top - y_start;
|
const int delta_y = io->crop_top - y_start;
|
||||||
y_start = io->crop_top;
|
y_start = io->crop_top;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user