Lines Matching refs:sbc
3 * Bluetooth low-complexity, subband codec (SBC) decoder
40 #include "sbc.h"
51 sbc_t sbc;
101 sbc_init(&sbc, 0L);
102 sbc.endian = SBC_BE;
104 framelen = sbc_decode(&sbc, stream, streamlen, buf, sizeof(buf), &len);
105 channels = sbc.mode == SBC_MODE_MONO ? 1 : 2;
106 switch (sbc.frequency) {
129 filename, frequency, sbc.subbands * 4 + 4, sbc.bitpool,
130 sbc.allocation == SBC_AM_SNR ? "SNR" : "LOUDNESS",
131 sbc.mode == SBC_MODE_MONO ? "MONO" :
132 sbc.mode == SBC_MODE_STEREO ?
174 /* we have completed an sbc_decode at this point sbc.len is the
198 framelen = sbc_decode(&sbc, stream + pos, streamlen - pos,
212 sbc_finish(&sbc);
222 printf("SBC decoder utility ver %s\n", VERSION);