sws: move updating the palette higher up

It does not interact in any way with the code setting up the image
pointers/strides, so it should not be intermixed with it.
pull/359/head
Anton Khirnov 4 years ago
parent d6649d9a3b
commit 37c0fe49b7
  1. 6
      libswscale/swscale.c

@ -911,6 +911,9 @@ int attribute_align_arg sws_scale(struct SwsContext *c,
for (i = 0; i < 4; i++)
memset(c->dither_error[i], 0, sizeof(c->dither_error[0][0]) * (c->dstW+2));
if (usePal(c->srcFormat))
update_palette(c, (const uint32_t *)srcSlice[1]);
memcpy(src2, srcSlice, sizeof(src2));
memcpy(dst2, dst, sizeof(dst2));
memcpy(srcStride2, srcStride, sizeof(srcStride2));
@ -925,9 +928,6 @@ int attribute_align_arg sws_scale(struct SwsContext *c,
c->sliceDir = (srcSliceY == 0) ? 1 : -1;
}
if (usePal(c->srcFormat))
update_palette(c, (const uint32_t *)srcSlice[1]);
if (c->src0Alpha && !c->dst0Alpha && isALPHA(c->dstFormat)) {
uint8_t *base;
int x,y;

Loading…
Cancel
Save