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
|
/*
* Copyright (c) 2009-2017, 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.h
//! \brief libva(and its extension) interface head file
//!
#ifndef __MEDIA_LIBVA_H__
#define __MEDIA_LIBVA_H__
#include <va/va.h>
#include <va/va_backend.h>
#include "va/va_dec_vp8.h"
#include <va/va_enc_h264.h>
#include <va/va_enc_mpeg2.h>
#include <va/va_enc_jpeg.h>
#include <va/va_dec_jpeg.h>
#include <va/va_enc_vp8.h>
#include <va/va_dec_vp9.h>
#include <va/va_enc_hevc.h>
#include <va/va_vpp.h>
#include <va/va_backend_vpp.h>
#ifdef ANDROID
#if VA_MAJOR_VERSION < 1
#include "va_internal_android.h"
#endif
#endif // ANDROID
#include <va/va_dec_hevc.h>
#include "codechal.h"
#include "codechal_decoder.h"
#include "codechal_encoder_base.h"
#include "media_libva_common.h"
#define DDI_CODEC_GEN_MAX_PROFILES 31 // the number of va profiles, some profiles in va_private.h
#define DDI_CODEC_GEN_MAX_ENTRYPOINTS 7 // VAEntrypointVLD, VAEntrypointEncSlice, VAEntrypointEncSliceLP, VAEntrypointVideoProc
#define DDI_CODEC_GEN_MAX_IMAGE_FORMATS 2 // NV12 and P010
#define DDI_CODEC_GEN_MAX_SUBPIC_FORMATS 4 // no sub-pic blending support, still set to 4 for further implementation
#if VA_MAJOR_VERSION < 1
#define DDI_CODEC_GEN_MAX_DISPLAY_ATTRIBUTES 4
#else
#define DDI_CODEC_GEN_MAX_DISPLAY_ATTRIBUTES 0 // set it to zero, unsupported.
#endif
#define DDI_CODEC_GEN_MAX_ATTRIBS_TYPE 4 //VAConfigAttribRTFormat, VAConfigAttribRateControl, VAConfigAttribDecSliceMode, VAConfigAttribEncPackedHeaders
#define DDI_CODEC_GEN_MAX_SURFACE_ATTRIBUTES 18 // Use the same value as I965
#define DDI_CODEC_GEN_STR_VENDOR "Intel iHD driver - " UFO_VERSION
#define DDI_CODEC_GET_VTABLE(ctx) (ctx->vtable)
#define DDI_CODEC_GET_VTABLE_VPP(ctx) (ctx->vtable_vpp)
#define DDI_CODEC_GET_VTABLE_TPI(ctx) (ctx->vtable_tpi)
#define DDI_CODEC_BATCH_BUFFER_SIZE 0x80000
#define DDI_CODEC_LEFT_SHIFT_FOR_REFLIST1 16
/* Number of supported input color formats */
#define DDI_VP_NUM_INPUT_COLOR_STD 5
/* Number of supported output color formats */
#define DDI_VP_NUM_OUT_COLOR_STD 5
/* Number of forward references */
#define DDI_CODEC_NUM_FWD_REF 0
/* Number of backward references */
#define DDI_CODEC_NUM_BK_REF 0
/* Number of vp surface attributes */
#define DDI_CODEC_NUM_QUERY_ATTR_VP 9
#define DDI_CODEC_MAX_BITSTREAM_BUFFER 16
#define DDI_CODEC_MAX_BITSTREAM_BUFFER_MINUS1 (DDI_CODEC_MAX_BITSTREAM_BUFFER - 1)
#define DDI_CODEC_BITSTREAM_BUFFER_INDEX_BITS 4 //the bitstream buffer index is 4 bits length
#define DDI_CODEC_MAX_BITSTREAM_BUFFER_INDEX 0xF // the maximum bitstream buffer index is 0xF
#define DDI_CODEC_INVALID_BUFFER_INDEX -1
#define DDI_CODEC_VP8_MAX_REF_FRAMES 5
#define DDI_CODEC_MIN_VALUE_OF_MAX_BS_SIZE 10240
#define DDI_CODEC_VDENC_MAX_L0_REF_FRAMES 3
#define DDI_CODEC_VDENC_MAX_L1_REF_FRAMES 0
#define DDI_CODEC_FEI_MAX_NUM_MVPREDICTOR 4
#define DDI_CODEC_FEI_MAX_INTERFACE_REVISION 1000
#define DDI_CODEC_FEI_CTB_CMD_SIZE_SKL 16
#define DDI_CODEC_FEI_CU_RECORD_SIZE_SKL_KBL 64
#define DDI_CODEC_STATS_MAX_NUM_PAST_REFS 1
#define DDI_CODEC_STATS_MAX_NUM_FUTURE_REFS 1
#define DDI_CODEC_STATS_MAX_NUM_OUTPUTS 3
#define DDI_CODEC_STATS_INTERLACED_SUPPORT 1
#define DDI_CODEC_GEN_CONFIG_ATTRIBUTES_DEC_BASE 0 // Dec config_id starts at this value
#define DDI_CODEC_GEN_CONFIG_ATTRIBUTES_ENC_BASE 1024 // Enc config_id starts at this value
/* Some filters in va_private.h */
#define DDI_VP_MAX_NUM_FILTERS 8
#define DDI_VP_GEN_CONFIG_ATTRIBUTES_BASE 2048 // VP config_id starts at this value
// Enable unlimited output buffer, delete this build option (remove multiple output buffer) when it is verified
#define ENABLE_ENC_UNLIMITED_OUTPUT
typedef struct _DDI_CODEC_VC1BITPLANE_OBJECT
{
uint8_t *pBitPlaneBase;
bool bUsed;
} DDI_CODEC_VC1BITPLANE_OBJECT;
typedef struct _DDI_CODEC_BITSTREAM_BUFFER_INFO
{
uint8_t *pBaseAddress; // For JPEG it is a memory address when allocate slice data from CPU.
uint32_t uiOffset;
uint32_t uiLength;
VABufferID vaBufferId;
bool bRendered; // whether this slice data will be rendered.
PDDI_MEDIA_BUFFER pMappedGPUBuffer; // the GPU mapping for this buffer.
bool bIsUseExtBuf;
uint8_t *pSliceBuf;
} DDI_CODEC_BITSTREAM_BUFFER_INFO;
typedef struct _DDI_CODEC_BUFFER_PARAM_H264
{
// slice control buffer
VASliceParameterBufferH264 *pVASliceParaBufH264;
VASliceParameterBufferBase *pVASliceParaBufH264Base;
// one picture buffer
VAPictureParameterBufferH264 PicParam264;
// one IQ buffer
VAIQMatrixBufferH264 IQm264;
} DDI_CODEC_BUFFER_PARAM_H264;
typedef struct _DDI_CODEC_BUFFER_PARAM_MPEG2
{
// slice control buffer
VASliceParameterBufferMPEG2 *pVASliceParaBufMPEG2;
// one picture buffer
VAPictureParameterBufferMPEG2 PicParamMPEG2;
// one IQ buffer
VAIQMatrixBufferMPEG2 IQmMPEG2;
} DDI_CODEC_BUFFER_PARAM_MPEG2;
typedef struct _DDI_CODEC_BUFFER_PARAM_VC1
{
// slice control buffer
VASliceParameterBufferVC1 *pVASliceParaBufVC1;
// one picture buffer
VAPictureParameterBufferVC1 PicParamVC1;
uint8_t *pBitPlaneBuffer;
DDI_MEDIA_BUFFER *pVC1BitPlaneBuffObject[DDI_CODEC_MAX_BITSTREAM_BUFFER];
DDI_CODEC_VC1BITPLANE_OBJECT VC1BitPlane[DDI_CODEC_MAX_BITSTREAM_BUFFER];
uint32_t dwVC1BitPlaneIndex;
MOS_RESOURCE resBitPlaneBuffer;
} DDI_CODEC_BUFFER_PARAM_VC1;
typedef struct _DDI_CODEC_BUFFER_PARAM_JPEG
{
// slice parameter buffer
VASliceParameterBufferJPEGBaseline *pVASliceParaBufJPEG;
// picture parameter buffer
VAPictureParameterBufferJPEGBaseline PicParamJPEG;
//IQ Matrix Buffer
VAIQMatrixBufferJPEGBaseline IQmJPEG;
} DDI_CODEC_BUFFER_PARAM_JPEG;
typedef struct _DDI_CODEC_BUFFER_PARAM_VP8
{
// slice control buffer
VASliceParameterBufferVP8 *pVASliceParaBufVP8;
// one picture buffer
VAPictureParameterBufferVP8 PicParamVP8;
// one IQ buffer
VAIQMatrixBufferVP8 IQmVP8;
// Probability data
DDI_MEDIA_BUFFER *pVP8ProbabilityDataBuffObject;
MOS_RESOURCE resProbabilityDataBuffer;
uint8_t *pProbabilityDataBase;
VAProbabilityDataBufferVP8 ProbabilityDataVP8;
// Reference frames
DDI_MEDIA_SURFACE *pReferenceFrames[DDI_CODEC_VP8_MAX_REF_FRAMES];
} DDI_CODEC_BUFFER_PARAM_VP8;
typedef struct _DDI_CODEC_BUFFER_PARAM_HEVC
{
// slice control buffer
VASliceParameterBufferHEVC *pVASliceParaBufHEVC;
VASliceParameterBufferBase *pVASliceParaBufBaseHEVC;
//slice control buffe for range extension
VASliceParameterBufferHEVCExtension *pVASliceParaBufHEVCRext;
// one picture buffer
VAPictureParameterBufferHEVC PicParamHEVC;
//one picture buffer for range extension
VAPictureParameterBufferHEVCExtension PicParamHEVCRext;
// one IQ buffer
VAIQMatrixBufferHEVC IQmHEVC;
} DDI_CODEC_BUFFER_PARAM_HEVC;
typedef struct _DDI_CODEC_BUFFER_PARAM_VP9
{
// one picture buffer
VADecPictureParameterBufferVP9 PicParamVP9;
// slice control buffer: 8 * sizeof(VASegmentParameterVP9)
VASliceParameterBufferVP9 *pVASliceParaBufVP9;
} DDI_CODEC_BUFFER_PARAM_VP9;
typedef struct _DDI_CODEC_COM_BUFFER_MGR
{
// bitstream buffer
DDI_MEDIA_BUFFER *pBitStreamBuffObject[DDI_CODEC_MAX_BITSTREAM_BUFFER];
uint8_t *pBitStreamBase[DDI_CODEC_MAX_BITSTREAM_BUFFER];
uint32_t dwBitstreamIndex; //indicating which bitstream buffer is used now
uint64_t ui64BitstreamOrder; //save bitstream buffer index used by previous 15 frames and current frame. the MSB is the oldest one, the LSB is current one.
MOS_RESOURCE resBitstreamBuffer;
uint8_t *pBitstreamBuffer;
DDI_CODEC_BITSTREAM_BUFFER_INFO *pSliceData;
uint32_t m_maxNumSliceData;
uint32_t dwNumSliceData;
uint32_t dwNumSliceControl;
uint32_t dwMaxBsSize;
uint32_t dwSizeOfRenderedSliceData; // Size of all the rendered slice data buffer
uint32_t dwNumOfRenderedSliceData; // how many slice data buffers will be rendered.
uint32_t dwNumOfRenderedSlicePara; // how many slice parameters buffers will be rendered.
int32_t *pNumOfRenderedSliceParaForOneBuffer; // how many slice headers in one slice parameter buffer.
int32_t *pRenderedOrder; // a array to keep record the sequence when slice data rendered.
bool bIsSliceOverSize;
//decode parameters
union
{
DDI_CODEC_BUFFER_PARAM_H264 Codec_Param_H264;
DDI_CODEC_BUFFER_PARAM_MPEG2 Codec_Param_MPEG2;
DDI_CODEC_BUFFER_PARAM_VC1 Codec_Param_VC1;
DDI_CODEC_BUFFER_PARAM_JPEG Codec_Param_JPEG;
DDI_CODEC_BUFFER_PARAM_VP8 Codec_Param_VP8;
DDI_CODEC_BUFFER_PARAM_HEVC Codec_Param_HEVC;
DDI_CODEC_BUFFER_PARAM_VP9 Codec_Param_VP9;
} Codec_Param;
uint32_t dwEncodeNumSliceControl;
void *pHDCP2ParameterBuffer;
VACodedBufferSegment *pCodedBufferSegment; // For bitstream output
VAProcPipelineParameterBuffer ProcPipelineParamBuffer;
VAProcFilterParameterBuffer ProcFilterParamBuffer;
VACodedBufferSegment *pCodedBufferSegmentForStatusReport; // for extended Status report such as long-term reference for VP8-F encode
void *pCodecParamReserved;
void *pCodecSlcParamReserved;
// for External decode StreamOut Buffer
MOS_RESOURCE resExternalStreamOutBuffer;
} DDI_CODEC_COM_BUFFER_MGR;
typedef struct _DDI_CODEC_RENDER_TARGET_TABLE
{
int32_t iNumRenderTargets;
DDI_MEDIA_SURFACE *pCurrentRT; // raw input for encode
DDI_MEDIA_SURFACE *pCurrentReconTarget; // recon surface for encode
DDI_MEDIA_SURFACE *pRT[DDI_MEDIA_MAX_SURFACE_NUMBER_CONTEXT];
uint8_t ucRTFlag[DDI_MEDIA_MAX_SURFACE_NUMBER_CONTEXT];
} DDI_CODEC_RENDER_TARGET_TABLE, *PDDI_CODEC_RENDER_TARGET_TABLE;
#define DDI_CODEC_INVALID_FRAME_INDEX 0xffffffff
#define DDI_CODEC_NUM_MAX_REF_FRAME 16
#define DDI_CODEC_NUM_MACROBLOCKS_WIDTH(dwWidth) ((dwWidth + (CODECHAL_MACROBLOCK_WIDTH - 1)) / CODECHAL_MACROBLOCK_WIDTH)
#define DDI_CODEC_NUM_MACROBLOCKS_HEIGHT(dwHeight) ((dwHeight + (CODECHAL_MACROBLOCK_HEIGHT - 1)) / CODECHAL_MACROBLOCK_HEIGHT)
//! \brief Map buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//! \param [out] pbuf
//! Pointer to buffer
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_MapBuffer (
VADriverContextP ctx,
VABufferID buf_id,
void **pbuf
);
//! \brief Unmap buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_UnmapBuffer (
VADriverContextP ctx,
VABufferID buf_id
);
#ifdef __cplusplus
extern "C" {
#endif
//! \brief Hybrid query buffer attributes
//!
//! \param [in] dpy
//! VA display
//! \param [in] context
//! VA context ID
//! \param [in] bufferType
//! VA buffer type
//! \param [out] outputData
//! Output data
//! \param [out] outputDataLen
//! Length of output data
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
MEDIAAPI_EXPORT VAStatus DdiMedia_HybridQueryBufferAttributes(
VADisplay dpy,
VAContextID context,
VABufferType bufferType,
void *outputData,
uint32_t *outputDataLen);
//! \brief Set frame ID
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//! \param [in] frame_id
//! Frame ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_SetFrameID(
VADriverContextP ctx,
VASurfaceID surface,
uint32_t frame_id);
#ifdef __cplusplus
}
#endif
#endif // __MEDIA_LIBVA_H__
|