Commit e222cfef authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '4d8c28de'

* commit '4d8c28de':
  imgutils: make systematic palette opaque.

Conflicts:
	libavutil/imgutils.c

See: 4d8c28deMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents e6a08464 4d8c28de
......@@ -181,7 +181,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) + (0xFFU<<24);
pal[i] = b + (g << 8) + (r << 16) + (0xFFU << 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