Custom query (1557 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 1557)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#1387 fixed 6.5.3: wrong loop variable in equation 26 fbossen
Description

for( x = 0; y < blkWidth; y++ )

should most likely be

for( x = 0; x < blkWidth; x++ )

#501 fixed 8.5.2.14. Typo fbarbier
Description

In 8.5.2.14 Rounding process for motion vectors

mvX[ 1 ] = ( ( mvX[ 0 ] + offset − ( mvX[ 1 ]  >=  0 ) )  >>  rightShift )  <<  leftShift	(8‑654)

should be replaced by

mvX[ 1 ] = ( ( mvX[ 1 ] + offset − ( mvX[ 1 ]  >=  0 ) )  >>  rightShift )  <<  leftShift	(8‑654)

(wrong usage of mvX[0] in current version)

#1099 fixed 8.5.2.3: Typo in value of yNbA0 pierrick.bouvier
Description

In chapter 8.5.2.3 (Derivation process for spatial merging candidates), on page 236,

The luma location (xNbA0,yNbA0) inside the neighbouring luma coding block is set equal to (xCb - 1, yCb + cbWidth),

should be (s/cbWidth/cbHeight/):

The luma location (xNbA0,yNbA0) inside the neighbouring luma coding block is set equal to (xCb - 1, yCb + cbHeight)

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.