File: vaapi_utils.h

package info (click to toggle)
libvpl-tools 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,652 kB
  • sloc: cpp: 107,469; python: 4,303; ansic: 3,202; sh: 159; lisp: 52; makefile: 13
file content (559 lines) | stat: -rw-r--r-- 23,238 bytes parent folder | download
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/*############################################################################
  # Copyright (C) 2005 Intel Corporation
  #
  # SPDX-License-Identifier: MIT
  ############################################################################*/

#ifndef __VAAPI_UTILS_H__
#define __VAAPI_UTILS_H__

#ifdef LIBVA_SUPPORT

    #include <va/va.h>
    #include <va/va_drmcommon.h>

    #if defined(LIBVA_DRM_SUPPORT)
        #include <intel_bufmgr.h>
        #include <va/va_drm.h>
        #include <xf86drm.h>
        #include <xf86drmMode.h>
    #endif
    #if defined(LIBVA_X11_SUPPORT)
        #include <va/va_x11.h>
        #if defined(X11_DRI3_SUPPORT)
            #include <xcb/dri3.h>
            #include <xcb/present.h>
        #endif // X11_DRI3_SUPPORT
    #endif
    #include "sample_defs.h"
    #include "sample_utils.h"
    #include "vm/thread_defs.h"

namespace MfxLoader {

class SimpleLoader {
public:
    SimpleLoader(const char* name);

    void* GetFunction(const char* name);

    ~SimpleLoader();

private:
    SimpleLoader(SimpleLoader&);
    void operator=(SimpleLoader&);

    void* so_handle;
};

    #ifdef LIBVA_SUPPORT
class VA_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef VAStatus (*vaInitialize_type)(VADisplay, int*, int*);
    typedef VAStatus (*vaTerminate_type)(VADisplay);
    typedef VAStatus (*vaCreateSurfaces_type)(VADisplay,
                                              unsigned int,
                                              unsigned int,
                                              unsigned int,
                                              VASurfaceID*,
                                              unsigned int,
                                              VASurfaceAttrib*,
                                              unsigned int);
    typedef VAStatus (*vaDestroySurfaces_type)(VADisplay, VASurfaceID*, int);
    typedef VAStatus (*vaCreateBuffer_type)(VADisplay,
                                            VAContextID,
                                            VABufferType,
                                            unsigned int,
                                            unsigned int,
                                            void*,
                                            VABufferID*);
    typedef VAStatus (*vaDestroyBuffer_type)(VADisplay, VABufferID);
    typedef VAStatus (*vaMapBuffer_type)(VADisplay, VABufferID, void** pbuf);
    typedef VAStatus (*vaUnmapBuffer_type)(VADisplay, VABufferID);
    typedef VAStatus (*vaSyncSurface_type)(VADisplay, VASurfaceID);
    typedef VAStatus (*vaDeriveImage_type)(VADisplay, VASurfaceID, VAImage*);
    typedef VAStatus (*vaDestroyImage_type)(VADisplay, VAImageID);
    typedef VAStatus (*vaGetLibFunc_type)(VADisplay, const char* func);
    typedef VAStatus (*vaAcquireBufferHandle_type)(VADisplay, VABufferID, VABufferInfo*);
    typedef VAStatus (*vaReleaseBufferHandle_type)(VADisplay, VABufferID);
    typedef VAStatus (*vaMaxNumEntrypoints_type)(VADisplay dpy);
    typedef VAStatus (*vaQueryConfigEntrypoints_type)(VADisplay dpy,
                                                      VAProfile profile,
                                                      VAEntrypoint* entrypoint_list,
                                                      int* num_entrypoints);
    typedef VAStatus (*vaGetConfigAttributes_type)(VADisplay dpy,
                                                   VAProfile profile,
                                                   VAEntrypoint entrypoint,
                                                   VAConfigAttrib* attrib_list,
                                                   int num_attribs);
    typedef VAStatus (*vaCreateConfig_type)(VADisplay dpy,
                                            VAProfile profile,
                                            VAEntrypoint entrypoint,
                                            VAConfigAttrib* attrib_list,
                                            int num_attribs,
                                            VAConfigID* config_id);

    typedef VAStatus (*vaCreateContext_type)(VADisplay dpy,
                                             VAConfigID config_id,
                                             int picture_width,
                                             int picture_height,
                                             int flag,
                                             VASurfaceID* render_targets,
                                             int num_render_targets,
                                             VAContextID* context);
    typedef VAStatus (*vaDestroyConfig_type)(VADisplay dpy, VAConfigID config_id);
    typedef VAStatus (*vaDestroyContext_type)(VADisplay dpy, VAContextID context);

    VA_Proxy();
    ~VA_Proxy();

    const vaInitialize_type vaInitialize;
    const vaTerminate_type vaTerminate;
    const vaCreateSurfaces_type vaCreateSurfaces;
    const vaDestroySurfaces_type vaDestroySurfaces;
    const vaCreateBuffer_type vaCreateBuffer;
    const vaDestroyBuffer_type vaDestroyBuffer;
    const vaMapBuffer_type vaMapBuffer;
    const vaUnmapBuffer_type vaUnmapBuffer;
    const vaSyncSurface_type vaSyncSurface;
    const vaDeriveImage_type vaDeriveImage;
    const vaDestroyImage_type vaDestroyImage;
    const vaGetLibFunc_type vaGetLibFunc;
    const vaAcquireBufferHandle_type vaAcquireBufferHandle;
    const vaReleaseBufferHandle_type vaReleaseBufferHandle;
    const vaMaxNumEntrypoints_type vaMaxNumEntrypoints;
    const vaQueryConfigEntrypoints_type vaQueryConfigEntrypoints;
    const vaGetConfigAttributes_type vaGetConfigAttributes;
    const vaCreateConfig_type vaCreateConfig;
    const vaCreateContext_type vaCreateContext;
    const vaDestroyConfig_type vaDestroyConfig;
    const vaDestroyContext_type vaDestroyContext;
};
    #endif

    #if defined(LIBVA_DRM_SUPPORT)
class DRM_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef int (*drmIoctl_type)(int fd, unsigned long request, void* arg);
    typedef int (*drmModeAddFB_type)(int fd,
                                     uint32_t width,
                                     uint32_t height,
                                     uint8_t depth,
                                     uint8_t bpp,
                                     uint32_t pitch,
                                     uint32_t bo_handle,
                                     uint32_t* buf_id);
    typedef int (*drmSetClientCap_type)(int fd, uint64_t capability, uint64_t value);
    typedef drmModeObjectPropertiesPtr (*drmModeObjectGetProperties_type)(int fd,
                                                                          uint32_t objectId,
                                                                          uint32_t objectType);
    typedef void (*drmModeFreeObjectProperties_type)(drmModeObjectPropertiesPtr ptr);
    typedef drmModeAtomicReqPtr (*drmModeAtomicAlloc_type)();
    typedef int (*drmModeAtomicAddProperty_type)(drmModeAtomicReqPtr req,
                                                 uint32_t objectId,
                                                 uint32_t propertyId,
                                                 uint64_t value);
    typedef int (*drmModeAtomicCommit_type)(int fd,
                                            drmModeAtomicReqPtr req,
                                            uint32_t flags,
                                            void* user_data);
    typedef void (*drmModeAtomicFree_type)(drmModeAtomicReqPtr req);
    typedef int (*drmModeCreatePropertyBlob_type)(int fd, const void* data, int size, uint32_t* id);
    typedef int (*drmModeObjectSetProperty_type)(int fd,
                                                 uint32_t object_id,
                                                 uint32_t object_type,
                                                 uint32_t property_id,
                                                 uint64_t value);
    typedef int (*drmModeDestroyPropertyBlob_type)(int fd, uint32_t id);
    typedef drmModePropertyPtr (*drmModeGetProperty_type)(int fd, uint32_t propertyId);
    typedef void (*drmModeFreeProperty_type)(drmModePropertyPtr ptr);
    typedef drmModePropertyBlobPtr (*drmModeGetPropertyBlob_type)(int fd, uint32_t blob_id);
    typedef void (*drmModeFreePropertyBlob_type)(drmModePropertyBlobPtr ptr);
    typedef int (*drmModeAddFB2WithModifiers_type)(int fd,
                                                   uint32_t width,
                                                   uint32_t height,
                                                   uint32_t pixel_format,
                                                   uint32_t bo_handles[4],
                                                   uint32_t pitches[4],
                                                   uint32_t offsets[4],
                                                   uint64_t modifier[4],
                                                   uint32_t* buf_id,
                                                   uint32_t flags);
        #if defined(DRM_LINUX_FORMAT_MODIFIER_BLOB_SUPPORT)
    typedef bool (*drmModeFormatModifierBlobIterNext_type)(const drmModePropertyBlobRes* blob,
                                                           drmModeFormatModifierIterator* iter);
        #endif
    typedef void (*drmModeFreeConnector_type)(drmModeConnectorPtr ptr);
    typedef void (*drmModeFreeCrtc_type)(drmModeCrtcPtr ptr);
    typedef void (*drmModeFreeEncoder_type)(drmModeEncoderPtr ptr);
    typedef void (*drmModeFreePlane_type)(drmModePlanePtr ptr);
    typedef void (*drmModeFreePlaneResources_type)(drmModePlaneResPtr ptr);
    typedef void (*drmModeFreeResources_type)(drmModeResPtr ptr);
    typedef drmModeConnectorPtr (*drmModeGetConnector_type)(int fd, uint32_t connectorId);
    typedef drmModeCrtcPtr (*drmModeGetCrtc_type)(int fd, uint32_t crtcId);
    typedef drmModeEncoderPtr (*drmModeGetEncoder_type)(int fd, uint32_t encoder_id);
    typedef drmModePlanePtr (*drmModeGetPlane_type)(int fd, uint32_t plane_id);
    typedef drmModePlaneResPtr (*drmModeGetPlaneResources_type)(int fd);
    typedef drmModeResPtr (*drmModeGetResources_type)(int fd);
    typedef int (*drmModeRmFB_type)(int fd, uint32_t bufferId);
    typedef int (*drmModeSetCrtc_type)(int fd,
                                       uint32_t crtcId,
                                       uint32_t bufferId,
                                       uint32_t x,
                                       uint32_t y,
                                       uint32_t* connectors,
                                       int count,
                                       drmModeModeInfoPtr mode);
    typedef int (*drmSetMaster_type)(int fd);
    typedef int (*drmDropMaster_type)(int fd);
    typedef int (*drmModeSetPlane_type)(int fd,
                                        uint32_t plane_id,
                                        uint32_t crtc_id,
                                        uint32_t fb_id,
                                        uint32_t flags,
                                        int32_t crtc_x,
                                        int32_t crtc_y,
                                        uint32_t crtc_w,
                                        uint32_t crtc_h,
                                        uint32_t src_x,
                                        uint32_t src_y,
                                        uint32_t src_w,
                                        uint32_t src_h);
    DRM_Proxy();
    ~DRM_Proxy();

        #define __DECLARE(name) const name##_type name
    __DECLARE(drmIoctl);
    __DECLARE(drmModeAddFB);
    __DECLARE(drmModeAddFB2WithModifiers);
        #if defined(DRM_LINUX_FORMAT_MODIFIER_BLOB_SUPPORT)
    __DECLARE(drmModeFormatModifierBlobIterNext);
        #endif
    __DECLARE(drmSetClientCap);
    __DECLARE(drmModeObjectGetProperties);
    __DECLARE(drmModeFreeObjectProperties);
    __DECLARE(drmModeAtomicAlloc);
    __DECLARE(drmModeAtomicAddProperty);
    __DECLARE(drmModeAtomicCommit);
    __DECLARE(drmModeAtomicFree);
    __DECLARE(drmModeCreatePropertyBlob);
    __DECLARE(drmModeObjectSetProperty);
    __DECLARE(drmModeDestroyPropertyBlob);
    __DECLARE(drmModeGetProperty);
    __DECLARE(drmModeFreeProperty);
    __DECLARE(drmModeGetPropertyBlob);
    __DECLARE(drmModeFreePropertyBlob);
    __DECLARE(drmModeFreeConnector);
    __DECLARE(drmModeFreeCrtc);
    __DECLARE(drmModeFreeEncoder);
    __DECLARE(drmModeFreePlane);
    __DECLARE(drmModeFreePlaneResources);
    __DECLARE(drmModeFreeResources);
    __DECLARE(drmModeGetConnector);
    __DECLARE(drmModeGetCrtc);
    __DECLARE(drmModeGetEncoder);
    __DECLARE(drmModeGetPlane);
    __DECLARE(drmModeGetPlaneResources);
    __DECLARE(drmModeGetResources);
    __DECLARE(drmModeRmFB);
    __DECLARE(drmModeSetCrtc);
    __DECLARE(drmSetMaster);
    __DECLARE(drmDropMaster);
    __DECLARE(drmModeSetPlane);
        #undef __DECLARE
};

class DrmIntel_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef drm_intel_bo* (*drm_intel_bo_gem_create_from_prime_type)(drm_intel_bufmgr* bufmgr,
                                                                     int prime_fd,
                                                                     int size);
    typedef void (*drm_intel_bo_unreference_type)(drm_intel_bo* bo);
    typedef drm_intel_bufmgr* (*drm_intel_bufmgr_gem_init_type)(int fd, int batch_size);
    typedef int (*drm_intel_bo_gem_export_to_prime_type)(drm_intel_bo*, int*);
    typedef void (*drm_intel_bufmgr_destroy_type)(drm_intel_bufmgr*);
    typedef int (*drmPrimeFDToHandle_type)(int fd, int prime_fd, uint32_t* handle);

    DrmIntel_Proxy();
    ~DrmIntel_Proxy();

        #define __DECLARE(name) const name##_type name
    __DECLARE(drm_intel_bo_gem_create_from_prime);
    __DECLARE(drm_intel_bo_unreference);
    __DECLARE(drm_intel_bufmgr_gem_init);
    __DECLARE(drm_intel_bufmgr_destroy);
    __DECLARE(drmPrimeFDToHandle);
        #if defined(X11_DRI3_SUPPORT)
    __DECLARE(drm_intel_bo_gem_export_to_prime);
        #endif

        #undef __DECLARE
};

class VA_DRMProxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef VADisplay (*vaGetDisplayDRM_type)(int);

    VA_DRMProxy();
    ~VA_DRMProxy();

    const vaGetDisplayDRM_type vaGetDisplayDRM;
};
    #endif

    #if defined(LIBVA_WAYLAND_SUPPORT)

class Wayland;

class VA_WaylandClientProxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef Wayland* (*WaylandCreate_type)(void);
    typedef void (*WaylandDestroy_type)(Wayland*);

    VA_WaylandClientProxy();
    ~VA_WaylandClientProxy();

    const WaylandCreate_type WaylandCreate;
    const WaylandDestroy_type WaylandDestroy;
};

    #endif // LIBVA_WAYLAND_SUPPORT

    #if defined(LIBVA_X11_SUPPORT)
class VA_X11Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef VADisplay (*vaGetDisplay_type)(Display*);
    typedef VAStatus (*vaPutSurface_type)(VADisplay,
                                          VASurfaceID,
                                          Drawable,
                                          short,
                                          short,
                                          unsigned short,
                                          unsigned short,
                                          short,
                                          short,
                                          unsigned short,
                                          unsigned short,
                                          VARectangle*,
                                          unsigned int,
                                          unsigned int);

    VA_X11Proxy();
    ~VA_X11Proxy();

    const vaGetDisplay_type vaGetDisplay;
    const vaPutSurface_type vaPutSurface;
};

class XLib_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef Display* (*XOpenDisplay_type)(const char*);
    typedef int (*XCloseDisplay_type)(Display*);
    typedef Window (*XCreateSimpleWindow_type)(Display*,
                                               Window,
                                               int,
                                               int,
                                               unsigned int,
                                               unsigned int,
                                               unsigned int,
                                               unsigned long,
                                               unsigned long);
    typedef int (*XMapWindow_type)(Display*, Window);
    typedef int (*XSync_type)(Display*, Bool);
    typedef int (*XDestroyWindow_type)(Display*, Window);
    typedef int (*XResizeWindow_type)(Display*, Window, unsigned int, unsigned int);
        #if defined(X11_DRI3_SUPPORT)
    typedef Status (*XGetGeometry_type)(Display*,
                                        Drawable,
                                        Window*,
                                        int*,
                                        int*,
                                        unsigned int*,
                                        unsigned int*,
                                        unsigned int*,
                                        unsigned int*);
        #endif // X11_DRI3_SUPPORT
    XLib_Proxy();
    ~XLib_Proxy();

    const XOpenDisplay_type XOpenDisplay;
    const XCloseDisplay_type XCloseDisplay;
    const XCreateSimpleWindow_type XCreateSimpleWindow;
    const XMapWindow_type XMapWindow;
    const XSync_type XSync;
    const XDestroyWindow_type XDestroyWindow;
    const XResizeWindow_type XResizeWindow;
        #if defined(X11_DRI3_SUPPORT)
    const XGetGeometry_type XGetGeometry;
        #endif // X11_DRI3_SUPPORT
};

        #if defined(X11_DRI3_SUPPORT)

class XCB_Dri3_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef xcb_void_cookie_t (*xcb_dri3_pixmap_from_buffer_type)(xcb_connection_t*,
                                                                  xcb_pixmap_t,
                                                                  xcb_drawable_t,
                                                                  uint32_t,
                                                                  uint16_t,
                                                                  uint16_t,
                                                                  uint16_t,
                                                                  uint8_t,
                                                                  uint8_t,
                                                                  int32_t);
    typedef xcb_dri3_pixmap_from_buffer_type xcb_dri3_pixmap_from_buffer_checked_type;

    XCB_Dri3_Proxy();
    ~XCB_Dri3_Proxy();

    const xcb_dri3_pixmap_from_buffer_checked_type xcb_dri3_pixmap_from_buffer_checked;
};

class Xcb_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef uint32_t (*xcb_generate_id_type)(xcb_connection_t*);
    typedef xcb_void_cookie_t (*xcb_free_pixmap_type)(xcb_connection_t*, xcb_pixmap_t);
    typedef int (*xcb_flush_type)(xcb_connection_t*);
    typedef xcb_generic_error_t* (*xcb_request_check_type)(xcb_connection_t* c,
                                                           xcb_void_cookie_t cookie);

    Xcb_Proxy();
    ~Xcb_Proxy();

    const xcb_generate_id_type xcb_generate_id;
    const xcb_free_pixmap_type xcb_free_pixmap;
    const xcb_flush_type xcb_flush;
    const xcb_request_check_type xcb_request_check;
};

class X11_Xcb_Proxy {
private:
    SimpleLoader lib; // should appear first in member list

public:
    typedef xcb_connection_t* (*XGetXCBConnection_type)(Display* dpy);

    X11_Xcb_Proxy();
    ~X11_Xcb_Proxy();

    const XGetXCBConnection_type XGetXCBConnection;
};

class Xcbpresent_Proxy {
private:
    SimpleLoader lib;

public:
    typedef xcb_void_cookie_t (*xcb_present_pixmap_type)(xcb_connection_t*,
                                                         xcb_window_t,
                                                         xcb_pixmap_t,
                                                         uint32_t,
                                                         xcb_xfixes_region_t,
                                                         xcb_xfixes_region_t,
                                                         int16_t,
                                                         int16_t,
                                                         xcb_randr_crtc_t,
                                                         xcb_sync_fence_t,
                                                         xcb_sync_fence_t,
                                                         uint32_t,
                                                         uint64_t,
                                                         uint64_t,
                                                         uint64_t,
                                                         uint32_t,
                                                         const xcb_present_notify_t*);
    typedef xcb_present_pixmap_type xcb_present_pixmap_checked_type;

    Xcbpresent_Proxy();
    ~Xcbpresent_Proxy();

    const xcb_present_pixmap_checked_type xcb_present_pixmap_checked;
};

        #endif // X11_DRI3_SUPPORT
    #endif

} // namespace MfxLoader

constexpr mfxU32 MFX_X11_NODE_INDEX = 128;
constexpr mfxU32 MFX_X11_MAX_NODES  = 16;
class CLibVA {
public:
    virtual ~CLibVA(void){};

    VAStatus AcquireVASurface(void** pctx,
                              VADisplay dpy1,
                              VASurfaceID srf1,
                              VADisplay dpy2,
                              VASurfaceID* srf2);
    void ReleaseVASurface(void* actx,
                          VADisplay dpy1,
                          VASurfaceID /*srf1*/,
                          VADisplay dpy2,
                          VASurfaceID srf2);

    inline int getBackendType() {
        return m_type;
    }
    VADisplay GetVADisplay() {
        return m_va_dpy;
    }
    const MfxLoader::VA_Proxy m_libva;

protected:
    CLibVA(int type) : m_type(type), m_va_dpy(NULL) {}
    int m_type;
    VADisplay m_va_dpy;

private:
    DISALLOW_COPY_AND_ASSIGN(CLibVA);
};

CLibVA* CreateLibVA(const std::string& devicePath = "", int type = MFX_LIBVA_DRM);

// compatibility with some old tools/val-tools
CLibVA* CreateLibVA(int type);

VAStatus AcquireVASurface(void** ctx,
                          VADisplay dpy1,
                          VASurfaceID srf1,
                          VADisplay dpy2,
                          VASurfaceID* srf2);
void ReleaseVASurface(void* actx,
                      VADisplay dpy1,
                      VASurfaceID srf1,
                      VADisplay dpy2,
                      VASurfaceID srf2);

mfxStatus va_to_mfx_status(VAStatus va_res);

#endif // #ifdef LIBVA_SUPPORT

#endif // #ifndef __VAAPI_UTILS_H__