mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
54 lines
829 B
C
54 lines
829 B
C
#define MAXOUT (+32767)
|
|
#define MINOUT (-32768)
|
|
|
|
/* limitter */
|
|
#define Limit(val, max,min) { \
|
|
if ( val > max ) val = max; \
|
|
else if ( val < min ) val = min; \
|
|
}
|
|
|
|
|
|
void mix_32_to_16l_stereo(short *dest, int *src, int count)
|
|
{
|
|
int l, r;
|
|
|
|
for (; count > 0; count--)
|
|
{
|
|
l = r = *dest;
|
|
l += *src++;
|
|
r += *src++;
|
|
Limit( l, MAXOUT, MINOUT );
|
|
Limit( r, MAXOUT, MINOUT );
|
|
*dest++ = l;
|
|
*dest++ = r;
|
|
}
|
|
}
|
|
|
|
|
|
void mix_32_to_16_mono(short *dest, int *src, int count)
|
|
{
|
|
int l;
|
|
|
|
for (; count > 0; count--)
|
|
{
|
|
l = *dest;
|
|
l += *src++;
|
|
Limit( l, MAXOUT, MINOUT );
|
|
*dest++ = l;
|
|
}
|
|
}
|
|
|
|
|
|
/* unimplemented... */
|
|
void mix_16h_to_32(int *dest_buf, short *mp3_buf, int count)
|
|
{
|
|
}
|
|
|
|
void mix_16h_to_32_s1(int *dest_buf, short *mp3_buf, int count)
|
|
{
|
|
}
|
|
|
|
void mix_16h_to_32_s2(int *dest_buf, short *mp3_buf, int count)
|
|
{
|
|
}
|
|
|