lavfi/framepool: use av_image_check_size2().

Allow filters to handle larger frames.
This commit is contained in:
Nicolas George 2017-11-01 21:38:39 +01:00
parent 345e7072ab
commit d5995c531d
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ FFFramePool *ff_frame_pool_video_init(AVBufferRef* (*alloc)(int size),
pool->format = format;
pool->align = align;
if ((ret = av_image_check_size(width, height, 0, NULL)) < 0) {
if ((ret = av_image_check_size2(width, height, INT64_MAX, format, 0, NULL)) < 0) {
goto fail;
}