Commit c25c7ba8 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Make systematic palette opaque.

parent 8e88145d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment