#793 closed defect (fixed)possible infinite loop in 7.3.9.1
Description
Hi,
actually, there is the following loops
pbOffset = ( PartMode = = PART_NxN ) ? ( nCbS / 2 ) : 0
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
Best regards, Change History (3)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by PhuongNguyencomment:3 Changed 12 years ago by bbross
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
|
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 ) {