mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
remap: Change remapping function argument type from void to int16_t / float as appropriate
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
0967f0fcdc
commit
877ad8dcf8
3 changed files with 18 additions and 23 deletions
|
|
@ -102,7 +102,7 @@
|
|||
" emms \n\t"
|
||||
|
||||
#if defined (__i386__) || defined (__amd64__)
|
||||
static void remap_mono_to_stereo_s16ne_mmx(pa_remap_t *m, void *dst, const void *src, unsigned n) {
|
||||
static void remap_mono_to_stereo_s16ne_mmx(pa_remap_t *m, int16_t *dst, const int16_t *src, unsigned n) {
|
||||
pa_reg_x86 temp, temp2;
|
||||
|
||||
__asm__ __volatile__ (
|
||||
|
|
@ -113,7 +113,7 @@ static void remap_mono_to_stereo_s16ne_mmx(pa_remap_t *m, void *dst, const void
|
|||
);
|
||||
}
|
||||
|
||||
static void remap_mono_to_stereo_float32ne_mmx(pa_remap_t *m, void *dst, const void *src, unsigned n) {
|
||||
static void remap_mono_to_stereo_float32ne_mmx(pa_remap_t *m, float *dst, const float *src, unsigned n) {
|
||||
pa_reg_x86 temp, temp2;
|
||||
|
||||
__asm__ __volatile__ (
|
||||
|
|
@ -136,7 +136,8 @@ static void init_remap_mmx(pa_remap_t *m) {
|
|||
m->map_table_i[0][0] == 0x10000 && m->map_table_i[1][0] == 0x10000) {
|
||||
|
||||
pa_log_info("Using MMX mono to stereo remapping");
|
||||
pa_set_remap_func(m, remap_mono_to_stereo_s16ne_mmx, remap_mono_to_stereo_float32ne_mmx);
|
||||
pa_set_remap_func(m, (pa_do_remap_func_t) remap_mono_to_stereo_s16ne_mmx,
|
||||
(pa_do_remap_func_t) remap_mono_to_stereo_float32ne_mmx);
|
||||
}
|
||||
}
|
||||
#endif /* defined (__i386__) || defined (__amd64__) */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue