mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-13 15:32:53 +01:00
make alpha-detection loop in IsKeyFrame() in good x/y order
Change-Id: Ifeeb855e66c7b6b849e8584787dc24e7371b1e67
This commit is contained in:
parent
b8b596f6c3
commit
9d5629025c
@ -166,10 +166,10 @@ static int IsKeyFrame(const WebPPicture* const curr,
|
|||||||
|
|
||||||
// If previous canvas (with previous frame disposed) is all transparent,
|
// If previous canvas (with previous frame disposed) is all transparent,
|
||||||
// current frame is a key frame.
|
// current frame is a key frame.
|
||||||
for (i = 0; i < prev->width; ++i) {
|
|
||||||
for (j = 0; j < prev->height; ++j) {
|
for (j = 0; j < prev->height; ++j) {
|
||||||
const uint32_t prev_alpha = (prev->argb[j * prev->argb_stride + i]) >> 24;
|
const uint32_t* const row = &prev->argb[j * prev->argb_stride];
|
||||||
if (prev_alpha != 0) {
|
for (i = 0; i < prev->width; ++i) {
|
||||||
|
if (row[i] & 0xff000000u) { // has alpha?
|
||||||
is_key_frame = 0;
|
is_key_frame = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user