mirror of https://git.ffmpeg.org/ffmpeg.git
lavc: check dimensions for video encoders
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
320ae9fb78
commit
419ade4b61
|
@ -1000,6 +1000,13 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
|
||||||
} else if (avctx->channel_layout) {
|
} else if (avctx->channel_layout) {
|
||||||
avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
|
avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
|
||||||
}
|
}
|
||||||
|
if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||||
|
if (avctx->width <= 0 || avctx->height <= 0) {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
|
||||||
|
ret = AVERROR(EINVAL);
|
||||||
|
goto free_and_end;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
avctx->pts_correction_num_faulty_pts =
|
avctx->pts_correction_num_faulty_pts =
|
||||||
|
|
Loading…
Reference in New Issue