imgutils: make systematic palette opaque.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
pull/72/head
Carl Eugen Hoyos 13 years ago committed by Anton Khirnov
parent e0d01dc7d7
commit 4d8c28deab
  1. 2
      libavutil/imgutils.c

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

Loading…
Cancel
Save