mjpegenc: add a limit for maximum supported resolution
jpeg does not allow more than 65000 pixels for width and height Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
320e537baf
commit
d2581dcca6
@ -48,6 +48,11 @@ av_cold int ff_mjpeg_encode_init(MpegEncContext *s)
|
||||
{
|
||||
MJpegContext *m;
|
||||
|
||||
if (s->width > 65500 || s->height > 65500) {
|
||||
av_log(s, AV_LOG_ERROR, "JPEG does not support resolutions above 65500x65500\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
m = av_malloc(sizeof(MJpegContext));
|
||||
if (!m)
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user