You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because mq->bp is initialized to one less than the actual data start address.
It could be possible for uninitialized memory to be equal to 0xFF, in which case there will be an error in the code stream. For lossless encoding, this could lead to lossy encoding.
An easy fix is to check if mqc->bp < mqc->start before entering the if statement.
On a modern CPU with branch prediction, there should be no performance hit.
The text was updated successfully, but these errors were encountered:
http://my.cdash.org/viewDynamicAnalysisFile.php?id=3409924
This is because mq->bp is initialized to one less than the actual data start address.
It could be possible for uninitialized memory to be equal to 0xFF, in which case there will be an error in the code stream. For lossless encoding, this could lead to lossy encoding.
An easy fix is to check if
mqc->bp < mqc->start
before entering the if statement.On a modern CPU with branch prediction, there should be no performance hit.
The text was updated successfully, but these errors were encountered: