Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 105)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#15 fixed Inference of DPB-parameters in SPS Vadim adarsh
Description

In SHM-5.1-dev r614, the DPB-parameters in SPS are inferred when they are not signalled for nuh_layer_id greater than 0. The following inference in TDecCavlc.cpp:parseSPS() is incorrect because the inference rule is dependent on which layer accesses the SPS; that information will be unavailable at the point of parsing the SPS and hence the following should not be included in parseSPS().

for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++) {

pcSPS->setMaxDecPicBuffering( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getMaxVpsDecPicBufferingMinus1( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getTolsIdx(), pcSPS->getLayerId(), i)+1, i);

}

#17 fixed SPS layer ID should not be used for layer ID of slice Vadim adarsh
Description

In some places, the SPS layer ID is used instead of the slice layer ID, which could be wrong in many cases.

Attached ticket fixes this issue.

#26 fixed Declaration of m_maxTSLayerMinus1 Vadim adarsh
Description

The array m_maxTSLayerMinus1 is declared in TComSlice.h as

UInt m_maxTSLayerMinus1[MAX_VPS_LAYER_ID_PLUS1 - 1];

It should be

UInt m_maxTSLayerMinus1[MAX_VPS_LAYER_ID_PLUS1];

because the #sub-layers is signalled for each layer; hence "-1" should not be there.

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