mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-15 23:42:52 +00:00
sbc: add encoder/decoder example files
This commit is contained in:
parent
df25739fc3
commit
88a9940a86
222
test/sbc/sbc_decoder_test.c
Normal file
222
test/sbc/sbc_decoder_test.c
Normal file
@ -0,0 +1,222 @@
|
||||
/*
|
||||
* Copyright (C) 2014 BlueKitchen GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of the copyright holders nor the names of
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
* 4. Any redistribution, use, or modification is done solely for
|
||||
* personal benefit and not for any commercial purpose or for
|
||||
* monetary gain.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
|
||||
* RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* Please inquire about commercial licensing options at
|
||||
* contact@bluekitchen-gmbh.com
|
||||
*
|
||||
*/
|
||||
|
||||
// *****************************************************************************
|
||||
//
|
||||
// SBC decoder tests
|
||||
//
|
||||
// *****************************************************************************
|
||||
|
||||
#include "btstack_config.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include "oi_codec_sbc.h"
|
||||
#include "oi_assert.h"
|
||||
|
||||
|
||||
static uint8_t data[10000];
|
||||
static OI_INT16 pcmData[1000];
|
||||
static uint8_t buf[4];
|
||||
|
||||
static OI_UINT32 decoderData[10000];
|
||||
static OI_CODEC_SBC_DECODER_CONTEXT context;
|
||||
|
||||
void OI_AssertFail(char* file, int line, char* reason){
|
||||
printf("AssertFail file %s, line %d, reason %s\n", file, line, reason);
|
||||
}
|
||||
|
||||
static void show_usage(void){
|
||||
printf("Usage: ./sbc_decoder_test input.sbc");
|
||||
}
|
||||
|
||||
static ssize_t __read(int fd, void *buf, size_t count){
|
||||
ssize_t len, pos = 0;
|
||||
|
||||
while (count > 0) {
|
||||
len = read(fd, buf + pos, count);
|
||||
if (len <= 0)
|
||||
return pos;
|
||||
|
||||
count -= len;
|
||||
pos += len;
|
||||
}
|
||||
return pos;
|
||||
}
|
||||
|
||||
void little_endian_store_16(uint8_t *buffer, uint16_t pos, uint16_t value){
|
||||
buffer[pos++] = value;
|
||||
buffer[pos++] = value >> 8;
|
||||
}
|
||||
|
||||
void little_endian_store_32(uint8_t *buffer, uint16_t pos, uint32_t value){
|
||||
buffer[pos++] = value;
|
||||
buffer[pos++] = value >> 8;
|
||||
buffer[pos++] = value >> 16;
|
||||
buffer[pos++] = value >> 24;
|
||||
}
|
||||
|
||||
void little_endian_fstore_16(FILE *wav_file, uint16_t value){
|
||||
little_endian_store_32(buf, 0, value);
|
||||
fwrite(&buf, 1, 2, wav_file);
|
||||
}
|
||||
|
||||
void little_endian_fstore_32(FILE *wav_file, uint32_t value){
|
||||
little_endian_store_32(buf, 0, value);
|
||||
fwrite(&buf, 1, 4, wav_file);
|
||||
}
|
||||
|
||||
static void write_wav_header(FILE * wav_file, int num_samples, int num_channels, int sample_rate, int frame_count){
|
||||
unsigned int bytes_per_sample = 2;
|
||||
|
||||
/* write RIFF header */
|
||||
fwrite("RIFF", 1, 4, wav_file);
|
||||
// num_samples = blocks * subbands
|
||||
uint32_t data_bytes = (uint32_t) (bytes_per_sample * num_samples * frame_count * num_channels);
|
||||
little_endian_fstore_32(wav_file, data_bytes + 36);
|
||||
fwrite("WAVE", 1, 4, wav_file);
|
||||
|
||||
int byte_rate = sample_rate * num_channels * bytes_per_sample;
|
||||
int bits_per_sample = 8 * bytes_per_sample;
|
||||
int block_align = num_channels * bits_per_sample;
|
||||
int fmt_length = 16;
|
||||
int fmt_format_tag = 1; // PCM
|
||||
|
||||
/* write fmt chunk */
|
||||
fwrite("fmt ", 1, 4, wav_file);
|
||||
little_endian_fstore_32(wav_file, fmt_length);
|
||||
little_endian_fstore_16(wav_file, fmt_format_tag);
|
||||
little_endian_fstore_16(wav_file, num_channels);
|
||||
little_endian_fstore_32(wav_file, sample_rate);
|
||||
little_endian_fstore_32(wav_file, byte_rate);
|
||||
little_endian_fstore_16(wav_file, block_align);
|
||||
little_endian_fstore_16(wav_file, bits_per_sample);
|
||||
|
||||
/* write data chunk */
|
||||
fwrite("data", 1, 4, wav_file);
|
||||
little_endian_fstore_32(wav_file, data_bytes);
|
||||
}
|
||||
|
||||
static void write_wav_data(FILE * wav_file, unsigned long num_samples, unsigned int num_channels, int16_t * data){
|
||||
int i;
|
||||
for (i=0; i < num_samples; i++){
|
||||
little_endian_fstore_16(wav_file, (uint16_t)data[i]);
|
||||
if (num_channels == 2){
|
||||
little_endian_fstore_16(wav_file, (uint16_t)data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
int main (int argc, const char * argv[]){
|
||||
if (argc < 2){
|
||||
show_usage();
|
||||
return -1;
|
||||
}
|
||||
|
||||
const char * sbc_filename = argv[1];
|
||||
const char * wav_filename = argv[2];
|
||||
|
||||
|
||||
int fd = open(sbc_filename, O_RDONLY);
|
||||
if (fd < 0) {
|
||||
printf("Can't open file %s", sbc_filename);
|
||||
return -1;
|
||||
}
|
||||
printf("Open sbc file: %s\n", sbc_filename);
|
||||
|
||||
OI_UINT32 frameBytes = 0;
|
||||
|
||||
OI_UINT32 bytesRead = __read(fd, data, sizeof(data));
|
||||
frameBytes += bytesRead;
|
||||
const OI_BYTE *frameData = data;
|
||||
|
||||
OI_UINT32 pcmBytes = sizeof(pcmData);
|
||||
|
||||
OI_STATUS status = OI_CODEC_SBC_DecoderReset(&context, decoderData, sizeof(decoderData), 1, 1, FALSE);
|
||||
|
||||
if (status != 0){
|
||||
printf("Reset decoder error %d\n", status);
|
||||
return -1;
|
||||
}
|
||||
|
||||
int num_samples = 0;
|
||||
int num_channels = 0;
|
||||
int sample_rate = 0;
|
||||
int frame_count = 0;
|
||||
FILE * wav_file = fopen(wav_filename, "wb");
|
||||
|
||||
while (frameBytes != 0){
|
||||
status = OI_CODEC_SBC_DecodeFrame(&context, &frameData, &frameBytes, pcmData, &pcmBytes);
|
||||
num_samples = context.common.frameInfo.nrof_blocks * context.common.frameInfo.nrof_subbands;
|
||||
num_channels = context.common.frameInfo.nrof_channels;
|
||||
sample_rate = context.common.frameInfo.frequency;
|
||||
|
||||
if (status != 0){
|
||||
if (status != OI_CODEC_SBC_NOT_ENOUGH_HEADER_DATA && status != OI_CODEC_SBC_NOT_ENOUGH_BODY_DATA){
|
||||
printf("Frame decode error %d\n", status);
|
||||
break;
|
||||
}
|
||||
printf("Not enough data, read next %u bytes\n", bytesRead-frameBytes);
|
||||
|
||||
memmove(data, data + bytesRead - frameBytes, frameBytes);
|
||||
bytesRead = __read(fd, data + frameBytes, sizeof(data) - frameBytes);
|
||||
frameBytes += bytesRead;
|
||||
bytesRead = frameBytes;
|
||||
frameData = data;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (frame_count == 0){
|
||||
write_wav_header(wav_file, num_samples, num_channels, sample_rate, 0);
|
||||
}
|
||||
|
||||
write_wav_data(wav_file, num_samples, num_channels, pcmData);
|
||||
frame_count++;
|
||||
}
|
||||
rewind(wav_file);
|
||||
write_wav_header(wav_file, num_samples, num_channels, sample_rate, frame_count);
|
||||
|
||||
fclose(wav_file);
|
||||
printf("Write %d frames to wav file: %s\n", frame_count, wav_filename);
|
||||
|
||||
close(fd);
|
||||
}
|
204
test/sbc/sbc_encoder_test.c
Normal file
204
test/sbc/sbc_encoder_test.c
Normal file
@ -0,0 +1,204 @@
|
||||
/*
|
||||
* Copyright (C) 2014 BlueKitchen GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of the copyright holders nor the names of
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
* 4. Any redistribution, use, or modification is done solely for
|
||||
* personal benefit and not for any commercial purpose or for
|
||||
* monetary gain.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
|
||||
* RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* Please inquire about commercial licensing options at
|
||||
* contact@bluekitchen-gmbh.com
|
||||
*
|
||||
*/
|
||||
|
||||
// *****************************************************************************
|
||||
//
|
||||
// SBC encoder tests
|
||||
//
|
||||
// *****************************************************************************
|
||||
|
||||
#include "btstack_config.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "sbc_encoder.h"
|
||||
|
||||
static SBC_ENC_PARAMS context;
|
||||
static int16_t data[8*16*2];
|
||||
static int num_data_bytes = 0;
|
||||
static uint8_t sbc_packet[1000];
|
||||
static uint8_t buf[4];
|
||||
|
||||
static uint16_t little_endian_read_16(const uint8_t * buffer, int pos){
|
||||
return ((uint16_t) buffer[pos]) | (((uint16_t)buffer[(pos)+1]) << 8);
|
||||
}
|
||||
|
||||
static uint32_t little_endian_read_32(const uint8_t * buffer, int pos){
|
||||
return ((uint32_t) buffer[pos]) | (((uint32_t)buffer[(pos)+1]) << 8) | (((uint32_t)buffer[(pos)+2]) << 16) | (((uint32_t) buffer[(pos)+3]) << 24);
|
||||
}
|
||||
|
||||
|
||||
static uint16_t little_endian_fread_16(FILE * fd){
|
||||
fread(&buf, 1, 2, fd);
|
||||
return little_endian_read_16(buf, 0);
|
||||
}
|
||||
|
||||
|
||||
static uint32_t little_endian_fread_32(FILE * fd){
|
||||
fread(&buf, 1, 4, fd);
|
||||
return little_endian_read_32(buf, 0);
|
||||
}
|
||||
|
||||
static void read_wav_header(FILE * wav_fd, SBC_ENC_PARAMS *context){
|
||||
/* write RIFF header */
|
||||
uint8_t buf[10];
|
||||
fread(&buf, 1, 4, wav_fd);
|
||||
buf[4] = 0;
|
||||
printf("%s\n", buf ); // RIFF
|
||||
|
||||
little_endian_fread_32(wav_fd); // 36 + bytes_per_sample * num_samples * frame_count
|
||||
|
||||
fread(&buf, 1, 4, wav_fd);
|
||||
buf[4] = 0;
|
||||
printf("%s\n", buf ); // WAVE
|
||||
|
||||
fread(&buf, 1, 4, wav_fd);
|
||||
buf[4] = 0;
|
||||
printf("%s\n", buf ); // fmt
|
||||
|
||||
int fmt_length = little_endian_fread_32(wav_fd);
|
||||
int fmt_format_tag = little_endian_fread_16(wav_fd);
|
||||
|
||||
printf("fmt_length %d == 16, format %d == 1\n", fmt_length, fmt_format_tag);
|
||||
|
||||
context->s16NumOfChannels = little_endian_fread_16(wav_fd);
|
||||
if (context->s16NumOfChannels == 1){
|
||||
context->s16ChannelMode = SBC_MONO;
|
||||
} else {
|
||||
context->s16ChannelMode = SBC_STEREO;
|
||||
}
|
||||
|
||||
int sample_rate = little_endian_fread_32(wav_fd);
|
||||
|
||||
if (sample_rate == 16000)
|
||||
context->s16SamplingFreq = SBC_sf16000;
|
||||
else if (sample_rate == 32000)
|
||||
context->s16SamplingFreq = SBC_sf32000;
|
||||
else if (sample_rate == 44100)
|
||||
context->s16SamplingFreq = SBC_sf44100;
|
||||
else
|
||||
context->s16SamplingFreq = SBC_sf48000;
|
||||
|
||||
int byte_rate = little_endian_fread_32(wav_fd);
|
||||
context->u16BitRate = byte_rate * 8;
|
||||
|
||||
// int block_align =
|
||||
little_endian_fread_16(wav_fd);
|
||||
// int bits_per_sample =
|
||||
little_endian_fread_16(wav_fd);
|
||||
|
||||
fread(&buf, 1, 4, wav_fd);
|
||||
printf("%s\n", buf ); // data
|
||||
|
||||
num_data_bytes = little_endian_fread_32(wav_fd);
|
||||
}
|
||||
|
||||
static void read_audio_frame(FILE * wav_fd, SBC_ENC_PARAMS * context){
|
||||
int num_samples = context->s16NumOfSubBands * context->s16NumOfBlocks * context->s16NumOfChannels;
|
||||
int i;
|
||||
for (i=0; i < num_samples; i++){
|
||||
data[i] = little_endian_fread_16(wav_fd);
|
||||
}
|
||||
context->ps16PcmBuffer = data;
|
||||
}
|
||||
|
||||
static int sbc_num_frames(SBC_ENC_PARAMS * context){
|
||||
int num_subband_samples = context->s16NumOfSubBands * context->s16NumOfBlocks * context->s16NumOfChannels;
|
||||
int num_all_samples = num_data_bytes / 2;
|
||||
return num_all_samples / num_subband_samples;
|
||||
}
|
||||
|
||||
static void write_sbc_file(FILE * sbc_fd, SBC_ENC_PARAMS * context){
|
||||
int i;
|
||||
for (i=0;i<context->u16PacketLength;i++){
|
||||
printf("%02x ", context->pu8Packet[i]);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
fwrite(context->pu8Packet, 1, context->u16PacketLength, sbc_fd);
|
||||
}
|
||||
|
||||
static void SBC_Encoder_Context_Init(SBC_ENC_PARAMS * context, FILE * fd, int blocks, int subbands, int allmethod, int bitpool){
|
||||
context->s16NumOfSubBands = subbands;
|
||||
context->s16NumOfBlocks = blocks;
|
||||
context->s16AllocationMethod = allmethod;
|
||||
context->s16BitPool = bitpool;
|
||||
context->pu8Packet = sbc_packet;
|
||||
|
||||
read_wav_header(fd, context);
|
||||
}
|
||||
|
||||
int main (int argc, const char * argv[]){
|
||||
if (argc < 2){
|
||||
return -1;
|
||||
}
|
||||
|
||||
const char * wav_filename = argv[1];
|
||||
const char * sbc_filename = argv[2];
|
||||
|
||||
FILE * wav_fd = fopen(wav_filename, "rb");
|
||||
if (!wav_fd) {
|
||||
printf("Can't open file %s", wav_filename);
|
||||
return -1;
|
||||
}
|
||||
|
||||
FILE * sbc_fd = fopen(sbc_filename, "wb");
|
||||
if (!sbc_fd) {
|
||||
printf("Can't open file %s", sbc_filename);
|
||||
return -1;
|
||||
}
|
||||
|
||||
SBC_Encoder_Context_Init(&context, wav_fd, SBC_BLOCK_3, SUB_BANDS_4, SBC_LOUDNESS, 31);
|
||||
SBC_Encoder_Init(&context);
|
||||
|
||||
printf("channels %d, subbands %d, blocks %d\n", context.s16NumOfChannels, context.s16NumOfSubBands, context.s16NumOfBlocks);
|
||||
int num_frames = sbc_num_frames(&context);
|
||||
int frame_count = 0;
|
||||
while (frame_count < num_frames){
|
||||
printf("frame_count %d\n", frame_count);
|
||||
read_audio_frame(wav_fd, &context);
|
||||
SBC_Encoder(&context);
|
||||
write_sbc_file(sbc_fd, &context);
|
||||
frame_count++;
|
||||
}
|
||||
fclose(wav_fd);
|
||||
fclose(sbc_fd);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user