Opened 6 years ago

Closed 5 years ago

#59 closed defect (wontfix)

Infinite loops

Reported by: nanhu Owned by:
Priority: minor Milestone:
Component: BMS Version: BMS-1.1
Keywords: Cc: ksuehring, XiangLi, fbossen, jvet@…, userlym@…

Description

In xSolveAndQuant(), loops controlled by while(quantCoeffSum!=targetCoeffSumInt && count < 10) can be infinite

Attachments (2)

CholFix_Bms_Tag1.patch (4.8 KB) - added by XiangLi 6 years ago.
Proposed fix
alf_fix.patch (1.3 KB) - added by nanhu 6 years ago.

Download all attachments as: .zip

Change history (9)

comment:1 Changed 6 years ago by ksuehring

It looks like count is not incremented at all, so this part of the condition will never be true.

Can you provide an example where the loop actually fails to finish? Or is it just static code analysis?

The code is inherited from JEM ALF code in QuantizeIntegerFilterPP().

comment:2 Changed 6 years ago by nanhu

No issue was found based on current code and CTC. But it may give rise to infinite loops. I advise to increase count to prevent it.

Changed 6 years ago by XiangLi

Proposed fix

comment:3 Changed 6 years ago by XiangLi

  • Cc userlym@… added

I received a fix from Yiming (userlym@…) for this. Please find the patch in the attachment. The reporter also fixed the issue of equation solving in some special case (such as gray picture input).

Changed 6 years ago by nanhu

comment:4 Changed 6 years ago by nanhu

patch is added

comment:5 Changed 6 years ago by ksuehring

I think this bug tracker issue now mixes up different problems. Those shouldn't be filed into one issue.

Can you please create a ticket, which describes the actual problem that is solved by CholFix_Bms_Tag1.patch​? Also the patch seems to replace three short functions by a large one. The three unused functions seem to be left behind.

Regarding the count issue: Incrementing seems to terminate the process early and will create different output. Does that have influence on coding performance? Did anybody run tests?

comment:6 Changed 6 years ago by yimingli

Thanks, the modification in the CholFix_Bms_Tag1.patch is to solve the invalid value calculated by Cholesky method. "count" not increasing in the loop may actually causes the infinite loop. But the trigger or the main reason for the infinite loop is the invalid value of the calculated Wiener filter. So we mixed it in this bug fix. For more details of the Cholesky method, I will add some explanations below or in a new ticket.

The failure case of the Cholesky method is not very common, thus in the CTC sequences, this bug (infinite loop) is not triggered although count is not increasing in the loop. So, If we only fix the bug as count++ or ++ count, the performance will not be changed in CTC sequences.

But it should be mentioned, if we only fix it with ++count, the failure case of Cholesky method is also exist and may affect the performance of ALF, although the loop is finite. We have also prepared the CTC results for our fix. If it is considered that it's better to create a new ticket to discuss it, I will create it and give more details in the new ticket. Or, if it is considered this modification is not only a bug fix, we can prepare a proposal for the discussion in the meeting.

Besides, I have also seen the fix in the alf_fix.patch provided by Nan Hu. I think the fix about the constraint of minInd is not necessary, since in the code above the fix, there is:

if (error<errMin
minInd==-1)

{

errMin=error;
minInd=k;

}
where minInd=k is always not smaller than 0.

comment:7 Changed 5 years ago by ksuehring

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

BMS is not maintained anymore. VTM is the currently supported reference software of VVC. If the report is still valid, please re-open and assign to VTM.

Note: See TracTickets for help on using tickets.