Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 96)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#58 fixed Mismatch between WD and Software for the coding of "depth_dc_flag" tech ewchen
Description

In the reference software HTM-10.0r1, two contexts are used to code "depth_dc_flag" according to the number of segments. However, in the WD, only one context is used to code "depth_dc_flag".

#77 fixed Unused variable m_iBitsPerDepthValue tech fabianjaeger
Description

The DLT variable 'm_iBitsPerDepthValue' is not used anymore in the software and should be removed. This affects the following files:

TComSlice.h/.cpp TDecSbac.cpp TEncSbac.cpp

#95 fixed Writing/parsing of pps_scaling_list_ref_layer_id does not depend on pps_infer_scaling_list_flag tech hallapur
Description

This is a mismatch between the SW and the spec. As per spec, writing and parsing of pps_scaling_list_ref_layer_id syntax element should only happen when pps_infer_scaling_list_flag is equal to 1.

The condition should be added to the encoder and the decoder:

 if (pcPPS->getPpsInferScalingListFlag())
 {
   WRITE_CODE(pcPPS->getPpsScalingListRefLayerId(), 6, "pps_scaling_list_ref_layer_id");
 }
  if (pcPPS->getPpsInferScalingListFlag())
  {
    READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setPpsScalingListRefLayerId( uiCode );
  }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.