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
GetParity and SetParity functions are using uin8_t index as argument but it can overflow if FragNb is >255 (which can happen). If that is the case, whole LDPC algorithm gets corrupted and it is unable to repair any frames. Solution is to change GetParity and SetParity argument uint8_t index to uint16_t index.
The text was updated successfully, but these errors were encountered:
GetParity
andSetParity
functions are usinguin8_t index
as argument but it can overflow if FragNb is >255 (which can happen). If that is the case, whole LDPC algorithm gets corrupted and it is unable to repair any frames. Solution is to changeGetParity
andSetParity
argumentuint8_t index
touint16_t index
.The text was updated successfully, but these errors were encountered: