Skip to content
Snippets Groups Projects
Commit 6a7d84cf authored by Yang Wang's avatar Yang Wang Committed by Karsten Suehring
Browse files

bugfix for inverse quantization of m_gcmpFunctionCoeffU and

m_gcmpFunctionCoeffV
parent b0efb51e
No related branches found
No related tags found
No related merge requests found
......@@ -1420,8 +1420,8 @@ void SEIReader::xParseSEIGeneralizedCubemapProjection(SEIGeneralizedCubemapProje
#if JVET_S0257_DUMP_360SEI_MESSAGE
if (!m_360SEIMessageDumped)
{
double a = sei.m_gcmpFunctionCoeffU[i] * 1.0 / 125;
double b = sei.m_gcmpFunctionCoeffV[i] * 1.0 / 125;
double a = ((int)sei.m_gcmpFunctionCoeffU[i] + 1) / 128.0;
double b = ((int)sei.m_gcmpFunctionCoeffV[i] + 1) / 128.0;
oss.str("");
oss<<a;
std::string a_str = oss.str();
......
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