Make systematic palette opaque.

pull/3/head
Carl Eugen Hoyos 13 years ago
parent 8e88145d0b
commit c25c7ba87c
  1. 2
      libavutil/imgutils.c

@ -175,7 +175,7 @@ int ff_set_systematic_pal2(uint32_t pal[256], enum PixelFormat pix_fmt)
default:
return AVERROR(EINVAL);
}
pal[i] = b + (g<<8) + (r<<16);
pal[i] = b + (g<<8) + (r<<16) + (0xFF<<24);
}
return 0;

Loading…
Cancel
Save