Opened 12 years ago

Closed 12 years ago

#592 closed defect (fixed)

Typo in "7.3.4.1 Sample adaptive offset parameter syntax"

Reported by: chihming.fu Owned by: bbross
Priority: minor Milestone: D7
Component: Text Version: D7 (I1003) d4
Keywords: Cc: bbross, wjhan, jct-vc@…

Description

Original:
sao_param( rx, ry, cIdx ){

...
if( !sao_merge_up_flag && !sao_merge_left_flag ) {

...
if( sao_type_idx[ cIdx ][ rx ][ ry ] = = 5 ) {

for( i = 0; i < 4; i++ ) {

if( sao_offset_abs[ cIdx ][ rx ][ ry ] != 0 )

sao_offset_sign[ cIdx ][ rx ][ ry ][ i ]

}

}

}

}

Fixed:
sao_param( rx, ry, cIdx ){

...
if( !sao_merge_up_flag && !sao_merge_left_flag ) {

...
if( sao_type_idx[ cIdx ][ rx ][ ry ] = = 5 ) {

for( i = 0; i < 4; i++ ) {

if( sao_offset_abs[ cIdx ][ rx ][ ry ][ i ] != 0 )

sao_offset_sign[ cIdx ][ rx ][ ry ][ i ]

}

}

}

}

Change History (2)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc bbross wjhan jct-vc@… added

comment:2 Changed 12 years ago by bbross

  • Resolution set to fixed
  • Status changed from new to closed

This is fixed in JCTVC-I1003 d5 (v6).

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

  • Benjamin Bross(Owner, Subscriber, Participant)
  • Chih-Ming Fu(Reporter)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Always)
  • Woo-Jin Han(Subscriber)