Commit 6a9bebb2 authored by stefano's avatar stefano

Add PIX_FMT_PAL flag to BGR8, BGR4_BYTE, RGB8, and RGB4_BYTE formats.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20434 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3414dc76
......@@ -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",
......
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