summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/codecs
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2013-08-31 09:00:13 +0200
committerNils Wallménius <nils@rockbox.org>2013-08-31 09:00:13 +0200
commita602ea3d3dc2c3af28974fab0e0c026a5709fac7 (patch)
treed23f43cc42f1620fd761b2b04d4866faae39e835 /lib/rbcodec/codecs
parent580b307fd791c0997a8831bc800bba87797bfb7e (diff)
downloadrockbox-a602ea3d3dc2c3af28974fab0e0c026a5709fac7.tar.gz
rockbox-a602ea3d3dc2c3af28974fab0e0c026a5709fac7.zip
Silence spurious warning
Change-Id: I856c722e959314c0a86e9c0a3a31cb824ddb41cc
Diffstat (limited to 'lib/rbcodec/codecs')
-rw-r--r--lib/rbcodec/codecs/libopus/celt/celt_decoder.c2
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;