mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Correct comments in lin_resample re: what is actually used by asm.
Change-Id: Idd457f3c645c5d469ebc6fab0bfc85e7b8dd56da
This commit is contained in:
parent
88aeef9127
commit
6fd4780ac4
1 changed files with 2 additions and 2 deletions
|
|
@ -49,8 +49,8 @@ static struct resample_data
|
||||||
uint32_t delta; /* 00h: Phase delta for each step */
|
uint32_t delta; /* 00h: Phase delta for each step */
|
||||||
uint32_t phase; /* 04h: Current phase [pos16|frac16] */
|
uint32_t phase; /* 04h: Current phase [pos16|frac16] */
|
||||||
int32_t last_sample[2]; /* 08h: Last samples for interpolation (L+R) */
|
int32_t last_sample[2]; /* 08h: Last samples for interpolation (L+R) */
|
||||||
int32_t frequency; /* 10h: Virtual samplerate */
|
/* 10h */
|
||||||
/* 14h */
|
int32_t frequency; /* Virtual samplerate */
|
||||||
struct dsp_config *dsp; /* The DSP for this resampler */
|
struct dsp_config *dsp; /* The DSP for this resampler */
|
||||||
struct dsp_buffer resample_buf; /* Buffer descriptor for resampled data */
|
struct dsp_buffer resample_buf; /* Buffer descriptor for resampled data */
|
||||||
int32_t *resample_buf_arr[2]; /* Actual output data pointers */
|
int32_t *resample_buf_arr[2]; /* Actual output data pointers */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue