Skip to content
Snippets Groups Projects
Commit d5a16ae1 authored by Shunsuke Iwamura's avatar Shunsuke Iwamura
Browse files

Bugfix for the initialization issue on LADF

parent 21f33cdd
No related branches found
No related tags found
1 merge request!498Ticket #233 (Bugfix for the initialization issue on LADF)
......@@ -1743,6 +1743,7 @@ bool EncAppCfg::parseCfg( int argc, char* argv[] )
CHECK( m_LadfNumIntervals != cfg_LadfQpOffset.values.size(), "size of LadfQpOffset must be equal to LadfNumIntervals");
CHECK( m_LadfNumIntervals - 1 != cfg_LadfIntervalLowerBound.values.size(), "size of LadfIntervalLowerBound must be equal to LadfNumIntervals - 1");
m_LadfQpOffset = cfg_LadfQpOffset.values;
m_LadfIntervalLowerBound[0] = 0;
for (int k = 1; k < m_LadfNumIntervals; k++)
{
m_LadfIntervalLowerBound[k] = cfg_LadfIntervalLowerBound.values[k - 1];
......
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