Opened 10 years ago Closed 10 years ago #46 closed defect (fixed)refRegionOffsetPresentFlag incorrectly configured
Description
In TAppEncTop.cpp, there is the following problematic line setting the encoder's refRegionOffsetPresentFlag based on the configuration value. m_acTEncTop[layer].setRefRegionOffsetPresentFlag( i, m_acLayerCfg[layer].m_refRegionOffsetPresentFlag );
This is incorrect, as the argument to the function is the array rather than the indexed boolean value inside the array. The array index "[i]" needs to be added to the argument: m_acTEncTop[layer].setRefRegionOffsetPresentFlag( i, m_acLayerCfg[layer].m_refRegionOffsetPresentFlag[i] ); Change history (2)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by Vadim
Note: See TracTickets for help on using tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
fixed as suggested with rev 973