Opened 12 years ago

Closed 12 years ago

Last modified 3 years ago

#793 closed defect (fixed)

possible infinite loop in 7.3.9.1

Reported by: PhuongNguyen Owned by: bbross
Priority: minor Milestone: D8
Component: Text Version: D8 (J1003) d7
Keywords: Cc: bbross, wjhan, jct-vc@…

Description

Hi,

actually, there is the following loops

pbOffset = ( PartMode = = PART_NxN ) ? ( nCbS / 2 ) : 0
for( j = 0; j <= pbOffset; j = j + pbOffset )
for( i = 0; i <= pbOffset; i = i + pbOffset ) {
...

This will cause an infinite loop when PartMode == PART_2Nx2N : for j = 0; j <= 0; j = j + 0.

I think the text should be :

pbOffset = ( PartMode = = PART_NxN ) ? ( nCbS / 2 ) : nCbS
for( j = 0; j < pbOffset; j = j + pbOffset )
for( i = 0; i < pbOffset; i = i + pbOffset ) {
...

Best regards,
Phuong Nguyen.

Change History (3)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc bbross wjhan jct-vc@… added

comment:2 Changed 12 years ago by PhuongNguyen

Please read :

I think the text should be :

pbOffset = ( PartMode = = PART_NxN ) ? ( nCbS / 2 ) : nCbS
for( j = 0; j < nCbS; j = j + pbOffset )
for( i = 0; i < nCbS; i = i + pbOffset ) {

comment:3 Changed 12 years ago by bbross

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

This is fixed in JCTVC-K1003_v3.

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)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Always)
  • Woo-Jin Han(Subscriber)