Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: third_party/libva/va/va_egl.h

Issue 10380004: Add libva, a library for video accelerated video processing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #ifndef _VA_EGL_H_
2 #define _VA_EGL_H_
3
4 #include <va/va.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 typedef void* EGLClientBuffer;
11
12 /*This function is used to get EGLClientBuffer
13 * (lower 16bits is buffer index, upper 16bits
14 * is BC device id.) from surface id. Application
15 * should maintain EGLClientBuffer itself.*/
16
17 VAStatus vaGetEGLClientBufferFromSurface (
18 VADisplay dpy,
19 VASurfaceID surface,
20 EGLClientBuffer *buffer /* out*/
21 );
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* _VA_EGL_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698