summaryrefslogtreecommitdiffstats
path: root/video/img_format.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/img_format.c')
-rw-r--r--video/img_format.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/video/img_format.c b/video/img_format.c
index 42c5c9f5ca..f7790aa290 100644
--- a/video/img_format.c
+++ b/video/img_format.c
@@ -212,9 +212,7 @@ struct mp_imgfmt_desc mp_imgfmt_get_desc(int mpfmt)
desc.bytes[p] = desc.bpp[p] / 8;
}
- // PSEUDOPAL is a complete braindeath nightmare, however it seems various
- // parts of FFmpeg expect that it has a palette allocated.
- if (pd->flags & (AV_PIX_FMT_FLAG_PAL | AV_PIX_FMT_FLAG_PSEUDOPAL))
+ if (pd->flags & AV_PIX_FMT_FLAG_PAL)
desc.flags |= MP_IMGFLAG_PAL;
if ((desc.flags & (MP_IMGFLAG_YUV | MP_IMGFLAG_RGB))