From: Jean-Baptiste Kempf Date: Fri, 21 Oct 2011 13:25:09 +0000 (+0200) Subject: swscale/avcodec: Add I422 9-bit chroma pix_fmt X-Git-Tag: 1.2.0-pre1~117 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8b69f37b61ff8a729ace73b2ee16fe29d877f7a6;p=vlc swscale/avcodec: Add I422 9-bit chroma pix_fmt --- diff --git a/modules/codec/avcodec/chroma.c b/modules/codec/avcodec/chroma.c index fcad6ec818..dc74566e60 100644 --- a/modules/codec/avcodec/chroma.c +++ b/modules/codec/avcodec/chroma.c @@ -89,8 +89,11 @@ static const struct {VLC_CODEC_I420_10L, PIX_FMT_YUV420P10LE, 0, 0, 0 }, {VLC_CODEC_I420_10B, PIX_FMT_YUV420P10BE, 0, 0, 0 }, #endif +#if LIBAVUTIL_VERSION_INT > ((51<<16)+(12<<8)+0) + {VLC_CODEC_I422_9L, PIX_FMT_YUV422P9LE, 0, 0, 0 }, + {VLC_CODEC_I422_9B, PIX_FMT_YUV422P9BE, 0, 0, 0 }, +#endif #if LIBAVUTIL_VERSION_INT >= ((51<<16)+(9<<8)+0) - /* I422 9-bit seems missing */ {VLC_CODEC_I422_10L, PIX_FMT_YUV422P10LE, 0, 0, 0 }, {VLC_CODEC_I422_10B, PIX_FMT_YUV422P10BE, 0, 0, 0 },