2005-06-26 19:41:29 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Miika Pekkarinen
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-07-24 15:32:28 +00:00
|
|
|
#include <inttypes.h>
|
2005-06-27 21:12:09 +00:00
|
|
|
#include <string.h>
|
2005-06-26 19:41:29 +00:00
|
|
|
#include "dsp.h"
|
2006-01-29 15:37:03 +00:00
|
|
|
#include "eq.h"
|
2005-07-16 12:25:28 +00:00
|
|
|
#include "kernel.h"
|
2005-06-26 19:41:29 +00:00
|
|
|
#include "playback.h"
|
|
|
|
#include "system.h"
|
2005-07-24 15:32:28 +00:00
|
|
|
#include "settings.h"
|
2005-08-11 18:56:20 +00:00
|
|
|
#include "replaygain.h"
|
2005-07-24 15:32:28 +00:00
|
|
|
#include "debug.h"
|
2005-06-26 19:41:29 +00:00
|
|
|
|
|
|
|
/* The "dither" code to convert the 24-bit samples produced by libmad was
|
2005-07-16 12:25:28 +00:00
|
|
|
* taken from the coolplayer project - coolplayer.sourceforge.net
|
|
|
|
*/
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-08-11 18:56:20 +00:00
|
|
|
/* 16-bit samples are scaled based on these constants. The shift should be
|
2005-07-16 12:25:28 +00:00
|
|
|
* no more than 15.
|
|
|
|
*/
|
|
|
|
#define WORD_SHIFT 12
|
|
|
|
#define WORD_FRACBITS 27
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
#define NATIVE_DEPTH 16
|
|
|
|
#define SAMPLE_BUF_SIZE 256
|
|
|
|
#define RESAMPLE_BUF_SIZE (256 * 4) /* Enough for 11,025 Hz -> 44,100 Hz*/
|
2005-07-24 15:32:28 +00:00
|
|
|
#define DEFAULT_REPLAYGAIN 0x01000000
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
/* These are the constants for the filters in the crossfeed */
|
|
|
|
|
|
|
|
#define ATT 0x0CCCCCCDL /* 0.1 */
|
|
|
|
#define ATT_COMP 0x73333333L /* 0.9 */
|
|
|
|
#define LOW 0x4CCCCCCDL /* 0.6 */
|
|
|
|
#define LOW_COMP 0x33333333L /* 0.4 */
|
2006-02-08 08:01:31 +00:00
|
|
|
#define HIGH_NEG -0x66666666L /* -0.2 (not unsigned!) */
|
2005-11-14 21:56:56 +00:00
|
|
|
#define HIGH_COMP 0x66666666L /* 0.8 */
|
|
|
|
|
2005-07-18 13:09:05 +00:00
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
2005-07-16 12:25:28 +00:00
|
|
|
|
2005-07-30 13:47:16 +00:00
|
|
|
/* Multiply two S.31 fractional integers and return the sign bit and the
|
|
|
|
* 31 most significant bits of the result.
|
2005-06-26 19:41:29 +00:00
|
|
|
*/
|
2005-07-16 12:25:28 +00:00
|
|
|
#define FRACMUL(x, y) \
|
|
|
|
({ \
|
|
|
|
long t; \
|
2005-07-24 15:32:28 +00:00
|
|
|
asm volatile ("mac.l %[a], %[b], %%acc0\n\t" \
|
2005-07-16 12:25:28 +00:00
|
|
|
"movclr.l %%acc0, %[t]\n\t" \
|
|
|
|
: [t] "=r" (t) : [a] "r" (x), [b] "r" (y)); \
|
|
|
|
t; \
|
|
|
|
})
|
2005-08-18 19:25:39 +00:00
|
|
|
|
|
|
|
/* Multiply one S.31-bit and one S8.23 fractional integer and return the
|
2005-07-30 13:47:16 +00:00
|
|
|
* sign bit and the 31 most significant bits of the result.
|
2005-07-24 15:32:28 +00:00
|
|
|
*/
|
|
|
|
#define FRACMUL_8(x, y) \
|
|
|
|
({ \
|
|
|
|
long t; \
|
|
|
|
long u; \
|
|
|
|
asm volatile ("mac.l %[a], %[b], %%acc0\n\t" \
|
|
|
|
"move.l %%accext01, %[u]\n\t" \
|
|
|
|
"movclr.l %%acc0, %[t]\n\t" \
|
|
|
|
: [t] "=r" (t), [u] "=r" (u) : [a] "r" (x), [b] "r" (y)); \
|
2005-08-18 19:25:39 +00:00
|
|
|
(t << 8) | (u & 0xff); \
|
|
|
|
})
|
|
|
|
|
|
|
|
/* Multiply one S.31-bit and one S8.23 fractional integer and return the
|
|
|
|
* sign bit and the 31 most significant bits of the result. Load next value
|
|
|
|
* to multiply with into x from s (and increase s); x must contain the
|
|
|
|
* initial value.
|
|
|
|
*/
|
|
|
|
#define FRACMUL_8_LOOP(x, y, s) \
|
|
|
|
({ \
|
|
|
|
long t; \
|
|
|
|
long u; \
|
|
|
|
asm volatile ("mac.l %[a], %[b], (%[c])+, %[a], %%acc0\n\t" \
|
|
|
|
"move.l %%accext01, %[u]\n\t" \
|
|
|
|
"movclr.l %%acc0, %[t]\n\t" \
|
|
|
|
: [a] "+r" (x), [c] "+a" (s), [t] "=r" (t), [u] "=r" (u) \
|
|
|
|
: [b] "r" (y)); \
|
|
|
|
(t << 8) | (u & 0xff); \
|
2005-07-24 15:32:28 +00:00
|
|
|
})
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
#define ACC(acc, x, y) \
|
|
|
|
(void)acc; \
|
|
|
|
asm volatile ("mac.l %[a], %[b], %%acc0" \
|
|
|
|
: : [a] "i,r" (x), [b] "i,r" (y));
|
|
|
|
#define GET_ACC(acc) \
|
|
|
|
({ \
|
|
|
|
long t; \
|
|
|
|
(void)acc; \
|
|
|
|
asm volatile ("movclr.l %%acc0, %[t]" \
|
|
|
|
: [t] "=r" (t)); \
|
|
|
|
t; \
|
|
|
|
})
|
|
|
|
|
2005-11-15 00:16:24 +00:00
|
|
|
#define ACC_INIT(acc, x, y) ACC(acc, x, y)
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
#else
|
|
|
|
|
2005-11-15 00:16:24 +00:00
|
|
|
#define ACC_INIT(acc, x, y) acc = FRACMUL(x, y)
|
|
|
|
#define ACC(acc, x, y) acc += FRACMUL(x, y)
|
|
|
|
#define GET_ACC(acc) acc
|
2005-07-30 13:47:16 +00:00
|
|
|
#define FRACMUL(x, y) (long) (((((long long) (x)) * ((long long) (y))) >> 31))
|
2005-08-18 19:25:39 +00:00
|
|
|
#define FRACMUL_8(x, y) (long) (((((long long) (x)) * ((long long) (y))) >> 23))
|
|
|
|
#define FRACMUL_8_LOOP(x, y, s) \
|
|
|
|
({ \
|
|
|
|
long t = x; \
|
|
|
|
x = *(s)++; \
|
|
|
|
(long) (((((long long) (t)) * ((long long) (y))) >> 23)); \
|
|
|
|
})
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
#endif
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
struct dsp_config
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
long codec_frequency; /* Sample rate of data coming from the codec */
|
|
|
|
long frequency; /* Effective sample rate after pitch shift (if any) */
|
2005-07-16 12:25:28 +00:00
|
|
|
long clip_min;
|
|
|
|
long clip_max;
|
2005-07-24 15:32:28 +00:00
|
|
|
long track_gain;
|
|
|
|
long album_gain;
|
|
|
|
long track_peak;
|
|
|
|
long album_peak;
|
2005-08-18 19:25:39 +00:00
|
|
|
long replaygain; /* Note that this is in S8.23 format. */
|
2005-07-16 12:25:28 +00:00
|
|
|
int sample_depth;
|
|
|
|
int sample_bytes;
|
|
|
|
int stereo_mode;
|
|
|
|
int frac_bits;
|
|
|
|
bool dither_enabled;
|
2005-07-24 15:32:28 +00:00
|
|
|
bool new_gain;
|
2005-11-14 21:56:56 +00:00
|
|
|
bool crossfeed_enabled;
|
2006-02-07 14:07:46 +00:00
|
|
|
bool eq_enabled;
|
2005-07-16 12:25:28 +00:00
|
|
|
};
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
struct resample_data
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
long phase, delta;
|
|
|
|
long last_sample[2];
|
2005-07-16 12:25:28 +00:00
|
|
|
};
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
struct dither_data
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long error[3];
|
|
|
|
long random;
|
|
|
|
};
|
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
struct crossfeed_data
|
|
|
|
{
|
|
|
|
long lowpass[2];
|
|
|
|
long highpass[2];
|
|
|
|
long delay[2][13];
|
|
|
|
int index;
|
|
|
|
};
|
|
|
|
|
2006-01-29 15:37:03 +00:00
|
|
|
/* Current setup is one lowshelf filters, three peaking filters and one
|
|
|
|
highshelf filter. Varying the number of shelving filters make no sense,
|
|
|
|
but adding peaking filters are possible. */
|
|
|
|
struct eq_state {
|
|
|
|
char enabled[5]; /* Flags for active filters */
|
2006-02-02 20:03:43 +00:00
|
|
|
struct eqfilter filters[5];
|
2006-01-29 15:37:03 +00:00
|
|
|
};
|
|
|
|
|
2005-10-19 19:35:24 +00:00
|
|
|
static struct dsp_config dsp_conf[2] IBSS_ATTR;
|
|
|
|
static struct dither_data dither_data[2] IBSS_ATTR;
|
2005-11-28 22:26:20 +00:00
|
|
|
static struct resample_data resample_data[2] IBSS_ATTR;
|
2005-11-15 10:05:01 +00:00
|
|
|
struct crossfeed_data crossfeed_data IBSS_ATTR;
|
2006-01-29 15:37:03 +00:00
|
|
|
static struct eq_state eq_data;
|
2005-08-20 11:13:19 +00:00
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
static int pitch_ratio = 1000;
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
extern int current_codec;
|
|
|
|
struct dsp_config *dsp;
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
/* The internal format is 32-bit samples, non-interleaved, stereo. This
|
|
|
|
* format is similar to the raw output from several codecs, so the amount
|
|
|
|
* of copying needed is minimized for that case.
|
2005-06-26 19:41:29 +00:00
|
|
|
*/
|
|
|
|
|
2005-10-19 19:35:24 +00:00
|
|
|
static long sample_buf[SAMPLE_BUF_SIZE] IBSS_ATTR;
|
|
|
|
static long resample_buf[RESAMPLE_BUF_SIZE] IBSS_ATTR;
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
int sound_get_pitch(void)
|
|
|
|
{
|
|
|
|
return pitch_ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_pitch(int permille)
|
|
|
|
{
|
|
|
|
pitch_ratio = permille;
|
|
|
|
|
|
|
|
dsp_configure(DSP_SWITCH_FREQUENCY, (int *)dsp->codec_frequency);
|
|
|
|
}
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
/* Convert at most count samples to the internal format, if needed. Returns
|
|
|
|
* number of samples ready for further processing. Updates src to point
|
|
|
|
* past the samples "consumed" and dst is set to point to the samples to
|
|
|
|
* consume. Note that for mono, dst[0] equals dst[1], as there is no point
|
|
|
|
* in processing the same data twice.
|
|
|
|
*/
|
2006-02-07 20:38:55 +00:00
|
|
|
static int convert_to_internal(const char* src[], int count, long* dst[])
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
count = MIN(SAMPLE_BUF_SIZE / 2, count);
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if ((dsp->sample_depth <= NATIVE_DEPTH)
|
|
|
|
|| (dsp->stereo_mode == STEREO_INTERLEAVED))
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
dst[0] = &sample_buf[0];
|
2005-08-20 11:13:19 +00:00
|
|
|
dst[1] = (dsp->stereo_mode == STEREO_MONO)
|
2005-07-16 12:25:28 +00:00
|
|
|
? dst[0] : &sample_buf[SAMPLE_BUF_SIZE / 2];
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
dst[0] = (long*) src[0];
|
2005-08-20 11:13:19 +00:00
|
|
|
dst[1] = (long*) ((dsp->stereo_mode == STEREO_MONO) ? src[0] : src[1]);
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->sample_depth <= NATIVE_DEPTH)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
short* s0 = (short*) src[0];
|
|
|
|
long* d0 = dst[0];
|
|
|
|
long* d1 = dst[1];
|
|
|
|
int scale = WORD_SHIFT;
|
|
|
|
int i;
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->stereo_mode == STEREO_INTERLEAVED)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
*d0++ = *s0++ << scale;
|
|
|
|
*d1++ = *s0++ << scale;
|
|
|
|
}
|
|
|
|
}
|
2005-08-20 11:13:19 +00:00
|
|
|
else if (dsp->stereo_mode == STEREO_NONINTERLEAVED)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
short* s1 = (short*) src[1];
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
*d0++ = *s0++ << scale;
|
|
|
|
*d1++ = *s1++ << scale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
*d0++ = *s0++ << scale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-08-20 11:13:19 +00:00
|
|
|
else if (dsp->stereo_mode == STEREO_INTERLEAVED)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
long* s0 = (long*) src[0];
|
|
|
|
long* d0 = dst[0];
|
|
|
|
long* d1 = dst[1];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
*d0++ = *s0++;
|
|
|
|
*d1++ = *s0++;
|
|
|
|
}
|
|
|
|
}
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->stereo_mode == STEREO_NONINTERLEAVED)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
src[0] += count * dsp->sample_bytes;
|
|
|
|
src[1] += count * dsp->sample_bytes;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
2005-08-20 11:13:19 +00:00
|
|
|
else if (dsp->stereo_mode == STEREO_INTERLEAVED)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
src[0] += count * dsp->sample_bytes * 2;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
src[0] += count * dsp->sample_bytes;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
return count;
|
|
|
|
}
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
static void resampler_set_delta(int frequency)
|
|
|
|
{
|
|
|
|
resample_data[current_codec].delta = (unsigned long)
|
|
|
|
frequency * 65536LL / NATIVE_FREQUENCY;
|
|
|
|
}
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
/* Linear resampling that introduces a one sample delay, because of our
|
|
|
|
* inability to look into the future at the end of a frame.
|
|
|
|
*/
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
/* TODO: we really should have a separate set of resample functions for both
|
|
|
|
mono and stereo to avoid all this internal branching and looping. */
|
|
|
|
static long downsample(long **dst, long **src, int count,
|
2005-07-16 12:25:28 +00:00
|
|
|
struct resample_data *r)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long phase = r->phase;
|
|
|
|
long delta = r->delta;
|
2005-11-28 22:26:20 +00:00
|
|
|
long last_sample;
|
|
|
|
long *d[2] = { dst[0], dst[1] };
|
2005-07-16 12:25:28 +00:00
|
|
|
int pos = phase >> 16;
|
2005-11-28 22:26:20 +00:00
|
|
|
int i = 1, j;
|
2005-11-30 01:21:24 +00:00
|
|
|
int num_channels = dsp->stereo_mode == STEREO_MONO ? 1 : 2;
|
2005-11-28 22:26:20 +00:00
|
|
|
|
|
|
|
for (j = 0; j < num_channels; j++) {
|
|
|
|
last_sample = r->last_sample[j];
|
|
|
|
/* Do we need last sample of previous frame for interpolation? */
|
|
|
|
if (pos > 0)
|
|
|
|
{
|
|
|
|
last_sample = src[j][pos - 1];
|
|
|
|
}
|
|
|
|
*d[j]++ = last_sample + FRACMUL((phase & 0xffff) << 15,
|
|
|
|
src[j][pos] - last_sample);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
phase += delta;
|
2005-11-28 22:26:20 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
while ((pos = phase >> 16) < count)
|
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
for (j = 0; j < num_channels; j++)
|
|
|
|
*d[j]++ = src[j][pos - 1] + FRACMUL((phase & 0xffff) << 15,
|
|
|
|
src[j][pos] - src[j][pos - 1]);
|
|
|
|
phase += delta;
|
|
|
|
i++;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
/* Wrap phase accumulator back to start of next frame. */
|
|
|
|
r->phase = phase - (count << 16);
|
|
|
|
r->delta = delta;
|
2005-11-28 22:26:20 +00:00
|
|
|
r->last_sample[0] = src[0][count - 1];
|
|
|
|
r->last_sample[1] = src[1][count - 1];
|
2005-06-26 19:41:29 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
static long upsample(long **dst, long **src, int count, struct resample_data *r)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long phase = r->phase;
|
|
|
|
long delta = r->delta;
|
2005-11-28 22:26:20 +00:00
|
|
|
long *d[2] = { dst[0], dst[1] };
|
|
|
|
int i = 0, j;
|
2005-07-16 12:25:28 +00:00
|
|
|
int pos;
|
2005-11-30 01:21:24 +00:00
|
|
|
int num_channels = dsp->stereo_mode == STEREO_MONO ? 1 : 2;
|
2005-11-28 22:26:20 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
while ((pos = phase >> 16) == 0)
|
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
for (j = 0; j < num_channels; j++)
|
|
|
|
*d[j]++ = r->last_sample[j] + FRACMUL((phase & 0xffff) << 15,
|
|
|
|
src[j][pos] - r->last_sample[j]);
|
2005-07-16 12:25:28 +00:00
|
|
|
phase += delta;
|
|
|
|
i++;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
while ((pos = phase >> 16) < count)
|
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
for (j = 0; j < num_channels; j++)
|
|
|
|
*d[j]++ = src[j][pos - 1] + FRACMUL((phase & 0xffff) << 15,
|
|
|
|
src[j][pos] - src[j][pos - 1]);
|
2005-07-16 12:25:28 +00:00
|
|
|
phase += delta;
|
|
|
|
i++;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
/* Wrap phase accumulator back to start of next frame. */
|
|
|
|
r->phase = phase - (count << 16);
|
|
|
|
r->delta = delta;
|
2005-11-28 22:26:20 +00:00
|
|
|
r->last_sample[0] = src[0][count - 1];
|
|
|
|
r->last_sample[1] = src[1][count - 1];
|
2005-06-26 19:41:29 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
/* Resample count stereo samples. Updates the src array, if resampling is
|
|
|
|
* done, to refer to the resampled data. Returns number of stereo samples
|
|
|
|
* for further processing.
|
|
|
|
*/
|
|
|
|
static inline int resample(long* src[], int count)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long new_count;
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->frequency != NATIVE_FREQUENCY)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
long* dst[2] = {&resample_buf[0], &resample_buf[RESAMPLE_BUF_SIZE / 2]};
|
2005-07-16 12:25:28 +00:00
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->frequency < NATIVE_FREQUENCY)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
new_count = upsample(dst, src, count,
|
|
|
|
&resample_data[current_codec]);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-11-28 22:26:20 +00:00
|
|
|
new_count = downsample(dst, src, count,
|
|
|
|
&resample_data[current_codec]);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
2005-11-28 22:26:20 +00:00
|
|
|
src[0] = dst[0];
|
2005-11-30 01:21:24 +00:00
|
|
|
if (dsp->stereo_mode != STEREO_MONO)
|
|
|
|
src[1] = dst[1];
|
|
|
|
else
|
|
|
|
src[1] = dst[0];
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
2005-06-26 19:41:29 +00:00
|
|
|
else
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
new_count = count;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
return new_count;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
|
2005-08-18 19:25:39 +00:00
|
|
|
static inline long clip_sample(long sample, long min, long max)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
if (sample > max)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
sample = max;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
2005-08-18 19:25:39 +00:00
|
|
|
else if (sample < min)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
sample = min;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return sample;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
|
2005-08-11 18:56:20 +00:00
|
|
|
/* The "dither" code to convert the 24-bit samples produced by libmad was
|
2005-07-16 12:25:28 +00:00
|
|
|
* taken from the coolplayer project - coolplayer.sourceforge.net
|
|
|
|
*/
|
|
|
|
|
|
|
|
static long dither_sample(long sample, long bias, long mask,
|
|
|
|
struct dither_data* dither)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long output;
|
|
|
|
long random;
|
2005-08-18 19:25:39 +00:00
|
|
|
long min;
|
|
|
|
long max;
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
/* Noise shape and bias */
|
|
|
|
|
|
|
|
sample += dither->error[0] - dither->error[1] + dither->error[2];
|
|
|
|
dither->error[2] = dither->error[1];
|
|
|
|
dither->error[1] = dither->error[0] / 2;
|
|
|
|
|
|
|
|
output = sample + bias;
|
|
|
|
|
|
|
|
/* Dither */
|
|
|
|
|
|
|
|
random = dither->random * 0x0019660dL + 0x3c6ef35fL;
|
|
|
|
sample += (random & mask) - (dither->random & mask);
|
|
|
|
dither->random = random;
|
|
|
|
|
|
|
|
/* Clip and quantize */
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
min = dsp->clip_min;
|
|
|
|
max = dsp->clip_max;
|
2005-08-18 19:25:39 +00:00
|
|
|
sample = clip_sample(sample, min, max);
|
|
|
|
output = clip_sample(output, min, max) & ~mask;
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
/* Error feedback */
|
|
|
|
|
|
|
|
dither->error[0] = sample - output;
|
|
|
|
|
|
|
|
return output;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
/* Apply a constant gain to the samples (e.g., for ReplayGain). May update
|
|
|
|
* the src array if gain was applied.
|
|
|
|
* Note that this must be called before the resampler.
|
|
|
|
*/
|
2005-12-15 12:47:34 +00:00
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
2005-11-15 10:05:01 +00:00
|
|
|
static const long crossfeed_coefs[6] ICONST_ATTR = {
|
|
|
|
LOW, LOW_COMP, HIGH_NEG, HIGH_COMP, ATT, ATT_COMP
|
|
|
|
};
|
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
static void apply_crossfeed(long* src[], int count)
|
|
|
|
{
|
2005-11-15 10:05:01 +00:00
|
|
|
asm volatile (
|
|
|
|
"lea.l crossfeed_data, %%a1 \n"
|
|
|
|
"lea.l (16, %%a1), %%a0 \n"
|
|
|
|
"movem.l (%%a1), %%d0-%%d3 \n"
|
|
|
|
"move.l (120, %%a1), %%d4 \n"
|
|
|
|
/* fetch left, right, LOW and LOW_COMP for first iteration */
|
|
|
|
"move.l (%[src0]), %%d5 \n"
|
|
|
|
"move.l (%[src1]), %%d6 \n"
|
|
|
|
"move.l (%[coef])+, %%a1 \n"
|
|
|
|
"move.l (%[coef])+, %%a2 \n"
|
|
|
|
/* Register usage in loop:
|
|
|
|
* a0 = &delay[0][0], a1 & a2 = coefs
|
|
|
|
* d0 = low_left, d1 = low_right,
|
|
|
|
* d2 = high_left, d3 = high_right,
|
|
|
|
* d4 = delay line index,
|
|
|
|
* d5 = src[0][i], d6 = src[1][i].
|
|
|
|
* The rest are described in asm constraint list.
|
|
|
|
*/
|
2005-11-23 14:30:58 +00:00
|
|
|
".cfloop:"
|
2005-11-15 10:05:01 +00:00
|
|
|
/* LOW*low_left + LOW_COMP*left */
|
|
|
|
"mac.l %%a1, %%d0, %%acc0 \n"
|
|
|
|
"mac.l %%a2, %%d5, %%acc0 \n"
|
|
|
|
/* LOW*low_right + LOW_COMP*right */
|
|
|
|
"mac.l %%a1, %%d1, (%[coef])+, %%a1, %%acc1 \n" /* a1 = HIGH_NEG */
|
|
|
|
"mac.l %%a2, %%d6, (%[coef])+, %%a2, %%acc1 \n" /* a2 = HIGH_COMP */
|
|
|
|
"movclr.l %%acc0, %%d0 \n" /* get low_left */
|
|
|
|
"movclr.l %%acc1, %%d1 \n" /* get low_right */
|
|
|
|
/* HIGH_NEG*high_left + HIGH_COMP*left */
|
|
|
|
"mac.l %%a1, %%d2, %%acc0 \n"
|
|
|
|
"mac.l %%a2, %%d5, %%acc0 \n"
|
2005-12-15 12:40:39 +00:00
|
|
|
/* HIGH_NEG*high_right + HIGH_COMP*right */
|
2005-11-15 10:05:01 +00:00
|
|
|
"mac.l %%a1, %%d3, (%[coef])+, %%a1, %%acc1 \n" /* a1 = ATT */
|
|
|
|
"mac.l %%a2, %%d6, (%[coef])+, %%a2, %%acc1 \n" /* a2 = ATT_COMP */
|
|
|
|
"lea.l (-6*4, %[coef]), %[coef] \n" /* coef = &coefs[0] */
|
|
|
|
"move.l (%%a0, %%d4*4), %%a3 \n" /* a3=delay[0][idx] */
|
|
|
|
"move.l (52, %%a0, %%d4*4), %%d5 \n" /* d5=delay[1][idx] */
|
|
|
|
"movclr.l %%acc0, %%d2 \n" /* get high_left */
|
|
|
|
"movclr.l %%acc1, %%d3 \n" /* get high_right */
|
|
|
|
/* ATT*delay_r + ATT_COMP*high_left */
|
|
|
|
"mac.l %%a1, %%d5, (4, %[src0]), %%d5, %%acc0\n" /* d5 = src[0][i+1] */
|
|
|
|
"mac.l %%a2, %%d2, (4, %[src1]), %%d6, %%acc0\n" /* d6 = src[1][i+1] */
|
|
|
|
/* ATT*delay_l + ATT_COMP*high_right */
|
|
|
|
"mac.l %%a1, %%a3, (%[coef])+, %%a1, %%acc1 \n" /* a1 = LOW */
|
|
|
|
"mac.l %%a2, %%d3, (%[coef])+, %%a2, %%acc1 \n" /* a2 = LOW_COMP */
|
|
|
|
|
|
|
|
/* save crossfed samples to output */
|
|
|
|
"movclr.l %%acc0, %%a3 \n"
|
|
|
|
"move.l %%a3, (%[src0])+ \n" /* src[0][i++] = out_l */
|
|
|
|
"movclr.l %%acc1, %%a3 \n"
|
|
|
|
"move.l %%a3, (%[src1])+ \n" /* src[1][i++] = out_r */
|
|
|
|
"move.l %%d0, (%%a0, %%d4*4) \n" /* delay[0][index] = low_left */
|
|
|
|
"move.l %%d1, (52, %%a0, %%d4*4)\n" /* delay[1][index] = low_right */
|
|
|
|
"addq.l #1, %%d4 \n" /* index++ */
|
|
|
|
"cmp.l #13, %%d4 \n" /* if (index >= 13) { */
|
|
|
|
"jlt .nowrap \n"
|
|
|
|
"clr.l %%d4 \n" /* index = 0 */
|
|
|
|
".nowrap: \n" /* } */
|
|
|
|
"subq.l #1, %[count] \n"
|
|
|
|
"jne .cfloop \n"
|
|
|
|
/* save data back to struct */
|
|
|
|
"lea.l crossfeed_data, %%a1 \n"
|
|
|
|
"movem.l %%d0-%%d3, (%%a1) \n"
|
|
|
|
"move.l %%d4, (120, %%a1) \n"
|
|
|
|
/* NOTE: We _just_ have enough registers for our use here, clobber just
|
|
|
|
one more and GCC will fail. */
|
|
|
|
:
|
|
|
|
: [count] "d" (count),
|
|
|
|
[src0] "a" (src[0]), [src1] "a" (src[1]), [coef] "a" (crossfeed_coefs)
|
|
|
|
: "d0", "d1", "d2", "d3", "d4", "d5", "d6",
|
|
|
|
"a0", "a1", "a2", "a3"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void apply_crossfeed(long* src[], int count)
|
|
|
|
{
|
|
|
|
long a; /* accumulator */
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
long low_left = crossfeed_data.lowpass[0];
|
|
|
|
long low_right = crossfeed_data.lowpass[1];
|
|
|
|
long high_left = crossfeed_data.highpass[0];
|
|
|
|
long high_right = crossfeed_data.highpass[1];
|
|
|
|
unsigned int index = crossfeed_data.index;
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
long left, right;
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
long * delay_l = crossfeed_data.delay[0];
|
|
|
|
long * delay_r = crossfeed_data.delay[1];
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
int i;
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
/* use a low-pass filter on the signal */
|
|
|
|
left = src[0][i];
|
|
|
|
right = src[1][i];
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, LOW, low_left); ACC(a, LOW_COMP, left);
|
|
|
|
low_left = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, LOW, low_right); ACC(a, LOW_COMP, right);
|
|
|
|
low_right = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
/* use a high-pass filter on the signal */
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, HIGH_NEG, high_left); ACC(a, HIGH_COMP, left);
|
|
|
|
high_left = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, HIGH_NEG, high_right); ACC(a, HIGH_COMP, right);
|
|
|
|
high_right = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
/* New data is the high-passed signal + delayed and attenuated
|
|
|
|
* low-passed signal from the other channel */
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, ATT, delay_r[index]); ACC(a, ATT_COMP, high_left);
|
|
|
|
src[0][i] = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
ACC_INIT(a, ATT, delay_l[index]); ACC(a, ATT_COMP, high_right);
|
|
|
|
src[1][i] = GET_ACC(a);
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
/* Store the low-passed signal in the ringbuffer */
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
delay_l[index] = low_left;
|
|
|
|
delay_r[index] = low_right;
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2005-11-15 10:05:01 +00:00
|
|
|
index = (index + 1) % 13;
|
2005-11-14 21:56:56 +00:00
|
|
|
}
|
2005-11-15 10:05:01 +00:00
|
|
|
|
|
|
|
crossfeed_data.index = index;
|
|
|
|
crossfeed_data.lowpass[0] = low_left;
|
|
|
|
crossfeed_data.lowpass[1] = low_right;
|
|
|
|
crossfeed_data.highpass[0] = high_left;
|
|
|
|
crossfeed_data.highpass[1] = high_right;
|
2005-11-14 21:56:56 +00:00
|
|
|
}
|
2005-11-15 10:05:01 +00:00
|
|
|
#endif
|
2005-11-14 21:56:56 +00:00
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
#define EQ_CUTOFF_USER2REAL(x) (0xffffffff / NATIVE_FREQUENCY * (x))
|
|
|
|
#define EQ_Q_USER2REAL(x) (((x) << 16) / 10)
|
|
|
|
#define EQ_GAIN_USER2REAL(x) (((x) << 16) / 10)
|
|
|
|
|
|
|
|
/* Synchronize the EQ filters with the global settings */
|
|
|
|
void dsp_eq_update_data(bool enabled)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int *setting;
|
|
|
|
int gain, cutoff, q, maxgain;
|
|
|
|
|
|
|
|
dsp->eq_enabled = enabled;
|
|
|
|
setting = &global_settings.eq_band0_cutoff;
|
|
|
|
maxgain = 0;
|
|
|
|
|
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
|
|
|
/* set emac unit for dsp processing, and save old macsr, we're running in
|
|
|
|
codec thread context at this point, so can't clobber it */
|
|
|
|
unsigned long old_macsr = coldfire_get_macsr();
|
2006-02-10 23:16:27 +00:00
|
|
|
coldfire_set_macsr(EMAC_FRACTIONAL | EMAC_SATURATE | EMAC_ROUND);
|
2006-02-07 14:07:46 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Iterate over each band and update the appropriate filter */
|
|
|
|
for(i = 0; i < 5; i++) {
|
|
|
|
cutoff = *setting++;
|
|
|
|
q = *setting++;
|
|
|
|
gain = *setting++;
|
|
|
|
|
|
|
|
/* Keep track of maxgain for the pre-amp */
|
|
|
|
if (gain > maxgain)
|
|
|
|
maxgain = gain;
|
|
|
|
|
|
|
|
if (gain == 0) {
|
|
|
|
eq_data.enabled[i] = 0;
|
|
|
|
} else {
|
|
|
|
if (i == 0)
|
|
|
|
eq_ls_coefs(EQ_CUTOFF_USER2REAL(cutoff), EQ_Q_USER2REAL(q),
|
|
|
|
EQ_GAIN_USER2REAL(gain), eq_data.filters[0].coefs);
|
|
|
|
else if (i == 4)
|
|
|
|
eq_hs_coefs(EQ_CUTOFF_USER2REAL(cutoff), EQ_Q_USER2REAL(q),
|
|
|
|
EQ_GAIN_USER2REAL(gain), eq_data.filters[4].coefs);
|
|
|
|
else
|
|
|
|
eq_pk_coefs(EQ_CUTOFF_USER2REAL(cutoff), EQ_Q_USER2REAL(q),
|
|
|
|
EQ_GAIN_USER2REAL(gain), eq_data.filters[i].coefs);
|
|
|
|
|
|
|
|
eq_data.enabled[i] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
|
|
|
/* set old macsr again */
|
|
|
|
coldfire_set_macsr(old_macsr);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-01-29 15:37:03 +00:00
|
|
|
/* Apply EQ filters to those bands that have got it switched on. */
|
2006-02-02 20:03:43 +00:00
|
|
|
static void eq_process(long **x, unsigned num)
|
2006-01-29 15:37:03 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned int channels = dsp->stereo_mode != STEREO_MONO ? 2 : 1;
|
2006-02-02 20:03:43 +00:00
|
|
|
unsigned shift;
|
|
|
|
|
2006-01-29 15:37:03 +00:00
|
|
|
/* filter configuration currently is 1 low shelf filter, 3 band peaking
|
2006-02-02 20:03:43 +00:00
|
|
|
filters and 1 high shelf filter, in that order. we need to know this
|
|
|
|
so we can choose the correct shift factor.
|
2006-01-29 15:37:03 +00:00
|
|
|
*/
|
2006-02-02 20:03:43 +00:00
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
if (eq_data.enabled[i]) {
|
|
|
|
if (i == 0 || i == 4) /* shelving filters */
|
|
|
|
shift = EQ_SHELF_SHIFT;
|
|
|
|
else
|
|
|
|
shift = EQ_PEAK_SHIFT;
|
|
|
|
eq_filter(x, &eq_data.filters[i], num, channels, shift);
|
|
|
|
}
|
2006-01-29 15:37:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
/* Apply a constant gain to the samples (e.g., for ReplayGain). May update
|
|
|
|
* the src array if gain was applied.
|
|
|
|
* Note that this must be called before the resampler.
|
|
|
|
*/
|
|
|
|
static void apply_gain(long* src[], int count)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->replaygain)
|
2005-07-24 15:32:28 +00:00
|
|
|
{
|
|
|
|
long* s0 = src[0];
|
|
|
|
long* s1 = src[1];
|
|
|
|
long* d0 = &sample_buf[0];
|
|
|
|
long* d1 = (s0 == s1) ? d0 : &sample_buf[SAMPLE_BUF_SIZE / 2];
|
2005-08-20 11:13:19 +00:00
|
|
|
long gain = dsp->replaygain;
|
2005-08-18 19:25:39 +00:00
|
|
|
long s;
|
2005-07-24 15:32:28 +00:00
|
|
|
long i;
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
src[0] = d0;
|
|
|
|
src[1] = d1;
|
2005-08-18 19:25:39 +00:00
|
|
|
s = *s0++;
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
*d0++ = FRACMUL_8_LOOP(s, gain, s0);
|
2005-07-24 15:32:28 +00:00
|
|
|
}
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-25 03:34:25 +00:00
|
|
|
if (src [0] != src [1])
|
2005-07-24 15:32:28 +00:00
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
s = *s1++;
|
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
*d1++ = FRACMUL_8_LOOP(s, gain, s1);
|
2005-07-24 15:32:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
static void write_samples(short* dst, long* src[], int count)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long* s0 = src[0];
|
|
|
|
long* s1 = src[1];
|
2005-08-20 11:13:19 +00:00
|
|
|
int scale = dsp->frac_bits + 1 - NATIVE_DEPTH;
|
2005-07-16 12:25:28 +00:00
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->dither_enabled)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
long bias = (1L << (dsp->frac_bits - NATIVE_DEPTH));
|
2005-07-16 12:25:28 +00:00
|
|
|
long mask = (1L << scale) - 1;
|
|
|
|
|
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
*dst++ = (short) (dither_sample(*s0++, bias, mask, &dither_data[0])
|
|
|
|
>> scale);
|
|
|
|
*dst++ = (short) (dither_sample(*s1++, bias, mask, &dither_data[1])
|
|
|
|
>> scale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
long min = dsp->clip_min;
|
|
|
|
long max = dsp->clip_max;
|
2005-08-18 19:25:39 +00:00
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
2005-08-18 19:25:39 +00:00
|
|
|
*dst++ = (short) (clip_sample(*s0++, min, max) >> scale);
|
|
|
|
*dst++ = (short) (clip_sample(*s1++, min, max) >> scale);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
/* Process and convert src audio to dst based on the DSP configuration,
|
|
|
|
* reading size bytes of audio data. dst is assumed to be large enough; use
|
|
|
|
* dst_get_dest_size() to get the required size. src is an array of
|
|
|
|
* pointers; for mono and interleaved stereo, it contains one pointer to the
|
|
|
|
* start of the audio data; for non-interleaved stereo, it contains two
|
|
|
|
* pointers, one for each audio channel. Returns number of bytes written to
|
|
|
|
* dest.
|
|
|
|
*/
|
2006-02-07 20:38:55 +00:00
|
|
|
long dsp_process(char* dst, const char* src[], long size)
|
2005-06-26 19:41:29 +00:00
|
|
|
{
|
2005-07-16 12:25:28 +00:00
|
|
|
long* tmp[2];
|
|
|
|
long written = 0;
|
2005-08-20 11:13:19 +00:00
|
|
|
long factor;
|
2005-07-16 12:25:28 +00:00
|
|
|
int samples;
|
|
|
|
|
2005-09-07 00:24:27 +00:00
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
|
|
|
/* set emac unit for dsp processing, and save old macsr, we're running in
|
|
|
|
codec thread context at this point, so can't clobber it */
|
|
|
|
unsigned long old_macsr = coldfire_get_macsr();
|
2005-11-23 14:30:58 +00:00
|
|
|
coldfire_set_macsr(EMAC_FRACTIONAL | EMAC_SATURATE);
|
2005-09-07 00:24:27 +00:00
|
|
|
#endif
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
|
|
|
factor = (dsp->stereo_mode != STEREO_MONO) ? 2 : 1;
|
|
|
|
size /= dsp->sample_bytes * factor;
|
2005-07-24 15:32:28 +00:00
|
|
|
dsp_set_replaygain(false);
|
2005-07-16 12:25:28 +00:00
|
|
|
|
|
|
|
while (size > 0)
|
|
|
|
{
|
|
|
|
samples = convert_to_internal(src, size, tmp);
|
|
|
|
size -= samples;
|
2005-07-24 15:32:28 +00:00
|
|
|
apply_gain(tmp, samples);
|
2005-07-16 12:25:28 +00:00
|
|
|
samples = resample(tmp, samples);
|
2005-11-15 10:05:01 +00:00
|
|
|
if (dsp->crossfeed_enabled && dsp->stereo_mode != STEREO_MONO)
|
|
|
|
apply_crossfeed(tmp, samples);
|
2006-02-07 14:07:46 +00:00
|
|
|
if (dsp->eq_enabled)
|
|
|
|
eq_process(tmp, samples);
|
2005-07-16 12:25:28 +00:00
|
|
|
write_samples((short*) dst, tmp, samples);
|
|
|
|
written += samples;
|
|
|
|
dst += samples * sizeof(short) * 2;
|
2005-06-26 19:41:29 +00:00
|
|
|
yield();
|
|
|
|
}
|
2005-09-07 00:24:27 +00:00
|
|
|
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
|
|
|
/* set old macsr again */
|
|
|
|
coldfire_set_macsr(old_macsr);
|
|
|
|
#endif
|
2005-07-16 12:25:28 +00:00
|
|
|
return written * sizeof(short) * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given size bytes of input data, calculate the maximum number of bytes of
|
|
|
|
* output data that would be generated (the calculation is not entirely
|
|
|
|
* exact and rounds upwards to be on the safe side; during resampling,
|
|
|
|
* the number of samples generated depends on the current state of the
|
|
|
|
* resampler).
|
|
|
|
*/
|
2005-08-10 23:17:55 +00:00
|
|
|
/* dsp_input_size MUST be called afterwards */
|
2005-07-16 12:25:28 +00:00
|
|
|
long dsp_output_size(long size)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
|
|
|
if (dsp->sample_depth > NATIVE_DEPTH)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
size /= 2;
|
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->frequency != NATIVE_FREQUENCY)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
|
|
|
size = (long) ((((unsigned long) size * NATIVE_FREQUENCY)
|
2005-08-20 11:13:19 +00:00
|
|
|
+ (dsp->frequency - 1)) / dsp->frequency);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
2005-08-10 23:17:55 +00:00
|
|
|
/* round to the next multiple of 2 (these are shorts) */
|
|
|
|
size = (size + 1) & ~1;
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->stereo_mode == STEREO_MONO)
|
2005-08-10 23:17:55 +00:00
|
|
|
{
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now we have the size in bytes for two resampled channels,
|
|
|
|
* and the size in (short) must not exceed RESAMPLE_BUF_SIZE to
|
|
|
|
* avoid resample buffer overflow. One must call dsp_input_size()
|
|
|
|
* to get the correct input buffer size. */
|
|
|
|
if (size > RESAMPLE_BUF_SIZE*2)
|
|
|
|
size = RESAMPLE_BUF_SIZE*2;
|
|
|
|
|
|
|
|
return size;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Given size bytes of output buffer, calculate number of bytes of input
|
|
|
|
* data that would be consumed in order to fill the output buffer.
|
|
|
|
*/
|
|
|
|
long dsp_input_size(long size)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
2005-08-10 23:17:55 +00:00
|
|
|
/* convert to number of output stereo samples. */
|
|
|
|
size /= 2;
|
|
|
|
|
|
|
|
/* Mono means we need half input samples to fill the output buffer */
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->stereo_mode == STEREO_MONO)
|
2005-07-16 12:25:28 +00:00
|
|
|
size /= 2;
|
|
|
|
|
2005-08-10 23:17:55 +00:00
|
|
|
/* size is now the number of resampled input samples. Convert to
|
|
|
|
original input samples. */
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->frequency != NATIVE_FREQUENCY)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-10 23:17:55 +00:00
|
|
|
/* Use the real resampling delta =
|
2005-08-20 11:13:19 +00:00
|
|
|
* (unsigned long) dsp->frequency * 65536 / NATIVE_FREQUENCY, and
|
2005-08-10 23:17:55 +00:00
|
|
|
* round towards zero to avoid buffer overflows. */
|
2005-08-20 11:13:19 +00:00
|
|
|
size = ((unsigned long)size *
|
2005-11-28 22:26:20 +00:00
|
|
|
resample_data[current_codec].delta) >> 16;
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
2005-08-10 23:17:55 +00:00
|
|
|
/* Convert back to bytes. */
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->sample_depth > NATIVE_DEPTH)
|
2005-08-10 23:17:55 +00:00
|
|
|
size *= 4;
|
|
|
|
else
|
|
|
|
size *= 2;
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dsp_stereo_mode(void)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
|
|
|
return dsp->stereo_mode;
|
2005-06-26 19:41:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool dsp_configure(int setting, void *value)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
2005-07-16 12:25:28 +00:00
|
|
|
switch (setting)
|
|
|
|
{
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_SET_FREQUENCY:
|
2005-11-28 22:26:20 +00:00
|
|
|
memset(&resample_data[current_codec], 0,
|
|
|
|
sizeof(struct resample_data));
|
2005-08-10 22:56:24 +00:00
|
|
|
/* Fall through!!! */
|
|
|
|
case DSP_SWITCH_FREQUENCY:
|
2005-11-28 22:26:20 +00:00
|
|
|
dsp->codec_frequency = ((int) value == 0) ? NATIVE_FREQUENCY : (int) value;
|
|
|
|
/* Account for playback speed adjustment when settingg dsp->frequency
|
|
|
|
if we're called from the main audio thread. Voice UI thread should
|
|
|
|
not need this feature.
|
|
|
|
*/
|
|
|
|
if (current_codec == CODEC_IDX_AUDIO)
|
|
|
|
dsp->frequency = pitch_ratio * dsp->codec_frequency / 1000;
|
|
|
|
else
|
|
|
|
dsp->frequency = dsp->codec_frequency;
|
|
|
|
resampler_set_delta(dsp->frequency);
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_SET_CLIP_MIN:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->clip_min = (long) value;
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_SET_CLIP_MAX:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->clip_max = (long) value;
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_SET_SAMPLE_DEPTH:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->sample_depth = (long) value;
|
2005-07-16 12:25:28 +00:00
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
if (dsp->sample_depth <= NATIVE_DEPTH)
|
2005-07-16 12:25:28 +00:00
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->frac_bits = WORD_FRACBITS;
|
|
|
|
dsp->sample_bytes = sizeof(short);
|
|
|
|
dsp->clip_max = ((1 << WORD_FRACBITS) - 1);
|
|
|
|
dsp->clip_min = -((1 << WORD_FRACBITS));
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->frac_bits = (long) value;
|
|
|
|
dsp->sample_bytes = sizeof(long);
|
2005-11-02 00:30:58 +00:00
|
|
|
dsp->clip_max = (1 << (long)value) - 1;
|
|
|
|
dsp->clip_min = -(1 << (long)value);
|
2005-07-16 12:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_SET_STEREO_MODE:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->stereo_mode = (long) value;
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_RESET:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->dither_enabled = false;
|
|
|
|
dsp->stereo_mode = STEREO_NONINTERLEAVED;
|
|
|
|
dsp->clip_max = ((1 << WORD_FRACBITS) - 1);
|
|
|
|
dsp->clip_min = -((1 << WORD_FRACBITS));
|
|
|
|
dsp->track_gain = 0;
|
|
|
|
dsp->album_gain = 0;
|
|
|
|
dsp->track_peak = 0;
|
|
|
|
dsp->album_peak = 0;
|
2005-11-28 22:26:20 +00:00
|
|
|
dsp->codec_frequency = dsp->frequency = NATIVE_FREQUENCY;
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->sample_depth = NATIVE_DEPTH;
|
|
|
|
dsp->frac_bits = WORD_FRACBITS;
|
|
|
|
dsp->new_gain = true;
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
case DSP_DITHER:
|
2005-07-16 12:25:28 +00:00
|
|
|
memset(dither_data, 0, sizeof(dither_data));
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->dither_enabled = (bool) value;
|
2005-07-16 12:25:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
case DSP_SET_TRACK_GAIN:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->track_gain = (long) value;
|
|
|
|
dsp->new_gain = true;
|
2005-07-24 15:32:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSP_SET_ALBUM_GAIN:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->album_gain = (long) value;
|
|
|
|
dsp->new_gain = true;
|
2005-07-24 15:32:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSP_SET_TRACK_PEAK:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->track_peak = (long) value;
|
|
|
|
dsp->new_gain = true;
|
2005-07-24 15:32:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSP_SET_ALBUM_PEAK:
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->album_peak = (long) value;
|
|
|
|
dsp->new_gain = true;
|
2005-07-24 15:32:28 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2005-07-16 12:25:28 +00:00
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2005-07-24 15:32:28 +00:00
|
|
|
|
2005-11-14 21:56:56 +00:00
|
|
|
void dsp_set_crossfeed(bool enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
memset(&crossfeed_data, 0, sizeof(crossfeed_data));
|
|
|
|
dsp->crossfeed_enabled = enable;
|
|
|
|
}
|
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
void dsp_set_replaygain(bool always)
|
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp = &dsp_conf[current_codec];
|
|
|
|
|
|
|
|
if (always || dsp->new_gain)
|
2005-07-24 15:32:28 +00:00
|
|
|
{
|
|
|
|
long gain = 0;
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->new_gain = false;
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
if (global_settings.replaygain || global_settings.replaygain_noclip)
|
|
|
|
{
|
2005-09-24 15:22:48 +00:00
|
|
|
bool track_mode
|
|
|
|
= ((global_settings.replaygain_type == REPLAYGAIN_TRACK)
|
|
|
|
|| ((global_settings.replaygain_type == REPLAYGAIN_SHUFFLE)
|
|
|
|
&& global_settings.playlist_shuffle));
|
|
|
|
long peak = (track_mode || !dsp->album_peak)
|
|
|
|
? dsp->track_peak : dsp->album_peak;
|
2005-07-24 15:32:28 +00:00
|
|
|
|
|
|
|
if (global_settings.replaygain)
|
|
|
|
{
|
2005-09-24 15:22:48 +00:00
|
|
|
gain = (track_mode || !dsp->album_gain)
|
2005-08-20 11:13:19 +00:00
|
|
|
? dsp->track_gain : dsp->album_gain;
|
2005-08-11 18:56:20 +00:00
|
|
|
|
|
|
|
if (global_settings.replaygain_preamp)
|
|
|
|
{
|
|
|
|
long preamp = get_replaygain_int(
|
|
|
|
global_settings.replaygain_preamp * 10);
|
|
|
|
|
2005-09-24 15:22:48 +00:00
|
|
|
gain = (long) (((int64_t) gain * preamp) >> 24);
|
2005-08-11 18:56:20 +00:00
|
|
|
}
|
2005-07-24 15:32:28 +00:00
|
|
|
}
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
if (gain == 0)
|
|
|
|
{
|
|
|
|
/* So that noclip can work even with no gain information. */
|
|
|
|
gain = DEFAULT_REPLAYGAIN;
|
|
|
|
}
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
if (global_settings.replaygain_noclip && (peak != 0)
|
|
|
|
&& ((((int64_t) gain * peak) >> 24) >= DEFAULT_REPLAYGAIN))
|
|
|
|
{
|
|
|
|
gain = (((int64_t) DEFAULT_REPLAYGAIN << 24) / peak);
|
|
|
|
}
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
if (gain == DEFAULT_REPLAYGAIN)
|
|
|
|
{
|
|
|
|
/* Nothing to do, disable processing. */
|
|
|
|
gain = 0;
|
2005-08-11 18:56:20 +00:00
|
|
|
|
2005-07-24 15:32:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-18 19:25:39 +00:00
|
|
|
/* Store in S8.23 format to simplify calculations. */
|
2005-08-20 11:13:19 +00:00
|
|
|
dsp->replaygain = gain >> 1;
|
2005-07-24 15:32:28 +00:00
|
|
|
}
|
|
|
|
}
|