summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/codecs
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-03-02 21:56:05 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2021-03-03 02:58:34 +0000
commit2cde135cfe5c36fc2fc51893b562b5822db7ca57 (patch)
tree0d07e3b2b7ebb35c7ba4d32780ddfd9384fc9f8c /lib/rbcodec/codecs
parent93d8be80ced382ced50da96e551918f264b9c15f (diff)
downloadrockbox-2cde135cfe5c36fc2fc51893b562b5822db7ca57.tar.gz
rockbox-2cde135cfe5c36fc2fc51893b562b5822db7ca57.zip
flac fix dumb typo
Change-Id: Ic6269ca35374bcb1d6a5ad2c1848a1718fa4e01c
Diffstat (limited to 'lib/rbcodec/codecs')
-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,
return -7;
}
- for (j = 0; i < pred_order; j++)
+ for (j = 0; j < pred_order; j++)
{
coeffs[j] = get_sbits(&s->gb, coeff_prec);
}