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
aa676947
Commit
aa676947
authored
Jun 20, 2009
by
Austin Yuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more comments for vaCreateBufferFromV4L2Buffer
Signed-off-by:
Austin Yuan
<
shengquan.yuan@intel.com
>
parent
214cd9cd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
src/va.c
src/va.c
+24
-1
No files found.
src/va.c
View file @
aa676947
...
@@ -1224,7 +1224,14 @@ VAStatus vaSetDisplayAttributes (
...
@@ -1224,7 +1224,14 @@ VAStatus vaSetDisplayAttributes (
return
ctx
->
vtable
.
vaSetDisplayAttributes
(
ctx
,
attr_list
,
num_attributes
);
return
ctx
->
vtable
.
vaSetDisplayAttributes
(
ctx
,
attr_list
,
num_attributes
);
}
}
/* 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
(
VAStatus
vaCreateSurfaceFromCIFrame
(
VADisplay
dpy
,
VADisplay
dpy
,
unsigned
long
frame_id
,
unsigned
long
frame_id
,
...
@@ -1244,6 +1251,18 @@ VAStatus vaCreateSurfaceFromCIFrame (
...
@@ -1244,6 +1251,18 @@ VAStatus vaCreateSurfaceFromCIFrame (
}
}
/* Wrap a V4L2 buffer as a VA surface, so that V4L2 camera, VA encode
* can share the data without copy
* The VA driver should query the camera device from v4l2_fd to see
* if camera device memory/buffer can be wrapped into a VA surface
* Buffer information is passed in by v4l2_fmt and v4l2_buf structure,
* VA driver also needs do further check if the buffer can meet encode
* hardware requirement, such as dimension, fourcc, stride, etc
*
* Application should make sure the buffer is idle before the frame into VA stack
* and also a vaSyncSurface should be called before application tries to access the frame
* from V4L2 stack
*/
VAStatus
vaCreateSurfaceFromV4L2Buf
(
VAStatus
vaCreateSurfaceFromV4L2Buf
(
VADisplay
dpy
,
VADisplay
dpy
,
int
v4l2_fd
,
/* file descriptor of V4L2 device */
int
v4l2_fd
,
/* file descriptor of V4L2 device */
...
@@ -1264,6 +1283,10 @@ VAStatus vaCreateSurfaceFromV4L2Buf(
...
@@ -1264,6 +1283,10 @@ VAStatus vaCreateSurfaceFromV4L2Buf(
return
VA_STATUS_ERROR_UNKNOWN
;
return
VA_STATUS_ERROR_UNKNOWN
;
}
}
/* It is a debug interface, and isn't exported in core VAAPI
* It is used to dump surface data into system memory
* Application should explicitly call free to release the buffer memory
*/
VAStatus
vaCopySurfaceToBuffer
(
VADisplay
dpy
,
VAStatus
vaCopySurfaceToBuffer
(
VADisplay
dpy
,
VASurfaceID
surface
,
VASurfaceID
surface
,
...
...
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