Skip to content
Snippets Groups Projects
Commit c896a5ca authored by Hongtao Wang's avatar Hongtao Wang Committed by Fabrice Le Léannec
Browse files

Fix: Issue #69, valgrind errors related to xPredIntraOpt_SIMD()

parent 222ac1ae
No related branches found
No related tags found
1 merge request!676Fix: Issue #69, valgrind errors related to xPredIntraOpt_SIMD()
......@@ -272,8 +272,8 @@ public:
#if JVET_AH0209_PDP
Pel* m_pdpIntraPredBufIP[NUM_LUMA_MODE];
bool m_pdpIntraPredReady[NUM_LUMA_MODE];
Pel m_ref[256];
Pel m_refShort[256];
Pel m_ref[256] = {0};
Pel m_refShort[256] = {0};
bool m_refAvailable;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment