2013-10-29 16:27:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 nu774
|
|
|
|
* For conditions of distribution and use, see copyright notice in COPYING
|
|
|
|
*/
|
2013-10-20 16:55:23 +02:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#if HAVE_STDINT_H
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
2019-09-19 12:07:22 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <fdk-aac/aacenc_lib.h>
|
2013-10-20 16:55:23 +02:00
|
|
|
#include "pcm_reader.h"
|
|
|
|
|
|
|
|
typedef struct pcm_sint16_converter_t {
|
|
|
|
pcm_reader_vtbl_t *vtbl;
|
|
|
|
pcm_reader_t *src;
|
|
|
|
pcm_sample_description_t format;
|
|
|
|
void *pivot;
|
|
|
|
unsigned capacity;
|
|
|
|
} pcm_sint16_converter_t;
|
|
|
|
|
|
|
|
static inline pcm_reader_t *get_source(pcm_reader_t *reader)
|
|
|
|
{
|
|
|
|
return ((pcm_sint16_converter_t *)reader)->src;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const
|
|
|
|
pcm_sample_description_t *get_format(pcm_reader_t *reader)
|
|
|
|
{
|
|
|
|
return &((pcm_sint16_converter_t *)reader)->format;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t get_length(pcm_reader_t *reader)
|
|
|
|
{
|
|
|
|
return pcm_get_length(get_source(reader));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t get_position(pcm_reader_t *reader)
|
|
|
|
{
|
|
|
|
return pcm_get_position(get_source(reader));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_frames(pcm_reader_t *reader, void *buffer, unsigned nframes)
|
|
|
|
{
|
2014-08-12 16:43:19 +02:00
|
|
|
unsigned i, count;
|
2013-10-20 16:55:23 +02:00
|
|
|
pcm_sint16_converter_t *self = (pcm_sint16_converter_t *)reader;
|
|
|
|
const pcm_sample_description_t *sfmt = pcm_get_format(self->src);
|
|
|
|
unsigned bytes = nframes * sfmt->bytes_per_frame;
|
|
|
|
if (self->capacity < bytes) {
|
|
|
|
void *p = realloc(self->pivot, bytes);
|
|
|
|
if (!p) return -1;
|
|
|
|
self->pivot = p;
|
|
|
|
self->capacity = bytes;
|
|
|
|
}
|
|
|
|
nframes = pcm_read_frames(self->src, self->pivot, nframes);
|
2014-08-12 16:43:19 +02:00
|
|
|
count = nframes * sfmt->channels_per_frame;
|
|
|
|
if (PCM_IS_FLOAT(sfmt)) {
|
|
|
|
float *ip = self->pivot;
|
2019-09-19 12:07:22 +02:00
|
|
|
INT_PCM *op = buffer;
|
|
|
|
#if SAMPLE_BITS == 16
|
2014-08-12 16:43:19 +02:00
|
|
|
for (i = 0; i < count; ++i)
|
2019-09-19 12:07:22 +02:00
|
|
|
op[i] = (int16_t)pcm_clip(ip[i] * 32768.0, -32768.0, 32767.0);
|
|
|
|
#else
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
op[i] = (int32_t)pcm_clip(ip[i] * 2147483648.0, -2147483648.0, 2147483647.0);
|
|
|
|
#endif
|
2014-08-12 16:43:19 +02:00
|
|
|
} else {
|
|
|
|
int32_t *ip = self->pivot;
|
2019-09-19 12:07:22 +02:00
|
|
|
INT_PCM *op = buffer;
|
|
|
|
#if SAMPLE_BITS == 16
|
2014-08-12 16:43:19 +02:00
|
|
|
if (sfmt->bits_per_channel <= 16) {
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
op[i] = ip[i] >> 16;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
int n = ((ip[i] >> 15) + 1) >> 1;
|
|
|
|
op[i] = (n == 0x8000) ? 0x7fff : n;
|
|
|
|
}
|
|
|
|
}
|
2019-09-19 12:07:22 +02:00
|
|
|
#else
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
op[i] = ip[i];
|
|
|
|
#endif
|
2014-08-12 16:43:19 +02:00
|
|
|
}
|
2013-10-20 16:55:23 +02:00
|
|
|
return nframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void teardown(pcm_reader_t **reader)
|
|
|
|
{
|
|
|
|
pcm_sint16_converter_t *self = (pcm_sint16_converter_t *)*reader;
|
|
|
|
pcm_teardown(&self->src);
|
|
|
|
free(self->pivot);
|
|
|
|
free(self);
|
|
|
|
*reader = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pcm_reader_vtbl_t my_vtable = {
|
|
|
|
get_format, get_length, get_position, read_frames, teardown
|
|
|
|
};
|
|
|
|
|
|
|
|
pcm_reader_t *pcm_open_sint16_converter(pcm_reader_t *reader)
|
|
|
|
{
|
|
|
|
pcm_sint16_converter_t *self = 0;
|
|
|
|
pcm_sample_description_t *fmt;
|
|
|
|
|
2019-09-27 14:05:12 +02:00
|
|
|
assert((SAMPLE_BITS>>3) == sizeof(INT_PCM));
|
2019-09-19 12:07:22 +02:00
|
|
|
|
2013-10-20 16:55:23 +02:00
|
|
|
if ((self = calloc(1, sizeof(pcm_sint16_converter_t))) == 0)
|
|
|
|
return 0;
|
|
|
|
self->src = reader;
|
|
|
|
self->vtbl = &my_vtable;
|
|
|
|
memcpy(&self->format, pcm_get_format(reader), sizeof(self->format));
|
|
|
|
fmt = &self->format;
|
2019-09-19 12:07:22 +02:00
|
|
|
fmt->bits_per_channel = SAMPLE_BITS;
|
2014-08-12 16:43:19 +02:00
|
|
|
fmt->sample_type = PCM_TYPE_SINT;
|
2019-09-19 12:07:22 +02:00
|
|
|
fmt->bytes_per_frame = sizeof(INT_PCM) * fmt->channels_per_frame;
|
2013-10-20 16:55:23 +02:00
|
|
|
return (pcm_reader_t *)self;
|
|
|
|
}
|