Custom query (1557 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 1557)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#20 fixed Bug in PDPC rate computation asaid
Description

In function 'TEncSearch::xEncIntraHeader', the function call inside macro COM16_C1046_PDPC_INTRA should be after the closing bracket (}), instead of before it.

With the bug, the function `m_pcEntropyCoder->encodePDPCIdx' is called only for non-intra slices, when the correct is that it should be called for all slices.

The bug's effect in coding performance is minor. A file with the corrected version is attached.

#22 fixed typo in derivation of context index for non-MPM luma intra mode coding h.huang
Description

TEncSbac.cpp line 1321:

m_pcBinIf->encodeBin(( (dir[j]%4) ==0 ) ? 1 : 0, m_cCUIntraPredSCModel.get( 0, 0, 9/3 ) ); flag to indicate if it is selected mode or non-selected mode

TDecSbac.cpp line 1365:

m_pcTDecBinIf->decodeBin( symbol, m_cCUIntraPredSCModel.get( 0, 0, 9/3) RExtDECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(ctype) );

The context index should be "9" instead of "9/3".

#23 fixed Mismatch between sequential and parallel encoding when intra period equals to GOP size h.huang
Description

If intra period equals to GOP size, some statistics for adaptive maximum BT size are not initialized in sequential coding after first GOP, but are initialized in parallel coding of each segment at the start of encoder. Therefore, the coding results of sequential and parallel encoding are slightly different due to adaptive maximum BT size. The mismatch only happens in coding the sequence SlideShow in class F of CTC, which has an intra period of 16 and is equal to GOP size.

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