summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbcodec/codecs/libffmpegFLAC/decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libffmpegFLAC/decoder.c b/lib/rbcodec/codecs/libffmpegFLAC/decoder.c
index c84973014f..5e6aab36f4 100644
--- a/lib/rbcodec/codecs/libffmpegFLAC/decoder.c
+++ b/lib/rbcodec/codecs/libffmpegFLAC/decoder.c
@@ -302,7 +302,7 @@ static int decode_subframe_lpc(FLACContext *s, int32_t* decoded, int pred_order,
302 return -7; 302 return -7;
303 } 303 }
304 304
305 for (j = 0; i < pred_order; j++) 305 for (j = 0; j < pred_order; j++)
306 { 306 {
307 coeffs[j] = get_sbits(&s->gb, coeff_prec); 307 coeffs[j] = get_sbits(&s->gb, coeff_prec);
308 } 308 }