Skip to content

Commit

Permalink
Merge commit '4d8c28deab2488579f585406110b1be790896e59'
Browse files Browse the repository at this point in the history
* commit '4d8c28deab2488579f585406110b1be790896e59':
  imgutils: make systematic palette opaque.

Conflicts:
	libavutil/imgutils.c

See: 4d8c28d
Merged-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed May 27, 2014
2 parents e6a0846 + 4d8c28d commit e222cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavutil/imgutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e222cfe

Please sign in to comment.