2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-06-29 20:37:24 +00:00
|
|
|
#include <stdio.h>
|
2004-06-23 23:17:30 +00:00
|
|
|
#include <string.h>
|
2004-11-20 16:23:53 +00:00
|
|
|
#include <stdlib.h>
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
#include <liboil/liboilfuncs.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <liboil/liboil.h>
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/log.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
#include "sample-util.h"
|
2006-06-17 23:37:07 +00:00
|
|
|
#include "endianmacros.h"
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
#define PA_SILENCE_MAX (PA_PAGE_SIZE*16)
|
2007-05-23 16:59:03 +00:00
|
|
|
|
2006-08-18 19:55:18 +00:00
|
|
|
pa_memblock *pa_silence_memblock_new(pa_mempool *pool, const pa_sample_spec *spec, size_t length) {
|
2007-05-23 16:59:03 +00:00
|
|
|
size_t fs;
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pool);
|
|
|
|
|
pa_assert(spec);
|
2006-02-20 04:05:16 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (length <= 0)
|
2006-08-18 19:55:18 +00:00
|
|
|
length = pa_bytes_per_second(spec)/20; /* 50 ms */
|
2006-02-20 04:05:16 +00:00
|
|
|
|
2007-05-23 16:59:03 +00:00
|
|
|
if (length > PA_SILENCE_MAX)
|
|
|
|
|
length = PA_SILENCE_MAX;
|
|
|
|
|
|
|
|
|
|
fs = pa_frame_size(spec);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
length = (length+fs-1)/fs;
|
2007-05-23 16:59:03 +00:00
|
|
|
|
|
|
|
|
if (length <= 0)
|
2007-10-28 19:13:50 +00:00
|
|
|
length = 1;
|
|
|
|
|
|
|
|
|
|
length *= fs;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-08-18 19:55:18 +00:00
|
|
|
return pa_silence_memblock(pa_memblock_new(pool, length), spec);
|
2006-02-20 04:05:16 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memblock *pa_silence_memblock(pa_memblock* b, const pa_sample_spec *spec) {
|
2007-10-28 19:13:50 +00:00
|
|
|
void *data;
|
|
|
|
|
|
|
|
|
|
pa_assert(b);
|
|
|
|
|
pa_assert(spec);
|
|
|
|
|
|
|
|
|
|
data = pa_memblock_acquire(b);
|
|
|
|
|
pa_silence_memory(data, pa_memblock_get_length(b), spec);
|
|
|
|
|
pa_memblock_release(b);
|
2004-06-23 23:17:30 +00:00
|
|
|
return b;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_silence_memchunk(pa_memchunk *c, const pa_sample_spec *spec) {
|
2007-10-28 19:13:50 +00:00
|
|
|
void *data;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(c->memblock);
|
|
|
|
|
pa_assert(spec);
|
|
|
|
|
|
|
|
|
|
data = pa_memblock_acquire(c->memblock);
|
|
|
|
|
pa_silence_memory((uint8_t*) data+c->index, c->length, spec);
|
|
|
|
|
pa_memblock_release(c->memblock);
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_silence_memory(void *p, size_t length, const pa_sample_spec *spec) {
|
2004-11-20 16:23:53 +00:00
|
|
|
uint8_t c = 0;
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(p);
|
|
|
|
|
pa_assert(length > 0);
|
|
|
|
|
pa_assert(spec);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
|
|
|
|
switch (spec->format) {
|
2004-06-29 16:48:37 +00:00
|
|
|
case PA_SAMPLE_U8:
|
2004-11-20 16:23:53 +00:00
|
|
|
c = 0x80;
|
2004-06-23 23:17:30 +00:00
|
|
|
break;
|
2004-06-29 16:48:37 +00:00
|
|
|
case PA_SAMPLE_S16LE:
|
|
|
|
|
case PA_SAMPLE_S16BE:
|
|
|
|
|
case PA_SAMPLE_FLOAT32:
|
2006-11-08 13:03:35 +00:00
|
|
|
case PA_SAMPLE_FLOAT32RE:
|
2004-06-23 23:17:30 +00:00
|
|
|
c = 0;
|
|
|
|
|
break;
|
2004-06-29 16:48:37 +00:00
|
|
|
case PA_SAMPLE_ALAW:
|
2007-10-28 19:13:50 +00:00
|
|
|
c = 0xd5;
|
|
|
|
|
break;
|
2004-06-29 16:48:37 +00:00
|
|
|
case PA_SAMPLE_ULAW:
|
2007-10-28 19:13:50 +00:00
|
|
|
c = 0xff;
|
2004-06-23 23:17:30 +00:00
|
|
|
break;
|
2004-06-29 16:48:37 +00:00
|
|
|
default:
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert_not_reached();
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
memset(p, c, length);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
size_t pa_mix(
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_mix_info streams[],
|
|
|
|
|
unsigned nstreams,
|
|
|
|
|
void *data,
|
|
|
|
|
size_t length,
|
|
|
|
|
const pa_sample_spec *spec,
|
|
|
|
|
const pa_cvolume *volume,
|
|
|
|
|
int mute) {
|
|
|
|
|
|
|
|
|
|
pa_cvolume full_volume;
|
|
|
|
|
size_t d = 0;
|
|
|
|
|
unsigned k;
|
|
|
|
|
|
|
|
|
|
pa_assert(streams);
|
|
|
|
|
pa_assert(data);
|
|
|
|
|
pa_assert(length);
|
|
|
|
|
pa_assert(spec);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (!volume)
|
|
|
|
|
volume = pa_cvolume_reset(&full_volume, spec->channels);
|
|
|
|
|
|
|
|
|
|
for (k = 0; k < nstreams; k++)
|
|
|
|
|
streams[k].internal = pa_memblock_acquire(streams[k].chunk.memblock);
|
2006-01-27 16:25:31 +00:00
|
|
|
|
|
|
|
|
switch (spec->format) {
|
|
|
|
|
case PA_SAMPLE_S16NE:{
|
|
|
|
|
unsigned channel = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (d = 0;; d += sizeof(int16_t)) {
|
|
|
|
|
int32_t sum = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2006-02-23 12:04:31 +00:00
|
|
|
if (!mute && volume->values[channel] != PA_VOLUME_MUTED) {
|
2006-01-27 16:25:31 +00:00
|
|
|
unsigned i;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (i = 0; i < nstreams; i++) {
|
|
|
|
|
int32_t v;
|
|
|
|
|
pa_volume_t cvolume = streams[i].volume.values[channel];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= streams[i].chunk.length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (cvolume == PA_VOLUME_MUTED)
|
|
|
|
|
v = 0;
|
|
|
|
|
else {
|
2007-10-28 19:13:50 +00:00
|
|
|
v = *((int16_t*) ((uint8_t*) streams[i].internal + streams[i].chunk.index + d));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (cvolume != PA_VOLUME_NORM)
|
|
|
|
|
v = (int32_t) (v * pa_sw_volume_to_linear(cvolume));
|
2006-01-27 16:25:31 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
sum += v;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (volume->values[channel] != PA_VOLUME_NORM)
|
|
|
|
|
sum = (int32_t) (sum * pa_sw_volume_to_linear(volume->values[channel]));
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
sum = CLAMP(sum, -0x8000, 0x7FFF);
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
*((int16_t*) data) = (int16_t) sum;
|
2006-01-27 16:25:31 +00:00
|
|
|
data = (uint8_t*) data + sizeof(int16_t);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
break;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2006-06-17 23:37:07 +00:00
|
|
|
|
|
|
|
|
case PA_SAMPLE_S16RE:{
|
|
|
|
|
unsigned channel = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
for (d = 0;; d += sizeof(int16_t)) {
|
|
|
|
|
int32_t sum = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (d >= length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2006-06-17 23:37:07 +00:00
|
|
|
|
|
|
|
|
if (!mute && volume->values[channel] != PA_VOLUME_MUTED) {
|
|
|
|
|
unsigned i;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
for (i = 0; i < nstreams; i++) {
|
|
|
|
|
int32_t v;
|
|
|
|
|
pa_volume_t cvolume = streams[i].volume.values[channel];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (d >= streams[i].chunk.length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (cvolume == PA_VOLUME_MUTED)
|
|
|
|
|
v = 0;
|
|
|
|
|
else {
|
2007-10-28 19:13:50 +00:00
|
|
|
v = PA_INT16_SWAP(*((int16_t*) ((uint8_t*) streams[i].internal + streams[i].chunk.index + d)));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (cvolume != PA_VOLUME_NORM)
|
|
|
|
|
v = (int32_t) (v * pa_sw_volume_to_linear(cvolume));
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
sum += v;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (volume->values[channel] != PA_VOLUME_NORM)
|
|
|
|
|
sum = (int32_t) (sum * pa_sw_volume_to_linear(volume->values[channel]));
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
sum = CLAMP(sum, -0x8000, 0x7FFF);
|
2006-06-17 23:37:07 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
*((int16_t*) data) = PA_INT16_SWAP((int16_t) sum);
|
2006-06-17 23:37:07 +00:00
|
|
|
data = (uint8_t*) data + sizeof(int16_t);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
break;
|
2006-06-17 23:37:07 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
case PA_SAMPLE_U8: {
|
|
|
|
|
unsigned channel = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (d = 0;; d ++) {
|
|
|
|
|
int32_t sum = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2006-02-23 12:04:31 +00:00
|
|
|
if (!mute && volume->values[channel] != PA_VOLUME_MUTED) {
|
2006-01-27 16:25:31 +00:00
|
|
|
unsigned i;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (i = 0; i < nstreams; i++) {
|
|
|
|
|
int32_t v;
|
|
|
|
|
pa_volume_t cvolume = streams[i].volume.values[channel];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= streams[i].chunk.length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (cvolume == PA_VOLUME_MUTED)
|
|
|
|
|
v = 0;
|
|
|
|
|
else {
|
2007-10-28 19:13:50 +00:00
|
|
|
v = (int32_t) *((uint8_t*) streams[i].internal + streams[i].chunk.index + d) - 0x80;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (cvolume != PA_VOLUME_NORM)
|
|
|
|
|
v = (int32_t) (v * pa_sw_volume_to_linear(cvolume));
|
2006-01-27 16:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sum += v;
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (volume->values[channel] != PA_VOLUME_NORM)
|
|
|
|
|
sum = (int32_t) (sum * pa_sw_volume_to_linear(volume->values[channel]));
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
sum = CLAMP(sum, -0x80, 0x7F);
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
*((uint8_t*) data) = (uint8_t) (sum + 0x80);
|
|
|
|
|
data = (uint8_t*) data + 1;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
break;
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
case PA_SAMPLE_FLOAT32NE: {
|
|
|
|
|
unsigned channel = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (d = 0;; d += sizeof(float)) {
|
|
|
|
|
float sum = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 12:04:31 +00:00
|
|
|
if (!mute && volume->values[channel] != PA_VOLUME_MUTED) {
|
2006-01-27 16:25:31 +00:00
|
|
|
unsigned i;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (i = 0; i < nstreams; i++) {
|
|
|
|
|
float v;
|
|
|
|
|
pa_volume_t cvolume = streams[i].volume.values[channel];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (d >= streams[i].chunk.length)
|
2007-10-28 19:13:50 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (cvolume == PA_VOLUME_MUTED)
|
|
|
|
|
v = 0;
|
|
|
|
|
else {
|
2007-10-28 19:13:50 +00:00
|
|
|
v = *((float*) ((uint8_t*) streams[i].internal + streams[i].chunk.index + d));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (cvolume != PA_VOLUME_NORM)
|
|
|
|
|
v *= pa_sw_volume_to_linear(cvolume);
|
2006-01-27 16:25:31 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
sum += v;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
if (volume->values[channel] != PA_VOLUME_NORM)
|
|
|
|
|
sum *= pa_sw_volume_to_linear(volume->values[channel]);
|
2006-01-27 16:25:31 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
*((float*) data) = sum;
|
|
|
|
|
data = (uint8_t*) data + sizeof(float);
|
|
|
|
|
|
|
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
break;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
default:
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_error("ERROR: Unable to mix audio data of format %s.", pa_sample_format_to_string(spec->format));
|
2006-01-27 16:25:31 +00:00
|
|
|
abort();
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
finish:
|
|
|
|
|
|
|
|
|
|
for (k = 0; k < nstreams; k++)
|
|
|
|
|
pa_memblock_release(streams[k].chunk.memblock);
|
|
|
|
|
|
|
|
|
|
return d;
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2004-06-29 20:37:24 +00:00
|
|
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
void pa_volume_memchunk(
|
|
|
|
|
pa_memchunk*c,
|
|
|
|
|
const pa_sample_spec *spec,
|
|
|
|
|
const pa_cvolume *volume) {
|
|
|
|
|
|
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(spec);
|
|
|
|
|
pa_assert(c->length % pa_frame_size(spec) == 0);
|
|
|
|
|
pa_assert(volume);
|
2004-06-29 20:37:24 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (pa_cvolume_channels_equal_to(volume, PA_VOLUME_NORM))
|
2004-06-29 20:37:24 +00:00
|
|
|
return;
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (pa_cvolume_channels_equal_to(volume, PA_VOLUME_MUTED)) {
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_silence_memchunk(c, spec);
|
2004-06-29 20:37:24 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
ptr = pa_memblock_acquire(c->memblock);
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
switch (spec->format) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
case PA_SAMPLE_S16NE: {
|
|
|
|
|
int16_t *d;
|
|
|
|
|
size_t n;
|
2006-06-17 23:37:07 +00:00
|
|
|
unsigned channel;
|
2007-10-28 19:13:50 +00:00
|
|
|
int32_t linear[PA_CHANNELS_MAX];
|
2006-06-17 23:37:07 +00:00
|
|
|
|
|
|
|
|
for (channel = 0; channel < spec->channels; channel++)
|
2007-10-28 19:13:50 +00:00
|
|
|
linear[channel] = (int32_t) (pa_sw_volume_to_linear(volume->values[channel]) * 0x10000);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (channel = 0, d = (int16_t*) ((uint8_t*) ptr + c->index), n = c->length/sizeof(int16_t); n > 0; d++, n--) {
|
|
|
|
|
int32_t t;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
t = (int32_t)(*d);
|
|
|
|
|
t = (t * linear[channel]) / 0x10000;
|
|
|
|
|
t = CLAMP(t, -0x8000, 0x7FFF);
|
2006-01-27 16:25:31 +00:00
|
|
|
*d = (int16_t) t;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2006-01-30 11:49:03 +00:00
|
|
|
break;
|
2006-01-27 16:25:31 +00:00
|
|
|
}
|
2006-06-17 23:37:07 +00:00
|
|
|
|
|
|
|
|
case PA_SAMPLE_S16RE: {
|
|
|
|
|
int16_t *d;
|
|
|
|
|
size_t n;
|
|
|
|
|
unsigned channel;
|
2007-10-28 19:13:50 +00:00
|
|
|
int32_t linear[PA_CHANNELS_MAX];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
for (channel = 0; channel < spec->channels; channel++)
|
2007-10-28 19:13:50 +00:00
|
|
|
linear[channel] = (int32_t) (pa_sw_volume_to_linear(volume->values[channel]) * 0x10000);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (channel = 0, d = (int16_t*) ((uint8_t*) ptr + c->index), n = c->length/sizeof(int16_t); n > 0; d++, n--) {
|
|
|
|
|
int32_t t;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
t = (int32_t)(PA_INT16_SWAP(*d));
|
|
|
|
|
t = (t * linear[channel]) / 0x10000;
|
|
|
|
|
t = CLAMP(t, -0x8000, 0x7FFF);
|
|
|
|
|
*d = PA_INT16_SWAP((int16_t) t);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-17 23:37:07 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
case PA_SAMPLE_U8: {
|
|
|
|
|
uint8_t *d;
|
|
|
|
|
size_t n;
|
2007-10-28 19:13:50 +00:00
|
|
|
unsigned channel;
|
|
|
|
|
int32_t linear[PA_CHANNELS_MAX];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (channel = 0; channel < spec->channels; channel++)
|
|
|
|
|
linear[channel] = (int32_t) (pa_sw_volume_to_linear(volume->values[channel]) * 0x10000);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (channel = 0, d = (uint8_t*) ptr + c->index, n = c->length; n > 0; d++, n--) {
|
|
|
|
|
int32_t t;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
t = (int32_t) *d - 0x80;
|
|
|
|
|
t = (t * linear[channel]) / 0x10000;
|
|
|
|
|
t = CLAMP(t, -0x80, 0x7F);
|
2006-01-27 16:25:31 +00:00
|
|
|
*d = (uint8_t) (t + 0x80);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (++channel >= spec->channels)
|
|
|
|
|
channel = 0;
|
|
|
|
|
}
|
2006-01-30 11:49:03 +00:00
|
|
|
break;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
case PA_SAMPLE_FLOAT32NE: {
|
|
|
|
|
float *d;
|
|
|
|
|
int skip;
|
|
|
|
|
unsigned n;
|
|
|
|
|
unsigned channel;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
d = (float*) ((uint8_t*) ptr + c->index);
|
2006-01-27 16:25:31 +00:00
|
|
|
skip = spec->channels * sizeof(float);
|
|
|
|
|
n = c->length/sizeof(float)/spec->channels;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
for (channel = 0; channel < spec->channels ; channel ++) {
|
|
|
|
|
float v, *t;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
if (volume->values[channel] == PA_VOLUME_NORM)
|
|
|
|
|
continue;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-04-08 00:09:28 +00:00
|
|
|
v = (float) pa_sw_volume_to_linear(volume->values[channel]);
|
2006-01-27 16:25:31 +00:00
|
|
|
t = d + channel;
|
|
|
|
|
oil_scalarmult_f32(t, skip, t, skip, &v, n);
|
|
|
|
|
}
|
2006-01-30 11:49:03 +00:00
|
|
|
break;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
default:
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_log_warn(" Unable to change volume of format %s.", pa_sample_format_to_string(spec->format));
|
|
|
|
|
/* If we cannot change the volume, we just don't do it */
|
2004-06-29 20:37:24 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_memblock_release(c->memblock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t pa_frame_align(size_t l, const pa_sample_spec *ss) {
|
|
|
|
|
size_t fs;
|
|
|
|
|
|
|
|
|
|
pa_assert(ss);
|
|
|
|
|
|
|
|
|
|
fs = pa_frame_size(ss);
|
|
|
|
|
|
|
|
|
|
return (l/fs) * fs;
|
2004-06-29 20:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
int pa_frame_aligned(size_t l, const pa_sample_spec *ss) {
|
|
|
|
|
size_t fs;
|
|
|
|
|
|
|
|
|
|
pa_assert(ss);
|
|
|
|
|
|
|
|
|
|
fs = pa_frame_size(ss);
|
|
|
|
|
|
|
|
|
|
return l % fs == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_interleave(const void *src[], unsigned channels, void *dst, size_t ss, unsigned n) {
|
|
|
|
|
unsigned c;
|
|
|
|
|
size_t fs;
|
|
|
|
|
|
|
|
|
|
pa_assert(src);
|
|
|
|
|
pa_assert(channels > 0);
|
|
|
|
|
pa_assert(dst);
|
|
|
|
|
pa_assert(ss > 0);
|
|
|
|
|
pa_assert(n > 0);
|
|
|
|
|
|
|
|
|
|
fs = ss * channels;
|
|
|
|
|
|
|
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
|
unsigned j;
|
|
|
|
|
void *d;
|
|
|
|
|
const void *s;
|
|
|
|
|
|
|
|
|
|
s = src[c];
|
|
|
|
|
d = (uint8_t*) dst + c * ss;
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < n; j ++) {
|
|
|
|
|
oil_memcpy(d, s, ss);
|
|
|
|
|
s = (uint8_t*) s + ss;
|
|
|
|
|
d = (uint8_t*) d + fs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_deinterleave(const void *src, void *dst[], unsigned channels, size_t ss, unsigned n) {
|
|
|
|
|
size_t fs;
|
|
|
|
|
unsigned c;
|
|
|
|
|
|
|
|
|
|
pa_assert(src);
|
|
|
|
|
pa_assert(dst);
|
|
|
|
|
pa_assert(channels > 0);
|
|
|
|
|
pa_assert(ss > 0);
|
|
|
|
|
pa_assert(n > 0);
|
|
|
|
|
|
|
|
|
|
fs = ss * channels;
|
|
|
|
|
|
|
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
|
unsigned j;
|
|
|
|
|
const void *s;
|
|
|
|
|
void *d;
|
|
|
|
|
|
|
|
|
|
s = (uint8_t*) src + c * ss;
|
|
|
|
|
d = dst[c];
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < n; j ++) {
|
|
|
|
|
oil_memcpy(d, s, ss);
|
|
|
|
|
s = (uint8_t*) s + fs;
|
|
|
|
|
d = (uint8_t*) d + ss;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|