diff options
author | William Wilgus <wilgus.william@gmail.com> | 2021-03-02 21:56:05 -0500 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2021-03-03 02:58:34 +0000 |
commit | 2cde135cfe5c36fc2fc51893b562b5822db7ca57 (patch) | |
tree | 0d07e3b2b7ebb35c7ba4d32780ddfd9384fc9f8c /lib/rbcodec/codecs | |
parent | 93d8be80ced382ced50da96e551918f264b9c15f (diff) | |
download | rockbox-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.c | 2 |
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 | } |