Browse Source

ljpeg: check color_range

tags/n2.3
Vittorio Giovara 12 years ago
parent
commit
bf0d7da7cb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/ljpegenc.c

+ 2
- 1
libavcodec/ljpegenc.c View 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 "


Loading…
Cancel
Save