mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 16:06:49 +02:00
Merge "Remove assigned-but-not-used variable "br""
This commit is contained in:
commit
421eb99db3
@ -368,13 +368,11 @@ static VP8StatusCode DecodePartition0(WebPIDecoder* const idec) {
|
|||||||
|
|
||||||
// Remaining partitions
|
// Remaining partitions
|
||||||
static VP8StatusCode DecodeRemaining(WebPIDecoder* const idec) {
|
static VP8StatusCode DecodeRemaining(WebPIDecoder* const idec) {
|
||||||
VP8BitReader* br;
|
|
||||||
VP8Decoder* const dec = idec->dec_;
|
VP8Decoder* const dec = idec->dec_;
|
||||||
VP8Io* const io = &idec->io_;
|
VP8Io* const io = &idec->io_;
|
||||||
|
|
||||||
assert(dec->ready_);
|
assert(dec->ready_);
|
||||||
|
|
||||||
br = &dec->br_;
|
|
||||||
for (; dec->mb_y_ < dec->mb_h_; ++dec->mb_y_) {
|
for (; dec->mb_y_ < dec->mb_h_; ++dec->mb_y_) {
|
||||||
VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
|
VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
|
||||||
if (dec->mb_x_ == 0) {
|
if (dec->mb_x_ == 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user