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:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-08-27 02:54:39 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-08-27 03:27:46 +0400
commita156c5ece7133383468d4cba33f067595d9da391 (patch)
tree09c9ce3583ee974d13caf1d26104491b8d303fa9 /celt/pitch.h
parent568de0a17b7b8e49fe3fa4d2a3cc4ebd62400cab (diff)
Makes the SILK pitch search use celt_pitch_xcorr()
Should gives us ARM/SSE optimizations for free.
Diffstat (limited to 'celt/pitch.h')
-rw-r--r--celt/pitch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/pitch.h b/celt/pitch.h
index 086a46ba..caffd24b 100644
--- a/celt/pitch.h
+++ b/celt/pitch.h
@@ -140,6 +140,6 @@ opus_val32
#else
void
#endif
-celt_pitch_xcorr(opus_val16 *_x, opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch);
+celt_pitch_xcorr(const opus_val16 *_x, const opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch);
#endif