Skip to content

Commit ac6cc4b

Browse files
committed
Modify for fixing static code scan uninitialized issues on WW_08 2020
1 parent ba5db01 commit ac6cc4b

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

media_driver/agnostic/common/codec/hal/codechal_decode_hevc.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2697,7 +2697,8 @@ CodechalDecodeHevc::CodechalDecodeHevc(
26972697
m_widthLastMaxAlloced(0),
26982698
m_heightLastMaxAlloced(0),
26992699
m_ctbLog2SizeYMax(0),
2700-
m_hcpDecPhase(0)
2700+
m_hcpDecPhase(0),
2701+
m_secondLevelBatchBuffer()
27012702
{
27022703
CODECHAL_DECODE_FUNCTION_ENTER;
27032704

media_driver/agnostic/common/codec/hal/codechal_encoder_base.cpp

+24-3
Original file line numberDiff line numberDiff line change
@@ -4611,9 +4611,30 @@ CodechalEncoderGenState::CodechalEncoderGenState(CodechalEncoderState* encoder)
46114611

46124612
CodechalEncoderState::CodechalEncoderState(
46134613
CodechalHwInterface* hwInterface,
4614-
CodechalDebugInterface* debugInterface,
4615-
PCODECHAL_STANDARD_INFO standardInfo):
4616-
Codechal(hwInterface, debugInterface)
4614+
CodechalDebugInterface* debugInterface,
4615+
PCODECHAL_STANDARD_INFO standardInfo):
4616+
Codechal(hwInterface, debugInterface),
4617+
m_platform(),
4618+
m_videoGpuNode(MOS_GPU_NODE_MAX),
4619+
m_videoContext(MOS_GPU_CONTEXT_RENDER),
4620+
m_renderContext(MOS_GPU_CONTEXT_RENDER),
4621+
m_codecFunction(CODECHAL_FUNCTION_ENC),
4622+
m_walkerMode(MHW_WALKER_MODE_NOT_SET),
4623+
m_mfeEncodeParams(),
4624+
m_mfeEncodeSharedState(),
4625+
m_encodeParams(),
4626+
m_resHwCount(),
4627+
m_rawSurface(),
4628+
m_reconSurface(),
4629+
m_resBitstreamBuffer(),
4630+
m_resMbCodeSurface(),
4631+
m_resMvDataSurface(),
4632+
m_currOriginalPic(),
4633+
m_currReconstructedPic(),
4634+
m_resSyncObjectRenderContextInUse(),
4635+
m_resSyncObjectVideoContextInUse(),
4636+
m_encodeStatusBuf(),
4637+
m_encodeStatusBufRcs()
46174638
{
46184639
// Add Null checks here for all interfaces.
46194640
CODECHAL_ENCODE_CHK_NULL_NO_STATUS_RETURN(m_hwInterface);

media_driver/agnostic/gen11/hw/mhw_vebox_g11_X.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ const int32_t g_Vebox_BT2020_Forward_Gamma_LUT_g11[256] =
193193

194194
MhwVeboxInterfaceG11::MhwVeboxInterfaceG11(
195195
PMOS_INTERFACE pInputInterface)
196-
: MhwVeboxInterfaceGeneric(pInputInterface)
196+
: MhwVeboxInterfaceGeneric(pInputInterface),
197+
m_chromaParams()
197198
{
198199
MHW_FUNCTION_ENTER;
199200
MEDIA_SYSTEM_INFO *pGtSystemInfo = nullptr;

media_driver/agnostic/gen9_skl/codec/hal/codechal_fei_hevc_g9_skl.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -6872,7 +6872,10 @@ MOS_STATUS CodechalFeiHevcStateG9Skl::SetSequenceStructs()
68726872
CodechalFeiHevcStateG9Skl::CodechalFeiHevcStateG9Skl(CodechalHwInterface* hwInterface,
68736873
CodechalDebugInterface* debugInterface,
68746874
PCODECHAL_STANDARD_INFO standardInfo)
6875-
:CodechalEncHevcStateG9(hwInterface, debugInterface, standardInfo)
6875+
:CodechalEncHevcStateG9(hwInterface, debugInterface, standardInfo)
6876+
#ifdef HEVC_FEI_ENABLE_CMRT
6877+
,m_cmEvent(CM_NO_EVENT)
6878+
#endif
68766879
{
68776880
m_kernelBase = (uint8_t *)IGCODECKRN_G9;
68786881
m_kuid = IDR_CODEC_HEVC_FEI_COMBINED_KENREL_INTEL;

0 commit comments

Comments
 (0)