avcodec/dnxhdenc: interlaced is not supported in DNxHR

Fixes #7263.
This commit is contained in:
Paul B Mahol 2018-09-06 13:43:20 +02:00
parent 237bbf6678
commit a77c2df5cc

View File

@ -473,6 +473,12 @@ static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
ctx->m.mb_height /= 2;
}
if (ctx->interlaced && ctx->profile != FF_PROFILE_DNXHD) {
av_log(avctx, AV_LOG_ERROR,
"Interlaced encoding is not supported for DNxHR profiles.\n");
return AVERROR(EINVAL);
}
ctx->m.mb_num = ctx->m.mb_height * ctx->m.mb_width;
if (ctx->cid_table->frame_size == DNXHD_VARIABLE) {