diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2013-10-06 15:24:17 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-10-06 14:13:28 -0700 |
commit | 9661044c69b0552d8bcfd873d9e7198b1d3c3e64 (patch) | |
tree | 6a440f693c17879dee83615f9600808511f5bf71 | |
parent | 8323e2de03c77796fe11f6f47bd4173f6b2a2ca9 (diff) |
Fixing CID 1043300. Trivial UNINIT fix.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
-rw-r--r-- | gr-vocoder/lib/codec2/quantise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-vocoder/lib/codec2/quantise.c b/gr-vocoder/lib/codec2/quantise.c index c098030992..a44eceee9c 100644 --- a/gr-vocoder/lib/codec2/quantise.c +++ b/gr-vocoder/lib/codec2/quantise.c @@ -636,7 +636,7 @@ void encode_lsps(int indexes[], float lsp[], int order) float wt[1]; float lsp_hz[LPC_MAX]; const float * cb; - float se; + float se = 0.0; /* convert from radians to Hz so we can use human readable frequencies */ |