Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libva
Commits
9664f0b2
Commit
9664f0b2
authored
Aug 31, 2009
by
Austin Yuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
__vaDriverInit_0_30 --> __vaDriverInit_0_31 for libva31
Signed-off-by:
Austin Yuan
<
shengquan.yuan@intel.com
>
parent
2822d025
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
4 deletions
+19
-4
dummy_drv_video/dummy_drv_video.c
dummy_drv_video/dummy_drv_video.c
+1
-1
i965_drv_video/i965_drv_video.c
i965_drv_video/i965_drv_video.c
+1
-1
src/va.c
src/va.c
+2
-2
src/va.h
src/va.h
+15
-0
No files found.
dummy_drv_video/dummy_drv_video.c
View file @
9664f0b2
...
...
@@ -1163,7 +1163,7 @@ VAStatus dummy_Terminate( VADriverContextP ctx )
return
VA_STATUS_SUCCESS
;
}
VAStatus
__vaDriverInit_0_3
0
(
VADriverContextP
ctx
)
VAStatus
__vaDriverInit_0_3
1
(
VADriverContextP
ctx
)
{
object_base_p
obj
;
int
result
;
...
...
i965_drv_video/i965_drv_video.c
View file @
9664f0b2
...
...
@@ -1312,7 +1312,7 @@ i965_Terminate(VADriverContextP ctx)
}
VAStatus
__vaDriverInit_0_3
0
(
VADriverContextP
ctx
)
__vaDriverInit_0_3
1
(
VADriverContextP
ctx
)
{
struct
i965_driver_data
*
i965
;
int
result
;
...
...
src/va.c
View file @
9664f0b2
...
...
@@ -39,8 +39,8 @@
#include "va_dricommon.h"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_3
0
"
#define DRIVER_INIT_FUNC_SDS "__vaDriverInit_0_3
0
_sds"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_3
1
"
#define DRIVER_INIT_FUNC_SDS "__vaDriverInit_0_3
1
_sds"
#define DRIVER_EXTENSION "_drv_video.so"
...
...
src/va.h
View file @
9664f0b2
...
...
@@ -392,6 +392,21 @@ VAStatus vaCreateSurfaces (
VASurfaceID
*
surfaces
/* out */
);
/* Wrap a CI (camera imaging) frame as a VA surface to share captured video between camear
* and VA encode. With frame_id, VA driver need to call CI interfaces to get the information
* of the frame, and to determine if the frame can be wrapped as a VA surface
*
* Application should make sure the frame is idle before the frame is passed into VA stack
* and also a vaSyncSurface should be called before application tries to access the frame
* from CI stack
*/
VAStatus
vaCreateSurfaceFromCIFrame
(
VADisplay
dpy
,
unsigned
long
frame_id
,
VASurfaceID
*
surface
/* out */
);
/*
* vaDestroySurfaces - Destroy resources associated with surfaces.
* Surfaces can only be destroyed after the context associated has been
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment