Custom query (1557 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 1557)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#39 fixed encoder bug of delta QP h.huang
Description

In TEncCu.cpp line 2935:

m_pcEntropyCoder->encodeQP( rpcTempCU, 0, false );

It should be

m_pcEntropyCoder->encodeQP( rpcTempCU, uiFirstNonZeroPartIdx, false );

When delta QP is on, this bug can cause inaccurate coding of QP in RDO process, thus can affect the RD performance. No impact under CTC.

#40 fixed ALF crash when image height is greater than image width yuwenhe
Description

In the function Void TComAdaptiveLoopFilter::create() in file TComAdaptiveLoopFilter.cpp, line 994: get_mem2Dpel(&m_varImgMethods, m_img_width, m_img_width);

It should be changed as: be get_mem2Dpel(&m_varImgMethods, m_img_height, m_img_width)

#41 fixed Bug related to parallel processing where float-point QP is used aikiho
Description

Different QPs are assigned to the last I-frame of RAS(N-1) and the first I-frame of RAS(N) where float-point QP is used with parallel processing in JEM4.0. The follows are example of the bug.

  • RAS[0], POC 48 TId: 0 ( I-SLICE, nQP 22 QP 22 ) 2871624 bits [Y 48.1091 dB U 44.3101 dB V 44.8896 dB] [ET 5755 ] [L0 ] [L1 ]
  • RAS[1], POC 0 TId: 0 ( I-SLICE, nQP 21 QP 21 ) 3232160 bits [Y 48.7618 dB U 44.8700 dB V 45.3831 dB]
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.