mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 00:16:50 +02:00
dec/vp8l/DecodeAlphaData: remove redundant cast
'pos' has been an int since: c34307a fix some VS9 warnings about type conversion Change-Id: I56195d4f15278fa268be52a7bfe24b94554890c4
This commit is contained in:
parent
90fcfcd905
commit
77fb41c2f1
@ -960,7 +960,7 @@ static int DecodeAlphaData(VP8LDecoder* const dec, uint8_t* const data,
|
|||||||
dec->status_ = br->eos_ ? VP8_STATUS_SUSPENDED
|
dec->status_ = br->eos_ ? VP8_STATUS_SUSPENDED
|
||||||
: VP8_STATUS_BITSTREAM_ERROR;
|
: VP8_STATUS_BITSTREAM_ERROR;
|
||||||
} else {
|
} else {
|
||||||
dec->last_pixel_ = (int)pos;
|
dec->last_pixel_ = pos;
|
||||||
}
|
}
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user