Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Buethe <jbuethe@amazon.de>2023-12-18 11:47:45 +0300
committerJan Buethe <jbuethe@amazon.de>2023-12-18 11:47:45 +0300
commit65bd6c8ef0457370ce70665b75869350aef7add2 (patch)
treec019b771cf52d3844eda4684bbca16589918b1e3
parentb8cb639e5129af96ab751fc9076bb32c2bc06379 (diff)
compile bugfix
-rw-r--r--silk/decode_frame.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/silk/decode_frame.c b/silk/decode_frame.c
index fca8eb6a..3f35cc5b 100644
--- a/silk/decode_frame.c
+++ b/silk/decode_frame.c
@@ -105,10 +105,12 @@ opus_int silk_decode_frame(
silk_memmove( psDec->outBuf, &psDec->outBuf[ psDec->frame_length ], mv_len * sizeof(opus_int16) );
silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( opus_int16 ) );
+#ifdef ENABLE_OSCE
/********************************************************/
/* Run SILK enhancer */
/********************************************************/
osce_enhance_frame( psDec, psDecCtrl, pOut, ec_tell(psRangeDec) - ec_start, arch );
+#endif
/********************************************************/
/* Update PLC state */