mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
Add PIX_FMT_PAL flag to BGR8, BGR4_BYTE, RGB8, and RGB4_BYTE formats.
Originally committed as revision 20434 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ad9feac9fb
commit
d71ad089ef
@ -215,6 +215,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
{0,0,1,3,2}, /* G */
|
||||
{0,0,1,0,2}, /* R */
|
||||
},
|
||||
.flags = PIX_FMT_PAL,
|
||||
},
|
||||
[PIX_FMT_BGR4] = {
|
||||
.name = "bgr4",
|
||||
@ -238,6 +239,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
{0,0,1,1,1}, /* G */
|
||||
{0,0,1,0,0}, /* R */
|
||||
},
|
||||
.flags = PIX_FMT_PAL,
|
||||
},
|
||||
[PIX_FMT_RGB8] = {
|
||||
.name = "rgb8",
|
||||
@ -249,6 +251,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
{0,0,1,3,2}, /* G */
|
||||
{0,0,1,0,2}, /* B */
|
||||
},
|
||||
.flags = PIX_FMT_PAL,
|
||||
},
|
||||
[PIX_FMT_RGB4] = {
|
||||
.name = "rgb4",
|
||||
@ -272,6 +275,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
{0,0,1,1,1}, /* G */
|
||||
{0,0,1,0,0}, /* B */
|
||||
},
|
||||
.flags = PIX_FMT_PAL,
|
||||
},
|
||||
[PIX_FMT_NV12] = {
|
||||
.name = "nv12",
|
||||
|
Loading…
Reference in New Issue
Block a user