Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Correct comments in lin_resample re: what is actually used by asm.

Change-Id: Idd457f3c645c5d469ebc6fab0bfc85e7b8dd56da

+2 -2
+2 -2
lib/rbcodec/dsp/lin_resample.c
··· 49 49 uint32_t delta; /* 00h: Phase delta for each step */ 50 50 uint32_t phase; /* 04h: Current phase [pos16|frac16] */ 51 51 int32_t last_sample[2]; /* 08h: Last samples for interpolation (L+R) */ 52 - int32_t frequency; /* 10h: Virtual samplerate */ 53 - /* 14h */ 52 + /* 10h */ 53 + int32_t frequency; /* Virtual samplerate */ 54 54 struct dsp_config *dsp; /* The DSP for this resampler */ 55 55 struct dsp_buffer resample_buf; /* Buffer descriptor for resampled data */ 56 56 int32_t *resample_buf_arr[2]; /* Actual output data pointers */