diff options
author | Eric Lasota <ejlasota@gmail.com> | 2014-07-06 15:42:43 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-06 23:34:58 +0200 |
commit | 8be23d424feea50d4ee892cdbdd6abd9a807709f (patch) | |
tree | f551634ca92f3d4a1e02da9309593825ce654553 /libavcodec/roqvideodec.c | |
parent | 064945b3aa7c06d998d730e9f7e385bcdedbd86d (diff) | |
download | ffmpeg-8be23d424feea50d4ee892cdbdd6abd9a807709f.tar.gz |
avcodec/roqvideo: use JPEG color range
Signed-off-by: ejlasota <ejlasota@gmail.com>
Also update fate test checksums
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/roqvideodec.c')
-rw-r--r-- | libavcodec/roqvideodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/roqvideodec.c b/libavcodec/roqvideodec.c index 322345ef1c..413b66d233 100644 --- a/libavcodec/roqvideodec.c +++ b/libavcodec/roqvideodec.c @@ -189,7 +189,7 @@ static av_cold int roq_decode_init(AVCodecContext *avctx) return AVERROR(ENOMEM); } - avctx->pix_fmt = AV_PIX_FMT_YUV444P; + avctx->pix_fmt = AV_PIX_FMT_YUVJ444P; return 0; } |