Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 1442)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#160 fixed (E049) SAO bug in SAO_EO_2 boundary chihming.fu
Description

Using revision r858 In TEncAdaptiveLoopFilter.cpp: 5270, the variable iSignDown2:

        iSignDown2 = xSign(pRec[iStride] - pRec[0]);

should be as follows

        iSignDown2 = xSign(pRec[iStride+1] - pRec[0]);

This bug is related to SAO_EO_2 (one type of SAO) in the LCU boundary. This modification make the meaning of SAO_EO_2 in the LCU boundary consistent with the rest of the LCU region. The BD-rate will improve about 0.01%.

#143 fixed (E049) When ALF off and SAO on, setUseNonCrossAlf(flag) is not set before calling ALF process davidf
Description

Using revision r804

In TEncGop.cpp:385, setting of non-cross-ALF is guarded by ALF being in use:

      if(pcSlice->getSPS()->getUseALF())
      {
       ...
      }

Later, however, at around line 509:

#if MTK_SAO
          if ( pcSlice->getSPS()->getUseALF() || (pcSlice->getSPS()->getUseSAO()) )
...
            m_pcAdaptiveLoopFilter->startALFEnc(pcPic, m_pcEntropyCoder );

The ALF process is called without the correct state being set.

#334 fixed --MRG=0 breaks in HE configs ksuehring thomasd
Description

--MRG=0 causes the encoder to fail in HE configs. Since the HM introduces a flag into the SPS which is not present in the WD, it's probably best to remove this option and the SPS coding. A patch to do this is attached.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.