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 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
|
/*
* Copyright (c) 2009-2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file media_libva_common.h
//! \brief libva(and its extension) interface implemantation common head file
//! \details libva(and its extension) interface implemantation common head file
//!
#ifndef __MEDIA_LIBVA_COMMON_H__
#define __MEDIA_LIBVA_COMMON_H__
#include <pthread.h>
#include "xf86drm.h"
#include "drm.h"
#include "i915_drm.h"
#include "mos_bufmgr.h"
#include "mos_context.h"
#include "mos_gpucontextmgr.h"
#include "mos_cmdbufmgr.h"
#include "mos_os.h"
#include "mos_auxtable_mgr.h"
#include <va/va.h>
#include <va/va_backend.h>
#include <va/va_backend_vpp.h>
#include <va/va_drmcommon.h>
#include <va/va_dec_jpeg.h>
#include <va/va_backend.h>
#ifdef ANDROID
#include <utils/Log.h>
#ifndef LOG_TAG
#define LOG_TAG "DDI"
#endif
#if ANDROID_VERSION > 439 && defined(ENABLE_ATRACE)
#ifndef HAVE_ANDROID_OS
#define HAVE_ANDROID_OS
#endif
#define ATRACE_TAG (ATRACE_TAG_VIDEO | ATRACE_TAG_HAL)
#include <cutils/trace.h>
#define UMD_ATRACE_BEGIN(name) \
{ \
if(atrace_switch) ATRACE_BEGIN(name); \
}
#define UMD_ATRACE_END \
{ \
if(atrace_switch) ATRACE_END(); \
}
#include <cutils/properties.h>
static int32_t atrace_switch = 0;
#else
#define UMD_ATRACE_BEGIN __noop
#define UMD_ATRACE_END __noop
#endif
#else
#define UMD_ATRACE_BEGIN __noop
#define UMD_ATRACE_END __noop
#endif
#define DDI_UNUSED(param) MOS_UNUSED(param)
#define DDI_MEDIA_MAX_SURFACE_NUMBER_CONTEXT 127
#define DDI_MEDIA_MAX_INSTANCE_NUMBER 0x0FFFFFFF
// heap
#define DDI_MEDIA_HEAP_INCREMENTAL_SIZE 8
#define DDI_MEDIA_VACONTEXTID_OFFSET_DECODER 0x10000000
#define DDI_MEDIA_VACONTEXTID_OFFSET_ENCODER 0x20000000
#define DDI_MEDIA_VACONTEXTID_OFFSET_CENC 0x30000000
#define DDI_MEDIA_VACONTEXTID_OFFSET_VP 0x40000000
#define DDI_MEDIA_VACONTEXTID_OFFSET_MFE 0x70000000
#define DDI_MEDIA_VACONTEXTID_OFFSET_CM 0x80000000
#define DDI_MEDIA_MASK_VACONTEXT_TYPE 0xF0000000
#define DDI_MEDIA_MASK_VACONTEXTID 0x0FFFFFFF
#define DDI_MEDIA_CONTEXT_TYPE_DECODER 1
#define DDI_MEDIA_CONTEXT_TYPE_ENCODER 2
#define DDI_MEDIA_CONTEXT_TYPE_VP 3
#define DDI_MEDIA_CONTEXT_TYPE_MEDIA 4
#define DDI_MEDIA_CONTEXT_TYPE_CM 5
#define DDI_MEDIA_CONTEXT_TYPE_CENC_DECODER 6
#define DDI_MEDIA_CONTEXT_TYPE_MFE 7
#define DDI_MEDIA_CONTEXT_TYPE_NONE 0
#define DDI_MEDIA_INVALID_VACONTEXTID 0
#define DDI_MEDIA_MAX_COLOR_PLANES 4 //Maximum color planes supported by media driver, like (A/R/G/B in different planes)
typedef pthread_mutex_t MEDIA_MUTEX_T, *PMEDIA_MUTEX_T;
#define MEDIA_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
typedef sem_t MEDIA_SEM_T, *PMEDIA_SEM_T;
#ifndef VA_FOURCC_ABGR
#define VA_FOURCC_ABGR VA_FOURCC('A', 'B', 'G', 'R')
#endif
#ifndef VA_FOURCC_R5G6B5
#define VA_FOURCC_R5G6B5 VA_FOURCC('R','G','1', '6')
#endif
#ifndef VA_FOURCC_R8G8B8
#define VA_FOURCC_R8G8B8 VA_FOURCC('R','G','2', '4')
#endif
#ifndef VA_FOURCC_I420
#define VA_FOURCC_I420 VA_FOURCC('I','4','2', '0')
#endif
#define RGB_10BIT_ALPHAMASK 0X30000
#define RGB_8BIT_ALPHAMASK 0XFF0000
#define MEDIAAPI_EXPORT __attribute__((visibility("default")))
class MediaLibvaCaps;
typedef enum _DDI_MEDIA_FORMAT
{
Media_Format_NV12 ,
Media_Format_NV21 ,
Media_Format_Buffer ,
Media_Format_2DBuffer ,
Media_Format_Perf_Buffer ,
Media_Format_X8R8G8B8 ,
Media_Format_A8R8G8B8 ,
Media_Format_X8B8G8R8 ,
Media_Format_A8B8G8R8 ,
Media_Format_R8G8B8A8 ,
Media_Format_R5G6B5 ,
Media_Format_R10G10B10A2 ,
Media_Format_B10G10R10A2 ,
Media_Format_CPU ,
Media_Format_YUY2 ,
Media_Format_UYVY ,
Media_Format_YV12 ,
Media_Format_IYUV ,
Media_Format_I420 ,
Media_Format_422H ,
Media_Format_444P ,
Media_Format_411P ,
Media_Format_400P ,
Media_Format_422V ,
Media_Format_IMC3 ,
Media_Format_P010 ,
Media_Format_R8G8B8 ,
Media_Format_RGBP ,
Media_Format_P016 ,
Media_Format_Y210 ,
Media_Format_Y216 ,
Media_Format_AYUV ,
Media_Format_Y410 ,
Media_Format_Y416 ,
Media_Format_Count
} DDI_MEDIA_FORMAT;
typedef enum _DDI_MEDIA_STATUS_REPORT_QUERY_STATE
{
DDI_MEDIA_STATUS_REPORT_QUREY_STATE_INIT,
DDI_MEDIA_STATUS_REPORT_QUREY_STATE_PENDING,
DDI_MEDIA_STATUS_REPORT_QUREY_STATE_COMPLETED,
DDI_MEDIA_STATUS_REPORT_QUREY_STATE_RELEASED
} DDI_MEDIA_STATUS_REPORT_QUERY_STATE;
//!
//! \brief Surface descriptor for external DRM buffer
//!
typedef struct _DDI_MEDIA_SURFACE_DESCRIPTOR
{
uint32_t uiPlanes; // brief number of planes for planar layout
uint32_t uiPitches[DDI_MEDIA_MAX_COLOR_PLANES]; // pitch for each plane in bytes
uint32_t uiOffsets[DDI_MEDIA_MAX_COLOR_PLANES]; // offset for each plane in bytes
uintptr_t ulBuffer; // buffer handle or user pointer
uint32_t uiSize; // buffer size
uint32_t uiFlags; // See "Surface external buffer descriptor flags"
uint32_t uiTile; // Used for user pointer
uint32_t uiBuffserSize; // Used for user pointer
bool bIsGralloc; // buffer allocated by Gralloc
void *pPrivateData; // brief reserved for passing private data
GMM_RESCREATE_PARAMS GmmParam; // GMM Params for Gralloc buffer
} DDI_MEDIA_SURFACE_DESCRIPTOR,*PDDI_MEDIA_SURFACE_DESCRIPTOR;
//!
//! \struct DDI_MEDIA_CONTEXT
//! \brief Ddi media context
//!
struct DDI_MEDIA_CONTEXT;
typedef struct DDI_MEDIA_CONTEXT *PDDI_MEDIA_CONTEXT;
typedef union _DDI_MEDIA_SURFACE_STATUS_REPORT
{
//!
//! \struct _DDI_MEDIA_SURFACE_DECODE_STATUS
//! \brief Ddi media surface decode status
//!
struct _DDI_MEDIA_SURFACE_DECODE_STATUS
{
uint32_t status; // indicate latest decode status for current surface, refer to CODECHAL_STATUS in CodechalDecodeStatusReport.
uint32_t errMbNum; // indicate number of MB s with decode error, refer to NumMbsAffected in CodechalDecodeStatusReport
uint32_t crcValue; // indicate the CRC value of the decoded data
} decode;
//!
//! \struct _DDI_MEDIA_SURFACE_CENC_STATUS
//! \brief Ddi media surface cenc status
//!
struct _DDI_MEDIA_SURFACE_CENC_STATUS
{
uint32_t status; // indicate latest cenc status for current surface, refer to CODECHAL_STATUS in CodechalDecodeStatusReport.
uint32_t reserved; // reserved
} cenc;
//!
//! \struct _DDI_MEDIA_SURFACE_VPP_STATUS
//! \brief Ddi media surface vpp status
//!
struct _DDI_MEDIA_SURFACE_VPP_STATUS
{
uint32_t status; // indicate latest vpp status for current surface.
uint32_t reserved; // reserved.
} vpp;
} DDI_MEDIA_SURFACE_STATUS_REPORT, *PDDI_MEDIA_SURFACE_STATUS_REPORT;
typedef struct _DDI_MEDIA_SURFACE
{
// for hwcomposer, remove this after we have a solution
uint32_t base;
int32_t iWidth;
int32_t iHeight; // allocate height after alignment
int32_t iRealHeight; // real height before alignment
int32_t iPitch;
uint32_t uiOffset;
DDI_MEDIA_FORMAT format;
uint32_t uiLockedBufID;
uint32_t uiLockedImageID;
int32_t iRefCount;
uint8_t *pData;
uint32_t data_size;
uint32_t isTiled;
uint32_t TileType;
uint32_t bMapped;
MOS_LINUX_BO *bo;
uint32_t name;
uint32_t surfaceUsageHint;
PDDI_MEDIA_SURFACE_DESCRIPTOR pSurfDesc; // nullptr means surface was allocated by media driver
// !nullptr means surface was allocated by Application
GMM_RESOURCE_INFO *pGmmResourceInfo; // GMM resource descriptor
uint32_t frame_idx;
void *pDecCtx;
void *pVpCtx;
uint32_t curCtxType; // indicate current surface is using in which context type.
DDI_MEDIA_STATUS_REPORT_QUERY_STATE curStatusReportQueryState; // indicate status report is queried or not.
DDI_MEDIA_SURFACE_STATUS_REPORT curStatusReport; // union for both decode and vpp status.
PDDI_MEDIA_CONTEXT pMediaCtx; // Media driver Context
PMEDIA_SEM_T pCurrentFrameSemaphore; // to sync render target for hybrid decoding multi-threading mode
PMEDIA_SEM_T pReferenceFrameSemaphore; // to sync reference frame surface. when this semaphore is posted, the surface is not used as reference frame, and safe to be destroied
uint8_t *pSystemShadow; // Shadow surface in system memory
uint32_t uiMapFlag;
} DDI_MEDIA_SURFACE, *PDDI_MEDIA_SURFACE;
typedef struct _DDI_MEDIA_BUFFER
{
uint32_t iSize;
uint32_t uiWidth;
uint32_t uiHeight;
uint32_t uiPitch;
uint32_t uiNumElements;
uint32_t uiOffset;
// vaBuffer type
uint32_t uiType;
DDI_MEDIA_FORMAT format;
uint32_t uiLockedBufID;
uint32_t uiLockedImageID;
int32_t iRefCount;
uint32_t TileType;
uint8_t *pData;
uint32_t bMapped;
MOS_LINUX_BO *bo;
uint32_t name;
uint32_t uiMemtype;
uint32_t uiExportcount;
uintptr_t handle;
bool bCFlushReq; // No LLC between CPU & GPU, requries to call CPU Flush for CPU mapped buffer
PDDI_MEDIA_SURFACE pSurface;
GMM_RESOURCE_INFO *pGmmResourceInfo; // GMM resource descriptor
PDDI_MEDIA_CONTEXT pMediaCtx; // Media driver Context
} DDI_MEDIA_BUFFER, *PDDI_MEDIA_BUFFER;
typedef struct _DDI_MEDIA_SURFACE_HEAP_ELEMENT
{
PDDI_MEDIA_SURFACE pSurface;
uint32_t uiVaSurfaceID;
struct _DDI_MEDIA_SURFACE_HEAP_ELEMENT *pNextFree;
}DDI_MEDIA_SURFACE_HEAP_ELEMENT, *PDDI_MEDIA_SURFACE_HEAP_ELEMENT;
typedef struct _DDI_MEDIA_BUFFER_HEAP_ELEMENT
{
PDDI_MEDIA_BUFFER pBuffer;
void *pCtx;
uint32_t uiCtxType;
uint32_t uiVaBufferID;
struct _DDI_MEDIA_BUFFER_HEAP_ELEMENT *pNextFree;
}DDI_MEDIA_BUFFER_HEAP_ELEMENT, *PDDI_MEDIA_BUFFER_HEAP_ELEMENT;
typedef struct _DDI_MEDIA_IMAGE_HEAP_ELEMENT
{
VAImage *pImage;
uint32_t uiVaImageID;
struct _DDI_MEDIA_IMAGE_HEAP_ELEMENT *pNextFree;
}DDI_MEDIA_IMAGE_HEAP_ELEMENT, *PDDI_MEDIA_IMAGE_HEAP_ELEMENT;
typedef struct _DDI_MEDIA_VACONTEXT_HEAP_ELEMENT
{
void *pVaContext;
uint32_t uiVaContextID;
struct _DDI_MEDIA_VACONTEXT_HEAP_ELEMENT *pNextFree;
}DDI_MEDIA_VACONTEXT_HEAP_ELEMENT, *PDDI_MEDIA_VACONTEXT_HEAP_ELEMENT;
typedef struct _DDI_MEDIA_HEAP
{
void *pHeapBase;
uint32_t uiHeapElementSize;
uint32_t uiAllocatedHeapElements;
void *pFirstFreeHeapElement;
}DDI_MEDIA_HEAP, *PDDI_MEDIA_HEAP;
#ifndef ANDROID
typedef struct _DDI_X11_FUNC_TABLE
{
HMODULE pX11LibHandle; // handle to dlopen libX11
// 5 functions from libX11 used by vpgPutSurface (Linux) so far
void *pfnDefaultVisual;
void *pfnXCreateGC;
void *pfnXFreeGC;
void *pfnXCreateImage;
void *pfnXDestroyImage;
void *pfnXPutImage;
}DDI_X11_FUNC_TABLE, *PDDI_X11_FUNC_TABLE;
#endif
//!
//! \struct DDI_MEDIA_CONTEXT
//! \brief Media heap for shared internal structures
//!
struct DDI_MEDIA_CONTEXT
{
MOS_BUFMGR *pDrmBufMgr;
// handle for /dev/dri/card0
int32_t fd;
int32_t iDeviceId;
bool bIsAtomSOC;
MEDIA_FEATURE_TABLE SkuTable;
MEDIA_WA_TABLE WaTable;
PDDI_MEDIA_HEAP pSurfaceHeap;
uint32_t uiNumSurfaces;
PDDI_MEDIA_HEAP pBufferHeap;
uint32_t uiNumBufs;
PDDI_MEDIA_HEAP pImageHeap;
uint32_t uiNumImages;
PDDI_MEDIA_HEAP pDecoderCtxHeap;
uint32_t uiNumDecoders;
PDDI_MEDIA_HEAP pEncoderCtxHeap;
uint32_t uiNumEncoders;
PDDI_MEDIA_HEAP pVpCtxHeap;
uint32_t uiNumVPs;
PDDI_MEDIA_HEAP pCmCtxHeap;
uint32_t uiNumCMs;
PDDI_MEDIA_HEAP pMfeCtxHeap;
uint32_t uiNumMfes;
// display info
uint32_t uiDisplayWidth;
uint32_t uiDisplayHeight;
// media context reference number
uint32_t uiRef;
// modulized Gpu context and cmd buffer
bool modularizedGpuCtxEnabled;
OsContext *m_osContext;
GpuContextMgr *m_gpuContextMgr;
CmdBufMgr *m_cmdBufMgr;
// mutexs to protect the shared resource among multiple context
MEDIA_MUTEX_T SurfaceMutex;
MEDIA_MUTEX_T BufferMutex;
MEDIA_MUTEX_T ImageMutex;
MEDIA_MUTEX_T DecoderMutex;
MEDIA_MUTEX_T EncoderMutex;
MEDIA_MUTEX_T VpMutex;
MEDIA_MUTEX_T CmMutex;
MEDIA_MUTEX_T MfeMutex;
// GT system Info
MEDIA_SYSTEM_INFO *pGtSystemInfo;
// Media memory decompression data structure
void *pMediaMemDecompState;
// Media memory decompression function
void (* pfnMemoryDecompress)(
PMOS_CONTEXT pMosCtx,
PMOS_RESOURCE pOsResource);
uint32_t FeiFunction;
PLATFORM platform;
MediaLibvaCaps *m_caps;
GMM_CLIENT_CONTEXT *pGmmClientContext;
GmmExportEntries GmmFuncs;
// Aux Table Manager
AuxTableMgr *m_auxTableMgr;
bool m_useSwSwizzling;
bool m_tileYFlag;
#if !defined(ANDROID) && defined(X11_FOUND)
// X11 Func table, for vpgPutSurface (Linux)
PDDI_X11_FUNC_TABLE X11FuncTable;
/* VA/DRI (X11) specific data */
struct va_dri_output *dri_output;
//vpgPutSurfaceLinuxHW acceleration hack
MEDIA_MUTEX_T PutSurfaceRenderMutex;
MEDIA_MUTEX_T PutSurfaceSwapBufferMutex;
#endif
};
static __inline PDDI_MEDIA_CONTEXT DdiMedia_GetMediaContext (VADriverContextP ctx)
{
return (PDDI_MEDIA_CONTEXT)ctx->pDriverData;
}
//!
//! \brief Media surface to mos resource
//!
//! \param [in] mediaSurface
//! Ddi media surface
//! \param [in] mhalOsResource
//! Mos resource
//!
void DdiMedia_MediaSurfaceToMosResource(DDI_MEDIA_SURFACE *mediaSurface, MOS_RESOURCE *mhalOsResource);
//!
//! \brief Media buffer to mos resource
//!
//! \param [in] mediaBuffer
//! Ddi media buffer
//! \param [in] mhalOsResource
//! Mos resource
//!
void DdiMedia_MediaBufferToMosResource(DDI_MEDIA_BUFFER *mediaBuffer, MOS_RESOURCE *mhalOsResource);
//!
//! \brief Get context from context ID
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] vaCtxID
//! VA context ID
//! \param [in] ctxType
//! Ctx type
//!
void* DdiMedia_GetContextFromContextID (VADriverContextP ctx, VAContextID vaCtxID, uint32_t *ctxType);
//!
//! \brief Get surface from VA surface ID
//!
//! \param [in] mediaCtx
//! Pointer to ddi media context
//! \param [in] surfaceID
//! VA surface ID
//!
//! \return DDI_MEDIA_SURFACE*
//! Pointer to ddi media surface
//!
DDI_MEDIA_SURFACE* DdiMedia_GetSurfaceFromVASurfaceID (PDDI_MEDIA_CONTEXT mediaCtx, VASurfaceID surfaceID);
//!
//! \brief replace the surface with given format
//!
//! \param [in] surface
//! Pointer to the old surface
//! \param [in] expectedFormat
//! VA surface ID
//!
//! \return DDI_MEDIA_SURFACE*
//! Pointer to new ddi media surface
//!
PDDI_MEDIA_SURFACE DdiMedia_ReplaceSurfaceWithNewFormat(PDDI_MEDIA_SURFACE surface, DDI_MEDIA_FORMAT expectedFormat);
//!
//! \brief Get VA surface ID from surface
//!
//! \param [in] surface
//! surface
//!
//! \return VASurfaceID
//! VA Surface ID
//!
VASurfaceID DdiMedia_GetVASurfaceIDFromSurface(PDDI_MEDIA_SURFACE surface);
//!
//! \brief Get buffer from VA buffer ID
//!
//! \param [in] mediaCtx
//! Pointer to ddi media context
//! \param [in] bufferID
//! VA buffer ID
//!
//! \return DDI_MEDIA_BUFFER*
//! Pointer to ddi media buffer
//!
DDI_MEDIA_BUFFER* DdiMedia_GetBufferFromVABufferID (PDDI_MEDIA_CONTEXT mediaCtx, VABufferID bufferID);
//!
//! \brief Get context from VA buffer ID
//!
//! \param [in] mediaCtx
//! Pointer to ddi media context
//! \param [in] bufferID
//! VA buffer ID
//!
//! \return void*
//! Pointer to context
//!
void* DdiMedia_GetContextFromVABufferID (PDDI_MEDIA_CONTEXT mediaCtx, VABufferID bufferID);
//!
//! \brief Destroy buffer from VA buffer ID
//!
//! \param [in] mediaCtx
//! Pointer to ddi media context
//! \param [in] bufferID
//! VA buffer ID
//!
//! \return bool
//! true if destroy buffer from VA buffer ID, else false
//!
bool DdiMedia_DestroyBufFromVABufferID (PDDI_MEDIA_CONTEXT mediaCtx, VABufferID bufferID);
#endif
|