Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10 - 12 of 1442)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Resolution Summary Owner Reporter
#436 wontfix context initValue undefined for split_transform_flag when depth is equal to zero zhyang
Description

In HM 6.0, split_transform_flag uses a depth-based context initValue table as follows:

INIT_TRANS_SUBDIV_FLAG[3][NUM_TRANS_SUBDIV_FLAG_CTX] =
{
  { CNU,  224,  167,  122,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
  { CNU,  124,  138,   94,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
  { CNU,  153,  138,  138,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
};

The context initValue for depth zero is equal to CNU (context model not used). This is true when LCU size is 64x64 since the split_transform_flag is never coded for depth zero. But when LCU size is less than 64x64, e.g., 16x16, split_transform_size may be coded for depth zero and the context initValue is undefined. Besides that, the context initValue in the spec (Table 9-23) has not been updated yet.

#49 fixed TMuC0.7 crashes when QuadtreeTULog2MinSize = 3 zhou@…
Description

the encoder crahes for all the configurations when 4x4 transform is disabled.

#304 fixed in the AMVP list derivation the scaled MVP can overwrite non-scaled MVP on top when the left side is mepty bbross zhou
Description

Solution:

8.4.2.1.7 Derivation process for motion vector predictor candidates

Replace

  1. When isScaledFlagLX is equal to 0, availableFlagLXB is set equal to 0 and for ( xBk, yBk ) from ( xB0, yB0 ) to ( xB2, yB2 ) where xB0 = xP +nPSW, xB1 = xB0 - MinPuSize , and xB2 = xP - MinPuSize, the following applies repeatedly until availableFlagLXB is equal to 1:

With

  1. When isScaledFlagLX is equal to 0 and availableFlagLXB is equal to 1, mvLXA is set equal to mvLXB and refIdxA is set equal to refIdxB and availableFlagLXA is set equal to 1.
  2. When isScaledFlagLX is equal to 0, availableFlagLXB is set equal to 0 and for ( xBk, yBk ) from ( xB0, yB0 ) to ( xB2, yB2 ) where xB0 = xP +nPSW, xB1 = xB0 - MinPuSize , and xB2 = xP - MinPuSize, the following applies repeatedly until availableFlagLXB is equal to 1:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
Note: See TracQuery for help on using queries.