Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 105)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#5 fixed Incorrect inter-layer RPS derivation using all_ref_layers_active_flag Vadim krishna
Description

The inter-layer RPS derivation is not aligned with JCTVC-N1008v3 with respect to syntax element all_ref_layers_active_flag. Below code needs to be fixed appropriately.

#if ILP_SSH_SIG

if((sps->getLayerId() > 0) && rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() && (rpcSlice->getNumILRRefIdx() > 0) )

#else ...

#if ILP_SSH_SIG

else if( rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() == false )

...

#6 fixed Decoding crash when SliceMode=2 for RA and LDP/B cases Vadim XiangLi
Description

When using multiple slices per picture, such as SlideMode=2 (other settings are the same as SHVC CTC), decoding crash is observed with SHM-3.x software.

#7 fixed missing a close-bracket on slice_pic_order_cnt_lsb jlchen tsukuba.takeshi
Description

A close-bracket corresponding to a if statement, i.e., if( nuh_layer_id > 0 | | ( nal_unit_type != IDR_W_RADL && nal_unit_type != IDR_N_LP ) ) is missed.

There are two options.

Op.1) Insert a close-bracket after slice_temporal_mvp_enabled_flag
Op.2) Remove a open-bracket

In SHM, currently Op.1 was already integrated. Those changes don’t affect decoding/encoding process at all.

/ quote from O1008_v1 / if( ( nuh_layer_id > 0 ) | | ( nal_unit_type != IDR_W_RADL && nal_unit_type != IDR_N_LP ) ) "{" / Op.2) remove this open-bracket /

slice_pic_order_cnt_lsb

if( nal_unit_type != IDR_W_RADL && nal_unit_type != IDR_N_LP ) {

short_term_ref_pic_set_sps_flag … if( sps_temporal_mvp_enabled_flag )

slice_temporal_mvp_enabled_flag

} "}" / Op.1) insert a close-bracket here /

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