diff options
author | Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> | 2013-06-09 00:16:27 +0900 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2013-06-10 09:38:22 +0200 |
commit | 252ee3d39b899f5bf11af4b5d6d7f117f622a9d7 (patch) | |
tree | 8d7015525db6fc2bf25e0aef8be0d1aca3f0fa56 | |
parent | 2578f1efd64f4efc30114c328d1eff9030429e59 (diff) | |
download | ffmpeg-252ee3d39b899f5bf11af4b5d6d7f117f622a9d7.tar.gz |
utvideodec: Set colorspace by codec_tag.
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-rw-r--r-- | libavcodec/utvideodec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c index 129034b84a..bd67f9e548 100644 --- a/libavcodec/utvideodec.c +++ b/libavcodec/utvideodec.c @@ -511,18 +511,22 @@ static av_cold int decode_init(AVCodecContext *avctx) case MKTAG('U', 'L', 'Y', '0'): c->planes = 3; avctx->pix_fmt = AV_PIX_FMT_YUV420P; + avctx->colorspace = AVCOL_SPC_BT470BG; break; case MKTAG('U', 'L', 'Y', '2'): c->planes = 3; avctx->pix_fmt = AV_PIX_FMT_YUV422P; + avctx->colorspace = AVCOL_SPC_BT470BG; break; case MKTAG('U', 'L', 'H', '0'): c->planes = 3; avctx->pix_fmt = AV_PIX_FMT_YUV420P; + avctx->colorspace = AVCOL_SPC_BT709; break; case MKTAG('U', 'L', 'H', '2'): c->planes = 3; avctx->pix_fmt = AV_PIX_FMT_YUV422P; + avctx->colorspace = AVCOL_SPC_BT709; break; default: av_log(avctx, AV_LOG_ERROR, "Unknown Ut Video FOURCC provided (%08X)\n", |