1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* Copyright 2008-2013 Various Authors
* Copyright 2004 Timo Hirvonen
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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 General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "pcm.h"
#include "utils.h"
#include <stdint.h>
#include <stdlib.h>
/*
* Functions to convert PCM to 16-bit signed little-endian stereo
*
* Conversion for 8-bit PCM):
* 1. phase
* unsigned -> signed
* mono -> stereo
* 8 -> 16
*
* Conversion for 16-bit PCM:
* 1. phase
* be -> le
* unsigned -> signed
*
* 2. phase
* mono -> stereo
*
* There's no reason to split 8-bit conversion to 2 phases because we need to
* use separate buffer for 8->16 conversion anyway.
*
* Conversions for 16-bit stereo can be done in place. 16-bit mono needs to be
* converted to stereo so it's worthwhile to split the conversion to 2 phases.
*/
static void convert_u8_1ch_to_s16_2ch(void *dst, const void *src, int count)
{
int16_t *d = dst;
const uint8_t *s = src;
int i, j = 0;
for (i = 0; i < count; i++) {
int16_t sample = s[i] << 8;
sample -= 32768;
d[j++] = sample;
d[j++] = sample;
}
}
static void convert_s8_1ch_to_s16_2ch(void *dst, const void *src, int count)
{
int16_t *d = dst;
const int8_t *s = src;
int i, j = 0;
for (i = 0; i < count; i++) {
int16_t sample = s[i] << 8;
d[j++] = sample;
d[j++] = sample;
}
}
static void convert_u8_2ch_to_s16_2ch(void *dst, const void *src, int count)
{
int16_t *d = dst;
const int8_t *s = src;
int i;
for (i = 0; i < count; i++) {
int16_t sample = s[i] << 8;
sample -= 32768;
d[i] = sample;
}
}
static void convert_s8_2ch_to_s16_2ch(void *dst, const void *src, int count)
{
int16_t *d = dst;
const int8_t *s = src;
int i;
for (i = 0; i < count; i++) {
int16_t sample = s[i] << 8;
d[i] = sample;
}
}
static void convert_u16_le_to_s16_le(void *buf, int count)
{
int16_t *b = buf;
int i;
for (i = 0; i < count; i++) {
int sample = (uint16_t)b[i];
sample -= 32768;
b[i] = sample;
}
}
static void convert_u16_be_to_s16_le(void *buf, int count)
{
int16_t *b = buf;
int i;
for (i = 0; i < count; i++) {
uint16_t u = b[i];
int sample;
u = swap_uint16(u);
sample = (int)u - 32768;
b[i] = sample;
}
}
static void swap_s16_byte_order(void *buf, int count)
{
int16_t *b = buf;
int i;
for (i = 0; i < count; i++)
b[i] = swap_uint16(b[i]);
}
static void convert_16_1ch_to_16_2ch(void *dst, const void *src, int count)
{
int16_t *d = dst;
const int16_t *s = src;
int i, j = 0;
for (i = 0; i < count; i++) {
d[j++] = s[i];
d[j++] = s[i];
}
}
/* index is ((bits >> 2) & 4) | (is_signed << 1) | (channels - 1) */
pcm_conv_func pcm_conv[8] = {
convert_u8_1ch_to_s16_2ch,
convert_u8_2ch_to_s16_2ch,
convert_s8_1ch_to_s16_2ch,
convert_s8_2ch_to_s16_2ch,
convert_16_1ch_to_16_2ch,
NULL,
convert_16_1ch_to_16_2ch,
NULL
};
/* index is ((bits >> 2) & 4) | (is_signed << 1) | bigendian */
pcm_conv_in_place_func pcm_conv_in_place[8] = {
NULL,
NULL,
NULL,
NULL,
convert_u16_le_to_s16_le,
convert_u16_be_to_s16_le,
#ifdef WORDS_BIGENDIAN
swap_s16_byte_order,
NULL,
#else
NULL,
swap_s16_byte_order,
#endif
};
|