diff options
author | Nils Wallménius <nils@rockbox.org> | 2013-08-31 09:00:13 +0200 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2013-08-31 09:00:13 +0200 |
commit | a602ea3d3dc2c3af28974fab0e0c026a5709fac7 (patch) | |
tree | d23f43cc42f1620fd761b2b04d4866faae39e835 | |
parent | 580b307fd791c0997a8831bc800bba87797bfb7e (diff) | |
download | rockbox-a602ea3.tar.gz rockbox-a602ea3.zip |
Silence spurious warning
Change-Id: I856c722e959314c0a86e9c0a3a31cb824ddb41cc
-rw-r--r-- | lib/rbcodec/codecs/libopus/celt/celt_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libopus/celt/celt_decoder.c b/lib/rbcodec/codecs/libopus/celt/celt_decoder.c index 929d1d441b..3d8211b9b0 100644 --- a/lib/rbcodec/codecs/libopus/celt/celt_decoder.c +++ b/lib/rbcodec/codecs/libopus/celt/celt_decoder.c @@ -668,7 +668,7 @@ int celt_decode_with_ec(CELTDecoder * OPUS_RESTRICT st, const unsigned char *dat VARDECL(int, fine_priority); VARDECL(int, tf_res); VARDECL(unsigned char, collapse_masks); - celt_sig *out_mem[2]; + celt_sig *out_mem[2] = {NULL, NULL}; celt_sig *decode_mem[2]; celt_sig *out_syn[2]; opus_val16 *lpc; |