Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 96)

Ticket Resolution Summary Owner Reporter
#98 fixed Disabling of depth intra skip tech tech
Description

The encoder writes the skip_intra_flag syntax element to the bitstream although SkipIntraEnabledFlag is equal to 0.

The bug might be fixed by the following replacement in TEncEntropy.cpp (untested):

Replace

Void TEncEntropy::encodeDIS( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
{
  if ( !pcCU->getSlice()->getIsDepth() )
  {
    return;
  }

with

Void TEncEntropy::encodeDIS( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
{
  if( !pcCU->getSlice()->getDepthIntraSkipFlag() )
  {
    return;
  }

#100 fixed num_extra_slice_header_bits is not set correctly by the encoder. tech tech
Description

num_extra_slice_header_bits is set equal to 3 by the encoder, although only values in the range of 0 to 2 are allowed.

#101 fixed Camera parameters are not present in slice headers of pictures in depth layers tech tech
Description

Camera parameters are not present in slice headers of pictures in depth layers, but derived from texture.

However, according to the specification, they should be.

Note: See TracQuery for help on using queries.