Opened 10 years ago

Closed 10 years ago

#47 closed defect (fixed)

missing a close-bracket on slice_pic_order_cnt_lsb

Reported by: tsukuba.takeshi Owned by: tech
Priority: trivial Component: MV-HEVC text
Version: MV-HEVC Draft 5 Keywords:
Cc: tech, jct-3v@…

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

/ quote from F1004_v2 /
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 /

Change history (2)

comment:1 Changed 10 years ago by DefaultCC Plugin

  • Cc tech jct-3v@… added

comment:2 Changed 10 years ago by tech

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.

This list contains all users that will be notified about changes made to this ticket.

These roles will be notified: Reporter, Owner, Subscriber, Participant

  • Gerhard Tech(Owner, Subscriber, Participant, Always)
  • jct-3v@…(Subscriber)
  • Karsten Suehring(Always)
  • Takeshi Tsukuba(Reporter)