hwcontext_vaapi: Don't abort on failing to allocate from a fixed-size pool
Cherry-picked from Libav d30719e62de68975cbc7ffd318df03a183037563. Signed-off-by: wm4 <nfxjfg@googlemail.com>
This commit is contained in:
parent
f07492e7fb
commit
2b8151c806
@ -397,6 +397,10 @@ static AVBufferRef *vaapi_pool_alloc(void *opaque, int size)
|
||||
VAStatus vas;
|
||||
AVBufferRef *ref;
|
||||
|
||||
if (hwfc->initial_pool_size > 0 &&
|
||||
avfc->nb_surfaces >= hwfc->initial_pool_size)
|
||||
return NULL;
|
||||
|
||||
vas = vaCreateSurfaces(hwctx->display, ctx->rt_format,
|
||||
hwfc->width, hwfc->height,
|
||||
&surface_id, 1,
|
||||
|
Loading…
x
Reference in New Issue
Block a user