Skip to content
Snippets Groups Projects
Commit 088929d1 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

oops, removed a minus sign that should never have appeared

parent 559fbe8b
No related branches found
No related tags found
No related merge requests found
......@@ -180,7 +180,7 @@ static void pitch_xcorr(opus_val16 *x, opus_val16 *y, opus_val32 *xcorr, int len
{
int i, j;
#ifdef FIXED_POINT
opus_val32 maxcorr=-1;
opus_val32 maxcorr=1;
#endif
for (i=0;i<max_pitch;i++)
{
......@@ -207,7 +207,7 @@ static void pitch_xcorr(opus_val16 *_x, opus_val16 *_y, opus_val32 *xcorr, int l
{
int i,j;
#ifdef FIXED_POINT
opus_val32 maxcorr=-1;
opus_val32 maxcorr=1;
#endif
for (i=0;i<max_pitch;i+=4)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment