blob: a3947114009ae240170e7f354d3f564422593d74 [file] [log] [blame]
/*
* Copyright (c) 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_caps_g9.cpp
//! \brief This file implements the C++ class/interface for gen9 media capbilities.
//!
#include "codec_def_encode_hevc.h"
#include "media_libva_util.h"
#include "media_libva.h"
#include "media_libva_caps_g9.h"
#include "media_libva_caps_factory.h"
VAStatus MediaLibvaCapsG9::GetPlatformSpecificAttrib(VAProfile profile,
VAEntrypoint entrypoint,
VAConfigAttribType type,
uint32_t *value)
{
DDI_CHK_NULL(value, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
VAStatus status = VA_STATUS_SUCCESS;
switch ((int)type)
{
case VAConfigAttribEncMaxRefFrames:
{
if (entrypoint == VAEntrypointEncSliceLP || !IsHevcProfile(profile))
{
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
else
{
*value = ENCODE_DP_HEVC_NUM_MAX_VME_L0_REF_G9 | (ENCODE_DP_HEVC_NUM_MAX_VME_L1_REF_G9 << 16);;
}
break;
}
case VAConfigAttribDecProcessing:
{
if (IsAvcProfile(profile) || IsHevcProfile(profile))
{
*value = VA_DEC_PROCESSING;
}
else
{
*value = VA_DEC_PROCESSING_NONE;
}
break;
}
case VAConfigAttribEncIntraRefresh:
{
if(IsAvcProfile(profile))
{
*value = VA_ENC_INTRA_REFRESH_ROLLING_COLUMN |
VA_ENC_INTRA_REFRESH_ROLLING_ROW;
}
else
{
*value = VA_ENC_INTRA_REFRESH_NONE;
}
break;
}
case VAConfigAttribEncROI:
{
VAConfigAttribValEncROI roi_attr = { .value = 0 };
if (entrypoint == VAEntrypointEncSliceLP)
{
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
else if (IsAvcProfile(profile))
{
// the capacity is differnt for CQP and BRC mode, set it as larger one here
roi_attr.bits.num_roi_regions = ENCODE_DP_AVC_MAX_ROI_NUM_BRC;
roi_attr.bits.roi_rc_priority_support = 0;
roi_attr.bits.roi_rc_qp_delta_support = 1;
}
else if (IsHevcProfile(profile))
{
roi_attr.bits.num_roi_regions = ENCODE_DP_HEVC_MAX_NUM_ROI;
roi_attr.bits.roi_rc_priority_support = 0;
roi_attr.bits.roi_rc_qp_delta_support = 1;
}
*value = roi_attr.value;
break;
}
case VAConfigAttribCustomRoundingControl:
{
if (IsAvcProfile(profile))
{
*value = 1;
}
else
{
*value = 0;
}
break;
}
case VAConfigAttribEncMaxSlices:
{
if (entrypoint == VAEntrypointEncSlice && IsHevcProfile(profile))
{
*value = CODECHAL_HEVC_MAX_NUM_SLICES_LVL_5;
}
else
{
*value =0;
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
break;
}
default:
status = VA_STATUS_ERROR_INVALID_PARAMETER;
break;
}
return status;
}
VAStatus MediaLibvaCapsG9::LoadProfileEntrypoints()
{
VAStatus status = VA_STATUS_SUCCESS;
status = LoadAvcDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadAvcEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadAvcEncLpProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadMpeg2DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadMpeg2EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVc1DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadJpegDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadJpegEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadHevcDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadHevcEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp8DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp8EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp9DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp9EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
#if !defined(_FULL_OPEN_SOURCE) && defined(ENABLE_KERNELS)
status = LoadNoneProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
#endif
return status;
}
VAStatus MediaLibvaCapsG9::QueryAVCROIMaxNum(uint32_t rcMode, bool isVdenc, uint32_t *maxNum, bool *isRoiInDeltaQP)
{
DDI_CHK_NULL(maxNum, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
DDI_CHK_NULL(isRoiInDeltaQP, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
if(isVdenc)
{
*maxNum = ENCODE_VDENC_AVC_MAX_ROI_NUMBER_G9;
}
else
{
switch (rcMode)
{
case VA_RC_CQP:
*maxNum = ENCODE_DP_AVC_MAX_ROI_NUMBER;
break;
default:
*maxNum = ENCODE_DP_AVC_MAX_ROI_NUM_BRC;
break;
}
}
*isRoiInDeltaQP = true;
return VA_STATUS_SUCCESS;
}