Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 105)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#48 fixed OlsIdx fix in TAppEncCfg Vadim jaypadia
Description

In the file TAppEncCfg.cpp, line: 1986 while configuring information for more OLS defined in VPS extension, the index is setup incorrectly. Upto startOlsCtr = m_numLayerSets + m_numAddLayerSets;, the index is same as olsCtr. The below check should be '>='.

Int olsToLsIndex = (olsCtr > startOlsCtr) ? m_outputLayerSetIdx[olsCtr - m_numLayerSets] : olsCtr; Int olsToLsIndex = (olsCtr >= startOlsCtr) ? m_outputLayerSetIdx[olsCtr - m_numLayerSets] : olsCtr;

#29 fixed On all_layers_idr_aligned_flag Vadim adarsh
Description

In the decoder, after parsing the syntax element all_layers_idr_aligned_flag, the value is allocated to a wrong variable as follows

READ_FLAG(uiCode, "all_layers_idr_aligned_flag" ); vps->setCrossLayerIrapAlignFlag(uiCode);

It should be assigned as below.

READ_FLAG(uiCode, "all_layers_idr_aligned_flag" ); vps->setCrossLayerAlignedIdrOnlyFlag(uiCode);

#9 fixed On editorial fixes on Profile, tier and level semantics in subclause F.7.4.4 jlchen tsukuba.takeshi
Description

Regarding Profile, tier and level semantics in subclause F.7.4.4, there exist several editorial bugs as follows: 1) Expression of inferring rule for profile_tier_level() syntax structure in VPS extension is incorrect. 2) syntax name "profile_layer_set_ref_minus1" should be "profile_ref_minus1". 3) Variable "lsIdx" should not be used for referring elements of "profile_ref_minus1[]".

For more details, please see the attached modified WD.

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