Skip to content

Commit

Permalink
fix return to continue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Mar 20, 2024
1 parent b6fceb7 commit 588d380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions encoding/rs/encode.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ func (g *Encoder) interpolyWorker(
err := rb.ReverseBitOrderFr(ys)
if err != nil {
results <- err
return
continue
}
coeffs, err := g.GetInterpolationPolyCoeff(ys, uint32(j))
if err != nil {
results <- err
return
continue
}

frames[k].Coeffs = coeffs
Expand Down

0 comments on commit 588d380

Please sign in to comment.