blob: 964898d79664ccf1c8b1c738ad65c411e0391e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
From 124cea5f0ecb94320502d9f1923df53df61fa9f1 Mon Sep 17 00:00:00 2001
From: Lim Siew Hoon <siew.hoon.lim@intel.com>
Date: Tue, 7 Feb 2023 10:33:49 +0800
Subject: [PATCH] Add missing libva.def
The libva.def is missing from tarball, but from github
it did contains libva.def. Without this libva.def it will
be fail in meson configure the source code, it complain missing
va/libva.def.
This file is importing from:
https://github.com/intel/libva/blob/2.17.0/va/libva.def
Upstream-Status: Backport
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com>
---
va/libva.def | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
create mode 100644 va/libva.def
diff --git a/va/libva.def b/va/libva.def
new file mode 100644
index 0000000..f57896e
--- /dev/null
+++ b/va/libva.def
@@ -0,0 +1,85 @@
+LIBRARY va
+EXPORTS
+ vaInitialize
+ vaErrorStr
+ vaTerminate
+ vaQueryVendorString
+ vaMaxNumProfiles
+ vaMaxNumEntrypoints
+ vaQueryConfigProfiles
+ vaQueryConfigEntrypoints
+ vaGetConfigAttributes
+ vaProfileStr
+ vaEntrypointStr
+ vaConfigAttribTypeStr
+ vaAcquireBufferHandle
+ vaAssociateSubpicture
+ vaBeginPicture
+ vaCreateBuffer
+ vaCreateConfig
+ vaCreateContext
+ vaCreateImage
+ vaCreateSubpicture
+ vaCreateSurfaces
+ vaDeassociateSubpicture
+ vaDeriveImage
+ vaDestroyBuffer
+ vaDestroyConfig
+ vaDestroyContext
+ vaDestroyImage
+ vaDestroySubpicture
+ vaDestroySurfaces
+ vaEndPicture
+ vaGetDisplayAttributes
+ vaGetImage
+ vaMapBuffer
+ vaMaxNumDisplayAttributes
+ vaMaxNumImageFormats
+ vaMaxNumSubpictureFormats
+ vaPutImage
+ vaQueryDisplayAttributes
+ vaQueryImageFormats
+ vaQuerySubpictureFormats
+ vaQuerySurfaceAttributes
+ vaQuerySurfaceStatus
+ vaQueryVideoProcFilterCaps
+ vaQueryVideoProcFilters
+ vaQueryVideoProcPipelineCaps
+ vaReleaseBufferHandle
+ vaRenderPicture
+ vaSetDisplayAttributes
+ vaSetErrorCallback
+ vaSetInfoCallback
+ vaSetSubpictureGlobalAlpha
+ vaSyncSurface
+ vaUnmapBuffer
+ vaSetDriverName
+ vaSyncBuffer
+ vaQueryConfigAttributes
+ vaBufferSetNumElements
+ vaQuerySurfaceError
+ vaSetImagePalette
+ vaSetSubpictureChromakey
+ vaBufferInfo
+ vaLockSurface
+ vaUnlockSurface
+ vaCreateMFContext
+ vaMFAddContext
+ vaMFReleaseContext
+ vaMFSubmit
+ vaCreateBuffer2
+ vaQueryProcessingRate
+ vaExportSurfaceHandle
+ va_newDisplayContext
+ va_newDriverContext
+ vaMaxNumConfigAttributes
+ vaBufferTypeStr
+ vaAttachProtectedSession
+ vaCopy
+ vaCreateProtectedSession
+ vaDestroyProtectedSession
+ vaDetachProtectedSession
+ vaProtectedSessionExecute
+ vaSetSubpictureImage
+ vaStatusStr
+ vaSyncSurface2
--
2.39.0
|