From 2a130d4736187efc30191070f7bbde16735c207a Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Wed, 6 Jul 2016 23:06:43 +0200 Subject: [PATCH] Avcodec: map 4:2:0 12bits --- modules/codec/avcodec/chroma.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/codec/avcodec/chroma.c b/modules/codec/avcodec/chroma.c index f1d9b4143a..e26334cc4a 100644 --- a/modules/codec/avcodec/chroma.c +++ b/modules/codec/avcodec/chroma.c @@ -86,6 +86,9 @@ static const struct {VLC_CODEC_I420_9B, AV_PIX_FMT_YUV420P9BE, 0, 0, 0 }, {VLC_CODEC_I420_10L, AV_PIX_FMT_YUV420P10LE, 0, 0, 0 }, {VLC_CODEC_I420_10B, AV_PIX_FMT_YUV420P10BE, 0, 0, 0 }, + {VLC_CODEC_I420_12L, AV_PIX_FMT_YUV420P12LE, 0, 0, 0 }, + {VLC_CODEC_I420_12B, AV_PIX_FMT_YUV420P12BE, 0, 0, 0 }, + {VLC_CODEC_I422_9L, AV_PIX_FMT_YUV422P9LE, 0, 0, 0 }, {VLC_CODEC_I422_9B, AV_PIX_FMT_YUV422P9BE, 0, 0, 0 }, {VLC_CODEC_I422_10L, AV_PIX_FMT_YUV422P10LE, 0, 0, 0 }, -- 2.11.4.GIT