mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-28 14:38:21 +01:00
ad1e163a0d
Change-Id: I5e2462b101e0447a4f15a1455c07131bc97a52dd
46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
// Copyright 2011 Google Inc. All Rights Reserved.
|
|
//
|
|
// This code is licensed under the same terms as WebM:
|
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Alpha-plane decompression.
|
|
//
|
|
// Author: Skal (pascal.massimino@gmail.com)
|
|
|
|
#include <stdlib.h>
|
|
#include "./vp8i.h"
|
|
#include "../utils/alpha.h"
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec,
|
|
int row, int num_rows) {
|
|
const int stride = dec->pic_hdr_.width_;
|
|
|
|
if (row < 0 || num_rows < 0 || row + num_rows > dec->pic_hdr_.height_) {
|
|
return NULL; // sanity check.
|
|
}
|
|
|
|
if (row == 0) {
|
|
// Decode everything during the first call.
|
|
if (!DecodeAlpha(dec->alpha_data_, (size_t)dec->alpha_data_size_,
|
|
dec->pic_hdr_.width_, dec->pic_hdr_.height_, stride,
|
|
dec->alpha_plane_)) {
|
|
return NULL; // Error.
|
|
}
|
|
}
|
|
|
|
// Return a pointer to the current decoded row.
|
|
return dec->alpha_plane_ + row * stride;
|
|
}
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
} // extern "C"
|
|
#endif
|