diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-05-04 13:57:32 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-05-22 21:18:08 +0200 |
commit | f36d7831d96aeb072db5a2b78892a534d96e288e (patch) | |
tree | e2a629a787b8a7672ffd55444a48a456ec7c4865 /libavutil | |
parent | 3eae9b030cbbdc263f69834b791624613032d548 (diff) | |
download | ffmpeg-f36d7831d96aeb072db5a2b78892a534d96e288e.tar.gz |
pixdesc: mark gray8 as pseudopal
Many functions treat it as such already.
Fixes Bug 499.
CC:libav-stable@libav.org
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 7127d5c365..d5542a61d8 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -231,6 +231,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { .comp = { { 0, 0, 1, 0, 7 }, /* Y */ }, + .flags = PIX_FMT_PSEUDOPAL, }, [AV_PIX_FMT_MONOWHITE] = { .name = "monow", |