summaryrefslogtreecommitdiff
path: root/silk/NSQ.c
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2016-11-03 15:25:33 -0700
committerRalph Giles <giles@thaumas.net>2016-11-10 19:52:58 -0800
commit3fdfcd40457968a5b639095e40ebd0cde29453c6 (patch)
tree4bb9130ab6695cd500d3ee08473c0426cfde414f /silk/NSQ.c
parentf4389ef7a97ddf6a91142ab8c47c21f7f1c08631 (diff)
downloadopus-3fdfcd40457968a5b639095e40ebd0cde29453c6.tar.gz
Remove commented-out DEBUG_STORE_DATA calls. r=keon
Also remove the SILK_DEBUG_STORE_CLOSE_FILES flush call from opus_demo. This is debugging code which is no longer used, but defining the symbols for SILK_DEBUG_STORE_CLOSE_FILES and calling it from opus_demo causes linking problems on Microsoft Visual Studio where we have strict controls on public symbols and want to test the compiled DLL. Since the code isn't in active use, it's better to remove it to avoid clutter and address the linking issue.
Diffstat (limited to 'silk/NSQ.c')
-rw-r--r--silk/NSQ.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/silk/NSQ.c b/silk/NSQ.c
index 0e2ea504..da0217fb 100644
--- a/silk/NSQ.c
+++ b/silk/NSQ.c
@@ -168,7 +168,6 @@ void silk_NSQ_c
NSQ->lagPrev = pitchL[ psEncC->nb_subfr - 1 ];
/* Save quantized speech and noise shaping signals */
- /* DEBUG_STORE_DATA( enc.pcm, &NSQ->xq[ psEncC->ltp_mem_length ], psEncC->frame_length * sizeof( opus_int16 ) ) */
silk_memmove( NSQ->xq, &NSQ->xq[ psEncC->frame_length ], psEncC->ltp_mem_length * sizeof( opus_int16 ) );
silk_memmove( NSQ->sLTP_shp_Q14, &NSQ->sLTP_shp_Q14[ psEncC->frame_length ], psEncC->ltp_mem_length * sizeof( opus_int32 ) );
RESTORE_STACK;