Skip to content
Snippets Groups Projects
Commit 94a1510d authored by Fabrice Nabet's avatar Fabrice Nabet
Browse files

Merge branch 'bugfix-13-turbo_decoder_sse_8bit-frame-length-error' into 'develop1B'

Update 3gpplte_turbo_decoder_sse_8bit.c

maximum frame length is 6144

See merge request !9
parents 1568b5a1 2ace4029
No related branches found
No related tags found
No related merge requests found
......@@ -486,7 +486,7 @@ void compute_beta8(llr_t* alpha,llr_t* beta,llr_t *m_11,llr_t* m_10,unsigned sho
#endif
if (frame_length > 6143) {
if (frame_length > 6144) {
LOG_E(PHY,"compute_beta: frame_length %d\n",frame_length);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment