mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-15 21:39:59 +02:00
Alpha unfilter for given set of rows
Support reconstruction of small number of rows at a time. Change-Id: Ief1bc78c7ad011ec6df856551f3beb5f907fd8e0
This commit is contained in:
@ -75,7 +75,7 @@ static int DecodeAlpha(const uint8_t* data, size_t data_size,
|
||||
if (unfilter_func != NULL) {
|
||||
// TODO(vikas): Implement on-the-fly decoding & filter mechanism to decode
|
||||
// and apply filter per image-row.
|
||||
unfilter_func(width, height, width, output);
|
||||
unfilter_func(width, height, width, 0, height, output);
|
||||
}
|
||||
if (pre_processing == ALPHA_PREPROCESSED_LEVELS) {
|
||||
ok = DequantizeLevels(output, width, height);
|
||||
|
Reference in New Issue
Block a user