Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 96)

Ticket Resolution Summary Owner Reporter
#50 fixed delete problems in HTM9.0 tech jicheng
Description

In HTM9.0, the following code in TDecCU.cpp (490), TDecEntropy.cpp(404), TEncCU.cpp(2096), and TEncSearch.cpp(4494)

delete pcMvFieldSP; delete puhInterDirSP;

should be modified as

delete [] pcMvFieldSP; delete [] puhInterDirSP;

#51 fixed curAvailableFlag in Derivation process for a sub prediction block temporal inter-view motion vector candidate tech jicheng
Description

In section H.8.5.3.2.16 Derivation process for a sub prediction block temporal inter-view motion vector candidate of JCT3V-F1001_v4, the sentence: – The variable curAvailableFlag is set equal to ( spRefIdxL0[ xBlk ][ yBlk ] | | spRefIdxL1[ xBlk ][ yBlk ] ). should be modified as – The variable curAvailableFlag is set equal to ( spPredFlagL0[ xBlk ][ yBlk ] | | spPredFlagL1[ xBlk ][ yBlk ] ).

#52 fixed Pixel location in full-sample unit is wrongly set as that in quarter-sample unit in VSP process H.8.5.3.3.8 tech jicheng
Description

In H.8.5.3.3.8,

  1. The following equation

xIntL = xP + xL+ disparitySamples[ xL ][ yL ] (H 235) should be modified as xIntL = xP + xL+ (disparitySamples[ xL ][ yL ])>>2 (H 235)

  1. The following equation

xIntC = ( xP / 2 ) + xC + disparitySamples[ xC << 1 ][ yC << 1 ] (H 239) should be modified as xIntC = ( xP / 2 ) + xC + (disparitySamples[ xC << 1 ][ yC << 1 ]>>3) (H 239)

Note: See TracQuery for help on using queries.