Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 1442)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#451 fixed use_delta_flag[ j ] is not decoded when used_by_curr_pic_flag[ j ] is 1. bbross tktan
Description

Change the value use_delta_flag[ j ] in the first row of Table 7-9 from "1" to "inferred".

#945 fixed unused xCheckBestMode function bbross
Description

It seems that the function xCheckBestMode without depth parameter is never used in HM Code.

// check whether current try is the best
Void TEncCu::xCheckBestMode( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
#767 fixed unnecessary condition for cbf_cb/cbf_cr in 7.3.8.8 bbross sasai
Description

At 7.3.8.8 Transform tree syntax, the condition for cbf_cb / cbf_cr, the condition " if ( trafoDepth == 0 | | log2TrafoSize > 2 ) " is present. However, if trafoDepth is equal to "0", log2TrafoSize is always greater than and equal to "3".

Replace if( trafoDepth == 0 | | log2TrafoSize > 2 ){

if( trafoDepth == 0 | | cbf_cb[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cb[ x0 ][ y0 ][ trafoDepth ]

if( trafoDepth == 0 | | cbf_cr[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cr[ x0 ][ y0 ][ trafoDepth ]

} by if( log2TrafoSize > 2 ) {

if( trafoDepth == 0 | | cbf_cb[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cb[ x0 ][ y0 ][ trafoDepth ]

if( trafoDepth == 0 | | cbf_cr[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cr[ x0 ][ y0 ][ trafoDepth ]

}

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