From f9a13174794a28d1c5a81611552212185b2b488d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 9 Oct 2014 05:16:45 +0200 Subject: [PATCH] avcodec/utils: Add missing AV_PIX_FMT_YUVJ411P to color_range override code. Signed-off-by: Michael Niedermayer --- libavcodec/utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 9dc1c11c35..50fcf6fa4c 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1531,6 +1531,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code goto free_and_end; } if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P || + avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P || avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P || avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P || avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)