use btstack prefix for sbc files

This commit is contained in:
Milanka Ringwald 2016-07-23 15:08:13 +02:00
parent 8e51a09892
commit 4e074f72df
9 changed files with 13 additions and 13 deletions

View File

@ -73,11 +73,11 @@ include ${SBC_DECODER_ROOT}/Makefile.inc
include ${SBC_ENCODER_ROOT}/Makefile.inc include ${SBC_ENCODER_ROOT}/Makefile.inc
SBC_DECODER += \ SBC_DECODER += \
${BTSTACK_ROOT}/src/classic/sbc_plc.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_plc.c \
${BTSTACK_ROOT}/src/classic/sbc_decoder_bludroid.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_decoder_bludroid.c \
SBC_ENCODER += \ SBC_ENCODER += \
${BTSTACK_ROOT}/src/classic/sbc_encoder_bludroid.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_encoder_bludroid.c \
EXAMPLES = \ EXAMPLES = \
ancs_client_demo \ ancs_client_demo \

View File

@ -44,7 +44,7 @@
#include "sco_demo_util.h" #include "sco_demo_util.h"
#include "btstack_debug.h" #include "btstack_debug.h"
#include "sbc_decoder.h" #include "btstack_sbc_decoder.h"
// configure test mode // configure test mode
#define SCO_DEMO_MODE_SINE 0 #define SCO_DEMO_MODE_SINE 0

View File

@ -44,7 +44,7 @@
#define __SBC_DECODER_H #define __SBC_DECODER_H
#include <stdint.h> #include <stdint.h>
#include "sbc_plc.h" #include "btstack_sbc_plc.h"
#if defined __cplusplus #if defined __cplusplus
extern "C" { extern "C" {

View File

@ -50,8 +50,8 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include "sbc_decoder.h" #include "btstack_sbc_decoder.h"
#include "sbc_plc.h" #include "btstack_sbc_plc.h"
#include "oi_codec_sbc.h" #include "oi_codec_sbc.h"
#include "oi_assert.h" #include "oi_assert.h"

View File

@ -50,8 +50,8 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include "btstack_sbc_encoder.h"
#include "sbc_encoder.h" #include "sbc_encoder.h"
#include "btstack_sbc_encoder.h"
#include "btstack.h" #include "btstack.h"
#define SBC_MAX_CHANNELS 2 #define SBC_MAX_CHANNELS 2

View File

@ -48,7 +48,7 @@
#include <unistd.h> #include <unistd.h>
#include <math.h> #include <math.h>
#include "sbc_plc.h" #include "btstack_sbc_plc.h"
static uint8_t indices0[] = { 0xad, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x77, 0x6d, static uint8_t indices0[] = { 0xad, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x77, 0x6d,
0xb6, 0xdd, 0xdb, 0x6d, 0xb7, 0x76, 0xdb, 0x6d, 0xdd, 0xb6, 0xdb, 0x77, 0x6d, 0xb6, 0xdd, 0xdb, 0x6d, 0xb7, 0x76, 0xdb, 0x6d, 0xdd, 0xb6, 0xdb, 0x77, 0x6d,

View File

@ -8,11 +8,11 @@ include ${SBC_DECODER_ROOT}/Makefile.inc
include ${SBC_ENCODER_ROOT}/Makefile.inc include ${SBC_ENCODER_ROOT}/Makefile.inc
SBC_DECODER += \ SBC_DECODER += \
${BTSTACK_ROOT}/src/classic/sbc_plc.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_plc.c \
${BTSTACK_ROOT}/src/classic/sbc_decoder_bludroid.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_decoder_bludroid.c \
SBC_ENCODER += \ SBC_ENCODER += \
${BTSTACK_ROOT}/src/classic/sbc_encoder_bludroid.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_encoder_bludroid.c \
SBC_DECODER_OBJ = $(SBC_DECODER:.c=.o) SBC_DECODER_OBJ = $(SBC_DECODER:.c=.o)
SBC_ENCODER_OBJ = $(SBC_ENCODER:.c=.o) SBC_ENCODER_OBJ = $(SBC_ENCODER:.c=.o)

View File

@ -53,7 +53,7 @@
#include "oi_assert.h" #include "oi_assert.h"
#include "btstack.h" #include "btstack.h"
#include "sbc_decoder.h" #include "btstack_sbc_decoder.h"
static uint8_t read_buffer[24]; static uint8_t read_buffer[24];