mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
st/va: Enable vaExportSurfaceHandle()
It is present from libva 2.1 (VAAPI 1.1.0 or higher).
Signed-off-by: Mark Thompson <sw@jkqxz.net>
Reviewed-by: Christian König <christian.koenig@amd.com>
(cherry picked from commit 768f1487b0)
This commit is contained in:
parent
825e950aea
commit
19db663cf0
2 changed files with 8 additions and 2 deletions
|
|
@ -89,7 +89,13 @@ static struct VADriverVTable vtable =
|
|||
&vlVaQuerySurfaceAttributes,
|
||||
&vlVaAcquireBufferHandle,
|
||||
&vlVaReleaseBufferHandle,
|
||||
#if 0
|
||||
#if VA_CHECK_VERSION(1, 1, 0)
|
||||
NULL, /* vaCreateMFContext */
|
||||
NULL, /* vaMFAddContext */
|
||||
NULL, /* vaMFReleaseContext */
|
||||
NULL, /* vaMFSubmit */
|
||||
NULL, /* vaCreateBuffer2 */
|
||||
NULL, /* vaQueryProcessingRate */
|
||||
&vlVaExportSurfaceHandle,
|
||||
#endif
|
||||
};
|
||||
|
|
|
|||
|
|
@ -923,7 +923,7 @@ vlVaQueryVideoProcPipelineCaps(VADriverContextP ctx, VAContextID context,
|
|||
return VA_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
#if 0
|
||||
#if VA_CHECK_VERSION(1, 1, 0)
|
||||
VAStatus
|
||||
vlVaExportSurfaceHandle(VADriverContextP ctx,
|
||||
VASurfaceID surface_id,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue