mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
Make PNG produce correct 8-bit pictures
Originally committed as revision 6689 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4ec0beaa59
commit
ab9ce19170
@ -850,7 +850,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
|
||||
for(i = 0; i < 256; i++) {
|
||||
v = palette[i];
|
||||
alpha = v >> 24;
|
||||
if (alpha != 0xff)
|
||||
if (alpha && alpha != 0xff)
|
||||
has_alpha = 1;
|
||||
*alpha_ptr++ = alpha;
|
||||
ptr[0] = v >> 16;
|
||||
|
Loading…
Reference in New Issue
Block a user