Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 105)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#39 fixed redundant parentheses in equations H-85 and H-86 jlchen yanye
Description

Removed redundant parentheses.

#35 fixed SHM6.1 Decoder Aborts Vadim umasagar
Description

SHM6.1 TAppDecoder.exe aborts with the following error:

SHM software: Decoder Version [6.1 (HM-14.0)][Windows][VS 1800][32 bit]

POC 0 LId: 0 TId: 0 ( I-SLICE IDR, QP 26 ) [DT 0.541] [L0 ] [L1 ] [MD5:54ab44a520a0e349bcf91086e2842597,cdbc1d715873f6bbfaa62596a7ca3638, f7528fd91c9cad0e48fe93331cb0780e,(OK)] Assertion failed: m_fifo_idx < m_fifo->size(), file SHM6.1\source\Lib\TLibCommon/TComBitStream.h, line 191

A sample bit stream with two layers is attached here: Base layer resolution: 1920x1080, 30 fps Enhancement layer resolution: 3840x2160, 30 fps

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