2009-08-11 17:10:44 +02:00
|
|
|
/***
|
|
|
|
|
This file is part of PulseAudio.
|
|
|
|
|
|
|
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2014-11-26 14:14:51 +01:00
|
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
2009-08-11 17:10:44 +02:00
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <pulsecore/macro.h>
|
|
|
|
|
#include <pulsecore/g711.h>
|
2011-03-09 10:00:20 +01:00
|
|
|
#include <pulsecore/endianmacros.h>
|
2009-08-11 17:10:44 +02:00
|
|
|
|
|
|
|
|
#include "sample-util.h"
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_u8_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
core: Refactor code to multiply s16 by volume
move code to function pa_mult_s16_volume() in sample-util.h
use 64 bit integers on 64 bit platforms (it's faster)
on i5, 2.5GHz (64-bit)
Running suite(s): Mult-s16
32 bit mult: 1272300 usec (avg: 12723, min = 12533, max = 18749, stddev = 620.48).
64 bit mult: 852241 usec (avg: 8522.41, min = 8420, max = 9148, stddev = 109.388).
100%: Checks: 1, Failures: 0, Errors: 0
on Pentium D, 3.4GHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 2228504 usec (avg: 22285, min = 18775, max = 29648, stddev = 3865.59).
64 bit mult: 5546861 usec (avg: 55468.6, min = 55028, max = 64924, stddev = 978.981).
100%: Checks: 1, Failures: 0, Errors: 0
on TI DM3730, Cortex-A8, 800MHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 23708900 usec (avg: 237089, min = 191864, max = 557312, stddev = 77503.6).
64 bit mult: 22190039 usec (avg: 221900, min = 177978, max = 480469, stddev = 68520.5).
100%: Checks: 1, Failures: 0, Errors: 0
there is a test program called mult-s16-test which checks that the functions compute the
same results, and compares runtime
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
2013-02-13 17:27:05 +01:00
|
|
|
int32_t t = pa_mult_s16_volume(*samples - 0x80, volumes[channel]);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80, 0x7F);
|
|
|
|
|
*samples++ = (uint8_t) (t + 0x80);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_alaw_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
core: Refactor code to multiply s16 by volume
move code to function pa_mult_s16_volume() in sample-util.h
use 64 bit integers on 64 bit platforms (it's faster)
on i5, 2.5GHz (64-bit)
Running suite(s): Mult-s16
32 bit mult: 1272300 usec (avg: 12723, min = 12533, max = 18749, stddev = 620.48).
64 bit mult: 852241 usec (avg: 8522.41, min = 8420, max = 9148, stddev = 109.388).
100%: Checks: 1, Failures: 0, Errors: 0
on Pentium D, 3.4GHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 2228504 usec (avg: 22285, min = 18775, max = 29648, stddev = 3865.59).
64 bit mult: 5546861 usec (avg: 55468.6, min = 55028, max = 64924, stddev = 978.981).
100%: Checks: 1, Failures: 0, Errors: 0
on TI DM3730, Cortex-A8, 800MHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 23708900 usec (avg: 237089, min = 191864, max = 557312, stddev = 77503.6).
64 bit mult: 22190039 usec (avg: 221900, min = 177978, max = 480469, stddev = 68520.5).
100%: Checks: 1, Failures: 0, Errors: 0
there is a test program called mult-s16-test which checks that the functions compute the
same results, and compares runtime
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
2013-02-13 17:27:05 +01:00
|
|
|
int32_t t = pa_mult_s16_volume(st_alaw2linear16(*samples), volumes[channel]);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x8000, 0x7FFF);
|
|
|
|
|
*samples++ = (uint8_t) st_13linear2alaw((int16_t) t >> 3);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_ulaw_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
core: Refactor code to multiply s16 by volume
move code to function pa_mult_s16_volume() in sample-util.h
use 64 bit integers on 64 bit platforms (it's faster)
on i5, 2.5GHz (64-bit)
Running suite(s): Mult-s16
32 bit mult: 1272300 usec (avg: 12723, min = 12533, max = 18749, stddev = 620.48).
64 bit mult: 852241 usec (avg: 8522.41, min = 8420, max = 9148, stddev = 109.388).
100%: Checks: 1, Failures: 0, Errors: 0
on Pentium D, 3.4GHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 2228504 usec (avg: 22285, min = 18775, max = 29648, stddev = 3865.59).
64 bit mult: 5546861 usec (avg: 55468.6, min = 55028, max = 64924, stddev = 978.981).
100%: Checks: 1, Failures: 0, Errors: 0
on TI DM3730, Cortex-A8, 800MHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 23708900 usec (avg: 237089, min = 191864, max = 557312, stddev = 77503.6).
64 bit mult: 22190039 usec (avg: 221900, min = 177978, max = 480469, stddev = 68520.5).
100%: Checks: 1, Failures: 0, Errors: 0
there is a test program called mult-s16-test which checks that the functions compute the
same results, and compares runtime
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
2013-02-13 17:27:05 +01:00
|
|
|
int32_t t = pa_mult_s16_volume(st_ulaw2linear16(*samples), volumes[channel]);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x8000, 0x7FFF);
|
|
|
|
|
*samples++ = (uint8_t) st_14linear2ulaw((int16_t) t >> 2);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s16ne_c(int16_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(int16_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
core: Refactor code to multiply s16 by volume
move code to function pa_mult_s16_volume() in sample-util.h
use 64 bit integers on 64 bit platforms (it's faster)
on i5, 2.5GHz (64-bit)
Running suite(s): Mult-s16
32 bit mult: 1272300 usec (avg: 12723, min = 12533, max = 18749, stddev = 620.48).
64 bit mult: 852241 usec (avg: 8522.41, min = 8420, max = 9148, stddev = 109.388).
100%: Checks: 1, Failures: 0, Errors: 0
on Pentium D, 3.4GHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 2228504 usec (avg: 22285, min = 18775, max = 29648, stddev = 3865.59).
64 bit mult: 5546861 usec (avg: 55468.6, min = 55028, max = 64924, stddev = 978.981).
100%: Checks: 1, Failures: 0, Errors: 0
on TI DM3730, Cortex-A8, 800MHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 23708900 usec (avg: 237089, min = 191864, max = 557312, stddev = 77503.6).
64 bit mult: 22190039 usec (avg: 221900, min = 177978, max = 480469, stddev = 68520.5).
100%: Checks: 1, Failures: 0, Errors: 0
there is a test program called mult-s16-test which checks that the functions compute the
same results, and compares runtime
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
2013-02-13 17:27:05 +01:00
|
|
|
int32_t t = pa_mult_s16_volume(*samples, volumes[channel]);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x8000, 0x7FFF);
|
|
|
|
|
*samples++ = (int16_t) t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s16re_c(int16_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(int16_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
core: Refactor code to multiply s16 by volume
move code to function pa_mult_s16_volume() in sample-util.h
use 64 bit integers on 64 bit platforms (it's faster)
on i5, 2.5GHz (64-bit)
Running suite(s): Mult-s16
32 bit mult: 1272300 usec (avg: 12723, min = 12533, max = 18749, stddev = 620.48).
64 bit mult: 852241 usec (avg: 8522.41, min = 8420, max = 9148, stddev = 109.388).
100%: Checks: 1, Failures: 0, Errors: 0
on Pentium D, 3.4GHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 2228504 usec (avg: 22285, min = 18775, max = 29648, stddev = 3865.59).
64 bit mult: 5546861 usec (avg: 55468.6, min = 55028, max = 64924, stddev = 978.981).
100%: Checks: 1, Failures: 0, Errors: 0
on TI DM3730, Cortex-A8, 800MHz (32-bit)
Running suite(s): Mult-s16
32 bit mult: 23708900 usec (avg: 237089, min = 191864, max = 557312, stddev = 77503.6).
64 bit mult: 22190039 usec (avg: 221900, min = 177978, max = 480469, stddev = 68520.5).
100%: Checks: 1, Failures: 0, Errors: 0
there is a test program called mult-s16-test which checks that the functions compute the
same results, and compares runtime
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
2013-02-13 17:27:05 +01:00
|
|
|
int32_t t = pa_mult_s16_volume(PA_INT16_SWAP(*samples), volumes[channel]);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x8000, 0x7FFF);
|
|
|
|
|
*samples++ = PA_INT16_SWAP((int16_t) t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_float32ne_c(float *samples, const float *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(float);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
*samples++ *= volumes[channel];
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 02:03:44 +02:00
|
|
|
static void pa_volume_float32re_c(float *samples, const float *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(float);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
float t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
endianmacros: Replace borked PA_FLOAT32_SWAP() with PA_READ_FLOAT32RE() / PA_WRITE_FLOAT32RE()
building PA with -O0 leads to test failure in mix-test on i386
issue reported by Felipe, see
http://lists.freedesktop.org/archives/pulseaudio-discuss/2014-August/021406.html
the problem is the value 0xbeffbd7f: when byte-swapped it becomes 0x7fbdffbe and according
to IEEE-754 represents a signalling NaN (starting with s111 1111 10, see http://en.wikipedia.org/wiki/NaN)
when this value is assigned to a floating point register, it becomes 0x7ffdffbe, representing
a quiet NaN (starting with s111 1111 11) -- a signalling NaN is turned into a quiet NaN!
so PA_FLOAT32_SWAP(PA_FLOAT32_SWAP(x)) != x for certain values, uhuh!
the following test code can be used; due to volatile, it will always demonstrate the issue;
without volatile, it depends on the optimization level (i386, 32-bit, gcc 4.9):
// snip
static inline float PA_FLOAT32_SWAP(float x) {
union {
float f;
uint32_t u;
} t;
t.f = x;
t.u = bswap_32(t.u);
return t.f;
}
int main() {
unsigned x = 0xbeffbd7f;
volatile float f = PA_FLOAT32_SWAP(*(float *)&x);
printf("%08x %08x %08x %f\n", 0xbeffbd7f, *(unsigned *)&f, bswap_32(*(unsigned *)&f), f);
}
// snip
the problem goes away with optimization when no temporary floating point registers are used
the proposed solution is to avoid passing swapped floating point data in a
float; this is done with new functions PA_READ_FLOAT32RE() and PA_WRITE_FLOAT32RE()
which use uint32_t to dereference a pointer and byte-swap the data, hence no temporary
float variable is used
also delete PA_FLOAT32_TO_LE()/_BE(), not used
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Reported-by: Felipe Sateler <fsateler@debian.org>
2014-09-02 23:53:09 +02:00
|
|
|
t = PA_READ_FLOAT32RE(samples);
|
2009-08-20 10:56:20 +02:00
|
|
|
t *= volumes[channel];
|
endianmacros: Replace borked PA_FLOAT32_SWAP() with PA_READ_FLOAT32RE() / PA_WRITE_FLOAT32RE()
building PA with -O0 leads to test failure in mix-test on i386
issue reported by Felipe, see
http://lists.freedesktop.org/archives/pulseaudio-discuss/2014-August/021406.html
the problem is the value 0xbeffbd7f: when byte-swapped it becomes 0x7fbdffbe and according
to IEEE-754 represents a signalling NaN (starting with s111 1111 10, see http://en.wikipedia.org/wiki/NaN)
when this value is assigned to a floating point register, it becomes 0x7ffdffbe, representing
a quiet NaN (starting with s111 1111 11) -- a signalling NaN is turned into a quiet NaN!
so PA_FLOAT32_SWAP(PA_FLOAT32_SWAP(x)) != x for certain values, uhuh!
the following test code can be used; due to volatile, it will always demonstrate the issue;
without volatile, it depends on the optimization level (i386, 32-bit, gcc 4.9):
// snip
static inline float PA_FLOAT32_SWAP(float x) {
union {
float f;
uint32_t u;
} t;
t.f = x;
t.u = bswap_32(t.u);
return t.f;
}
int main() {
unsigned x = 0xbeffbd7f;
volatile float f = PA_FLOAT32_SWAP(*(float *)&x);
printf("%08x %08x %08x %f\n", 0xbeffbd7f, *(unsigned *)&f, bswap_32(*(unsigned *)&f), f);
}
// snip
the problem goes away with optimization when no temporary floating point registers are used
the proposed solution is to avoid passing swapped floating point data in a
float; this is done with new functions PA_READ_FLOAT32RE() and PA_WRITE_FLOAT32RE()
which use uint32_t to dereference a pointer and byte-swap the data, hence no temporary
float variable is used
also delete PA_FLOAT32_TO_LE()/_BE(), not used
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Reported-by: Felipe Sateler <fsateler@debian.org>
2014-09-02 23:53:09 +02:00
|
|
|
PA_WRITE_FLOAT32RE(samples++, t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s32ne_c(int32_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(int32_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t)(*samples);
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
*samples++ = (int32_t) t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s32re_c(int32_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(int32_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t) PA_INT32_SWAP(*samples);
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
*samples++ = PA_INT32_SWAP((int32_t) t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s24ne_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
|
|
|
|
uint8_t *e;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
e = samples + length;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; samples < e; samples += 3) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t)((int32_t) (PA_READ24NE(samples) << 8));
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
PA_WRITE24NE(samples, ((uint32_t) (int32_t) t) >> 8);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s24re_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
|
|
|
|
uint8_t *e;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
e = samples + length;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; samples < e; samples += 3) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t)((int32_t) (PA_READ24RE(samples) << 8));
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
PA_WRITE24RE(samples, ((uint32_t) (int32_t) t) >> 8);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s24_32ne_c(uint32_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(uint32_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t) ((int32_t) (*samples << 8));
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
*samples++ = ((uint32_t) ((int32_t) t)) >> 8;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-07-09 18:01:32 +02:00
|
|
|
static void pa_volume_s24_32re_c(uint32_t *samples, const int32_t *volumes, unsigned channels, unsigned length) {
|
2009-08-20 10:56:20 +02:00
|
|
|
unsigned channel;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
length /= sizeof(uint32_t);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
for (channel = 0; length; length--) {
|
|
|
|
|
int64_t t;
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
t = (int64_t) ((int32_t) (PA_UINT32_SWAP(*samples) << 8));
|
|
|
|
|
t = (t * volumes[channel]) >> 16;
|
|
|
|
|
t = PA_CLAMP_UNLIKELY(t, -0x80000000LL, 0x7FFFFFFFLL);
|
|
|
|
|
*samples++ = PA_UINT32_SWAP(((uint32_t) ((int32_t) t)) >> 8);
|
2009-08-11 17:10:44 +02:00
|
|
|
|
2009-08-20 10:56:20 +02:00
|
|
|
if (PA_UNLIKELY(++channel >= channels))
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2009-08-11 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-02 12:41:26 +01:00
|
|
|
static pa_do_volume_func_t do_volume_table[] = {
|
2009-08-20 10:56:20 +02:00
|
|
|
[PA_SAMPLE_U8] = (pa_do_volume_func_t) pa_volume_u8_c,
|
|
|
|
|
[PA_SAMPLE_ALAW] = (pa_do_volume_func_t) pa_volume_alaw_c,
|
|
|
|
|
[PA_SAMPLE_ULAW] = (pa_do_volume_func_t) pa_volume_ulaw_c,
|
|
|
|
|
[PA_SAMPLE_S16NE] = (pa_do_volume_func_t) pa_volume_s16ne_c,
|
|
|
|
|
[PA_SAMPLE_S16RE] = (pa_do_volume_func_t) pa_volume_s16re_c,
|
|
|
|
|
[PA_SAMPLE_FLOAT32NE] = (pa_do_volume_func_t) pa_volume_float32ne_c,
|
|
|
|
|
[PA_SAMPLE_FLOAT32RE] = (pa_do_volume_func_t) pa_volume_float32re_c,
|
|
|
|
|
[PA_SAMPLE_S32NE] = (pa_do_volume_func_t) pa_volume_s32ne_c,
|
|
|
|
|
[PA_SAMPLE_S32RE] = (pa_do_volume_func_t) pa_volume_s32re_c,
|
|
|
|
|
[PA_SAMPLE_S24NE] = (pa_do_volume_func_t) pa_volume_s24ne_c,
|
|
|
|
|
[PA_SAMPLE_S24RE] = (pa_do_volume_func_t) pa_volume_s24re_c,
|
|
|
|
|
[PA_SAMPLE_S24_32NE] = (pa_do_volume_func_t) pa_volume_s24_32ne_c,
|
|
|
|
|
[PA_SAMPLE_S24_32RE] = (pa_do_volume_func_t) pa_volume_s24_32re_c
|
2009-08-11 17:10:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pa_do_volume_func_t pa_get_volume_func(pa_sample_format_t f) {
|
2013-12-04 09:50:09 +02:00
|
|
|
pa_assert(pa_sample_format_valid(f));
|
2009-08-11 17:10:44 +02:00
|
|
|
|
|
|
|
|
return do_volume_table[f];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_set_volume_func(pa_sample_format_t f, pa_do_volume_func_t func) {
|
2013-12-04 09:50:09 +02:00
|
|
|
pa_assert(pa_sample_format_valid(f));
|
2009-08-11 17:10:44 +02:00
|
|
|
|
|
|
|
|
do_volume_table[f] = func;
|
|
|
|
|
}
|