]> git.sesse.net Git - ffmpeg/commitdiff
ljpeg: check color_range
authorVittorio Giovara <vittorio.giovara@gmail.com>
Wed, 12 Mar 2014 13:31:51 +0000 (14:31 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Sun, 16 Mar 2014 22:31:30 +0000 (23:31 +0100)
libavcodec/ljpegenc.c

index 7c1b3bc9206c4092cc6bae73273d4c218d65414a..e111c8c5577e3f951d8a8a827c9fd50e19ef4842 100644 (file)
@@ -266,7 +266,8 @@ static av_cold int ljpeg_encode_init(AVCodecContext *avctx)
 
     if ((avctx->pix_fmt == AV_PIX_FMT_YUV420P ||
          avctx->pix_fmt == AV_PIX_FMT_YUV422P ||
-         avctx->pix_fmt == AV_PIX_FMT_YUV444P) &&
+         avctx->pix_fmt == AV_PIX_FMT_YUV444P ||
+         avctx->color_range == AVCOL_RANGE_MPEG) &&
         avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) {
         av_log(avctx, AV_LOG_ERROR,
                "Limited range YUV is non-standard, set strict_std_compliance to "