Merge "make alpha-detection loop in IsKeyFrame() in good x/y order"
This commit is contained in:
commit
58ab622437
@ -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* const row = &prev->argb[j * prev->argb_stride];
|
||||||
const uint32_t prev_alpha = (prev->argb[j * prev->argb_stride + i]) >> 24;
|
for (i = 0; i < prev->width; ++i) {
|
||||||
if (prev_alpha != 0) {
|
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