Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (10 - 12 of 105)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Resolution Summary Owner Reporter
#24 fixed The decoder crashes when VPS extension is not present in the bitstream Vadim danny
Description

The decoder crashes when decoding a single layer HEVC bitstream without VPS extension. This is due to some values not being initialized and the attached patch can be used to fix this.

#25 fixed The decoder crashes when VPS VUI is not present in the bitstream Vadim danny
Description

The decoder crashes when decoding a scalable HEVC bitstream without VPS VUI present in VPS extension. This is due to some values not being initialized and the attached patch can be used to fix this.

#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
Note: See TracQuery for help on using queries.