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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
|
#include "pcm_conv.h"
#include <stdlib.h>
#include <math.h>
/********************************************************
Audio Tools, a module and set of tools for manipulating audio data
Copyright (C) 2007-2015 Brian Langenberger
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*******************************************************/
#ifndef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#endif
#ifndef MAX
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#endif
/*******************************
* private function signatures *
*******************************/
#define PCM_CONV(name) \
static void \
pcm_##name##_to_int(unsigned total_samples, \
const unsigned char pcm_samples[], \
int int_samples[]); \
\
static void \
int_to_##name##_pcm(unsigned total_samples, \
const int int_samples[], \
unsigned char pcm_samples[]);
PCM_CONV(S8)
PCM_CONV(U8)
PCM_CONV(SB16)
PCM_CONV(SL16)
PCM_CONV(UB16)
PCM_CONV(UL16)
PCM_CONV(SB24)
PCM_CONV(SL24)
PCM_CONV(UB24)
PCM_CONV(UL24)
#define PCM_INT_CONV_DEFS(bits) \
static void \
int_##bits##_to_double(unsigned total_samples, \
const int int_samples[], \
double double_samples[]); \
\
static void \
int_##bits##_to_float(unsigned total_samples, \
const int int_samples[], \
float float_samples[]); \
\
static void \
double_to_##bits##_int(unsigned total_samples, \
const double double_samples[], \
int int_samples[]); \
\
static void \
float_to_##bits##_int(unsigned total_samples, \
const float float_samples[], \
int int_samples[]);
PCM_INT_CONV_DEFS(8)
PCM_INT_CONV_DEFS(16)
PCM_INT_CONV_DEFS(24)
/***********************************
* public function implementations *
***********************************/
pcm_to_int_f
pcm_to_int_converter(unsigned bits_per_sample,
int is_big_endian,
int is_signed)
{
switch (bits_per_sample) {
case 8:
if (is_signed) {
return pcm_S8_to_int;
} else {
return pcm_U8_to_int;
}
case 16:
if (is_signed) {
return is_big_endian ? pcm_SB16_to_int : pcm_SL16_to_int;
} else {
return is_big_endian ? pcm_UB16_to_int : pcm_UL16_to_int;
}
case 24:
if (is_signed) {
return is_big_endian ? pcm_SB24_to_int : pcm_SL24_to_int;
} else {
return is_big_endian ? pcm_UB24_to_int : pcm_UL24_to_int;
}
default:
return NULL;
}
}
int_to_pcm_f
int_to_pcm_converter(unsigned bits_per_sample,
int is_big_endian,
int is_signed)
{
switch (bits_per_sample) {
case 8:
if (is_signed) {
return int_to_S8_pcm;
} else {
return int_to_U8_pcm;
}
case 16:
if (is_signed) {
return is_big_endian ? int_to_SB16_pcm : int_to_SL16_pcm;
} else {
return is_big_endian ? int_to_UB16_pcm : int_to_UL16_pcm;
}
case 24:
if (is_signed) {
return is_big_endian ? int_to_SB24_pcm : int_to_SL24_pcm;
} else {
return is_big_endian ? int_to_UB24_pcm : int_to_UL24_pcm;
}
default:
return NULL;
}
}
int_to_double_f
int_to_double_converter(unsigned bits_per_sample)
{
switch (bits_per_sample) {
case 8:
return int_8_to_double;
case 16:
return int_16_to_double;
case 24:
return int_24_to_double;
default:
return NULL;
}
}
int_to_float_f
int_to_float_converter(unsigned bits_per_sample)
{
switch (bits_per_sample) {
case 8:
return int_8_to_float;
case 16:
return int_16_to_float;
case 24:
return int_24_to_float;
default:
return NULL;
}
}
double_to_int_f
double_to_int_converter(unsigned bits_per_sample)
{
switch (bits_per_sample) {
case 8:
return double_to_8_int;
case 16:
return double_to_16_int;
case 24:
return double_to_24_int;
default:
return NULL;
}
}
float_to_int_f
float_to_int_converter(unsigned bits_per_sample)
{
switch (bits_per_sample) {
case 8:
return float_to_8_int;
case 16:
return float_to_16_int;
case 24:
return float_to_24_int;
default:
return NULL;
}
}
/************************************
* private function implementations *
************************************/
static void
pcm_S8_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
if (pcm_samples[0] & 0x80) {
/*negative*/
int_samples[0] = -(int)(0x100 - pcm_samples[0]);
} else {
/*positive*/
int_samples[0] = (int)pcm_samples[0];
}
pcm_samples += 1;
int_samples += 1;
}
}
static void
int_to_S8_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
if (i > 0x7F)
i = 0x7F; /*avoid overflow*/
else if (i < -0x80)
i = -0x80; /*avoid underflow*/
if (int_samples[0] >= 0) {
/*positive*/
pcm_samples[0] = i;
} else {
/*negative*/
pcm_samples[0] = (1 << 8) - (-i);
}
int_samples += 1;
pcm_samples += 1;
}
}
static void
pcm_U8_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
int_samples[0] = ((int)pcm_samples[0]) - (1 << 7);
pcm_samples += 1;
int_samples += 1;
}
}
static void
int_to_U8_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
i += (1 << 7);
pcm_samples[0] = i & 0xFF;
int_samples += 1;
pcm_samples += 1;
}
}
static void
pcm_SB16_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
if (pcm_samples[0] & 0x80) {
/*negative*/
int_samples[0] =
-(int)(0x10000 - ((pcm_samples[0] << 8) | pcm_samples[1]));
} else {
/*positive*/
int_samples[0] =
(int)(pcm_samples[0] << 8) | pcm_samples[1];
}
pcm_samples += 2;
int_samples += 1;
}
}
static void
int_to_SB16_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
if (i > 0x7FFF)
i = 0x7FFF;
else if (i < -0x8000)
i = -0x8000;
if (i < 0) {
i = (1 << 16) - (-i);
}
pcm_samples[0] = i >> 8;
pcm_samples[1] = i & 0xFF;
int_samples += 1;
pcm_samples += 2;
}
}
static void
pcm_SL16_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
if (pcm_samples[1] & 0x80) {
/*negative*/
int_samples[0] =
-(int)(0x10000 - ((pcm_samples[1] << 8) | pcm_samples[0]));
} else {
/*positive*/
int_samples[0] =
(int)(pcm_samples[1] << 8) | pcm_samples[0];
}
pcm_samples += 2;
int_samples += 1;
}
}
static void
int_to_SL16_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
if (i > 0x7FFF)
i = 0x7FFF;
else if (i < -0x8000)
i = -0x8000;
if (i < 0) {
i = (1 << 16) - (-i);
}
pcm_samples[1] = i >> 8;
pcm_samples[0] = i & 0xFF;
int_samples += 1;
pcm_samples += 2;
}
}
static void
pcm_UB16_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
int_samples[0] =
((int)(pcm_samples[0] << 8) | pcm_samples[1]) - (1 << 15);
pcm_samples += 2;
int_samples += 1;
}
}
static void
int_to_UB16_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
i += (1 << 15);
pcm_samples[0] = (i >> 8) & 0xFF;
pcm_samples[1] = i & 0xFF;
int_samples += 1;
pcm_samples += 2;
}
}
static void
pcm_UL16_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
int_samples[0] =
((int)(pcm_samples[1] << 8) | pcm_samples[0]) - (1 << 15);
pcm_samples += 2;
int_samples += 1;
}
}
static void
int_to_UL16_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
i += (1 << 15);
pcm_samples[1] = (i >> 8) & 0xFF;
pcm_samples[0] = i & 0xFF;
int_samples += 1;
pcm_samples += 2;
}
}
static void
pcm_SB24_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
if (pcm_samples[0] & 0x80) {
/*negative*/
int_samples[0] =
-(int)(0x1000000 - ((pcm_samples[0] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[2]));
} else {
/*positive*/
int_samples[0] =
(int)((pcm_samples[0] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[2]);
}
pcm_samples += 3;
int_samples += 1;
}
}
static void
int_to_SB24_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
if (i > 0x7FFFFF)
i = 0x7FFFFF;
else if (i < -0x800000)
i = -0x800000;
if (i < 0) {
i = (1 << 24) - (-i);
}
pcm_samples[0] = i >> 16;
pcm_samples[1] = (i >> 8) & 0xFF;
pcm_samples[2] = i & 0xFF;
int_samples += 1;
pcm_samples += 3;
}
}
static void
pcm_SL24_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
if (pcm_samples[2] & 0x80) {
/*negative*/
int_samples[0] =
-(int)(0x1000000 - ((pcm_samples[2] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[0]));
} else {
/*positive*/
int_samples[0] =
(int)((pcm_samples[2] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[0]);
}
pcm_samples += 3;
int_samples += 1;
}
}
static void
int_to_SL24_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
if (i > 0x7FFFFF)
i = 0x7FFFFF;
else if (i < -0x800000)
i = -0x800000;
if (i < 0) {
i = (1 << 24) - (-i);
}
pcm_samples[2] = i >> 16;
pcm_samples[1] = (i >> 8) & 0xFF;
pcm_samples[0] = i & 0xFF;
int_samples += 1;
pcm_samples += 3;
}
}
static void
pcm_UB24_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
int_samples[0] =
((int)((pcm_samples[0] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[2])) - (1 << 23);
pcm_samples += 3;
int_samples += 1;
}
}
static void
int_to_UB24_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
i += (1 << 23);
pcm_samples[0] = (i >> 16) & 0xFF;
pcm_samples[1] = (i >> 8) & 0xFF;
pcm_samples[2] = i & 0xFF;
int_samples += 1;
pcm_samples += 3;
}
}
static void
pcm_UL24_to_int(unsigned total_samples,
const unsigned char pcm_samples[],
int int_samples[])
{
for (; total_samples; total_samples--) {
int_samples[0] = ((int)((pcm_samples[2] << 16) |
(pcm_samples[1] << 8) |
pcm_samples[0])) - (1 << 23);
pcm_samples += 3;
int_samples += 1;
}
}
static void
int_to_UL24_pcm(unsigned total_samples,
const int int_samples[],
unsigned char pcm_samples[])
{
for (; total_samples; total_samples--) {
register int i = int_samples[0];
i += (1 << 23);
pcm_samples[2] = (i >> 16) & 0xFF;
pcm_samples[1] = (i >> 8) & 0xFF;
pcm_samples[0] = i & 0xFF;
int_samples += 1;
pcm_samples += 3;
}
}
#include <stdio.h>
#define PCM_INT_CONV(BITS, NEGATIVE_MIN, POSITIVE_MAX) \
static void \
int_##BITS##_to_double(unsigned total_samples, \
const int int_samples[], \
double double_samples[]) \
{ \
for (; total_samples; total_samples--) { \
const register int i = int_samples[0]; \
if (i >= 0) { \
double_samples[0] = (double)i / POSITIVE_MAX; \
} else { \
double_samples[0] = (double)i / -(NEGATIVE_MIN); \
} \
int_samples += 1; \
double_samples += 1; \
} \
} \
\
static void \
int_##BITS##_to_float(unsigned total_samples, \
const int int_samples[], \
float float_samples[]) \
{ \
for (; total_samples; total_samples--) { \
const register int i = int_samples[0]; \
if (i >= 0) { \
float_samples[0] = (float)i / POSITIVE_MAX; \
} else { \
float_samples[0] = (float)i / -(NEGATIVE_MIN); \
} \
int_samples += 1; \
float_samples += 1; \
} \
} \
\
static void \
double_to_##BITS##_int(unsigned total_samples, \
const double double_samples[], \
int int_samples[]) \
{ \
for (; total_samples; total_samples--) { \
const register double d = double_samples[0]; \
const int value = \
d * (signbit(d) ? -(NEGATIVE_MIN) : POSITIVE_MAX); \
int_samples[0] = MIN(MAX(value, NEGATIVE_MIN), POSITIVE_MAX); \
double_samples += 1; \
int_samples += 1; \
} \
} \
\
static void \
float_to_##BITS##_int(unsigned total_samples, \
const float float_samples[], \
int int_samples[]) \
{ \
for (; total_samples; total_samples--) { \
const register double d = float_samples[0]; \
const int value = \
d * (signbit(d) ? -(NEGATIVE_MIN) : POSITIVE_MAX); \
int_samples[0] = MIN(MAX(value, NEGATIVE_MIN), POSITIVE_MAX); \
float_samples += 1; \
int_samples += 1; \
} \
}
PCM_INT_CONV(8, -128, 127)
PCM_INT_CONV(16, -32768, 32767)
PCM_INT_CONV(24, -8388608, 8388607)
|