From 9219a602f150d5fc3b5f8e01e0fc250eff91eac3 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Sat, 6 Sep 2008 13:06:36 +0200 Subject: [PATCH] Enabled ffmpeg PAL8 support (fix #2000) --- modules/codec/avcodec/chroma.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/codec/avcodec/chroma.h b/modules/codec/avcodec/chroma.h index 3b1d67c307..542bcf99e1 100644 --- a/modules/codec/avcodec/chroma.h +++ b/modules/codec/avcodec/chroma.h @@ -94,6 +94,10 @@ static const struct #endif {VLC_FOURCC('G','R','E','Y'), PIX_FMT_GRAY8, 0, 0, 0}, + /* Paletized RGB */ + {VLC_FOURCC('R','G','B','P'), PIX_FMT_PAL8, 0, 0, 0}, + + { 0, 0, 0, 0, 0 } }; -- 2.39.2