sgi: check maximum supported resolution

Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
pull/64/head
Piotr Bandurski 13 years ago committed by Vittorio Giovara
parent a7dbfcf6cb
commit e7cd53bf66
  1. 6
      libavcodec/sgienc.c

@ -30,6 +30,12 @@
static av_cold int encode_init(AVCodecContext *avctx)
{
if (avctx->width > 65535 || avctx->height > 65535) {
av_log(avctx, AV_LOG_ERROR,
"Unsupported resolution %dx%d.\n", avctx->width, avctx->height);
return AVERROR_INVALIDDATA;
}
avctx->coded_frame = av_frame_alloc();
if (!avctx->coded_frame)
return AVERROR(ENOMEM);

Loading…
Cancel
Save