From 6fd4780ac42fef53afd18ff92c39ddc6ad2f4f7b Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sun, 6 May 2012 18:20:11 -0400 Subject: [PATCH] Correct comments in lin_resample re: what is actually used by asm. Change-Id: Idd457f3c645c5d469ebc6fab0bfc85e7b8dd56da --- lib/rbcodec/dsp/lin_resample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rbcodec/dsp/lin_resample.c b/lib/rbcodec/dsp/lin_resample.c index 5a6f55ac48..34dc35b2dd 100644 --- a/lib/rbcodec/dsp/lin_resample.c +++ b/lib/rbcodec/dsp/lin_resample.c @@ -49,8 +49,8 @@ static struct resample_data uint32_t delta; /* 00h: Phase delta for each step */ uint32_t phase; /* 04h: Current phase [pos16|frac16] */ int32_t last_sample[2]; /* 08h: Last samples for interpolation (L+R) */ - int32_t frequency; /* 10h: Virtual samplerate */ - /* 14h */ + /* 10h */ + int32_t frequency; /* Virtual samplerate */ struct dsp_config *dsp; /* The DSP for this resampler */ struct dsp_buffer resample_buf; /* Buffer descriptor for resampled data */ int32_t *resample_buf_arr[2]; /* Actual output data pointers */