Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c
diff --git a/third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c b/third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c
index 6ca6c1184d865f7fbbc15bcc6cbb329b26b86a02..994c299abd1240cdb37597e3a8aca8207e89a976 100644
--- a/third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c
+++ b/third_party/opus/src/silk/fixed/warped_autocorrelation_FIX.c
@@ -31,17 +31,13 @@ POSSIBILITY OF SUCH DAMAGE.
#include "main_FIX.h"
-#define QC 10
-#define QS 14
-
#if defined(MIPSr1_ASM)
#include "mips/warped_autocorrelation_FIX_mipsr1.h"
#endif
-#ifndef OVERRIDE_silk_warped_autocorrelation_FIX
/* Autocorrelations for a warped frequency axis */
-void silk_warped_autocorrelation_FIX(
+void silk_warped_autocorrelation_FIX_c(
opus_int32 *corr, /* O Result [order + 1] */
opus_int *scale, /* O Scaling of the correlation vector */
const opus_int16 *input, /* I Input data to correlate */
@@ -92,4 +88,3 @@ void silk_warped_autocorrelation_FIX(
}
silk_assert( corr_QC[ 0 ] >= 0 ); /* If breaking, decrease QC*/
}
-#endif /* OVERRIDE_silk_warped_autocorrelation_FIX */
« no previous file with comments | « third_party/opus/src/silk/fixed/structs_FIX.h ('k') | third_party/opus/src/silk/fixed/x86/prefilter_FIX_sse.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698