Hi Andrzej, On Fri, Jan 17, 2014 at 9:26 PM, Andrzej Kaczmarek <andrzej.kaczmarek@xxxxxxxxx> wrote: > Hi Marcel, > > On 17 January 2014 19:24, Marcel Holtmann <marcel@xxxxxxxxxxxx> wrote: >> Hi Andrzej, >> >>> --- >>> android/hal-audio.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++ >>> 1 file changed, 72 insertions(+) >>> >>> diff --git a/android/hal-audio.c b/android/hal-audio.c >>> index f53dba0..e5c646c 100644 >>> --- a/android/hal-audio.c >>> +++ b/android/hal-audio.c >>> @@ -32,6 +32,7 @@ >>> #include "hal-log.h" >>> #include "hal-msg.h" >>> #include "../profiles/audio/a2dp-codecs.h" >>> +#include <sbc/sbc.h> >>> >>> static const uint8_t a2dp_src_uuid[] = { >>> 0x00, 0x00, 0x11, 0x0a, 0x00, 0x00, 0x10, 0x00, >>> @@ -53,6 +54,8 @@ struct audio_input_config { >>> >>> struct sbc_data { >>> a2dp_sbc_t sbc; >>> + >>> + sbc_t enc; >>> }; >>> >>> static int sbc_get_presets(struct audio_preset *preset, size_t *len); >>> @@ -184,6 +187,70 @@ static int sbc_get_presets(struct audio_preset *preset, size_t *len) >>> return i; >>> } >>> >>> +static void sbc_init_encoder(struct sbc_data *sbc_data) >>> +{ >>> + a2dp_sbc_t *in = &sbc_data->sbc; >>> + sbc_t *out = &sbc_data->enc; >>> + >>> + DBG(""); >>> + >>> + sbc_init(out, 0L); >>> + >>> + switch (in->frequency) { >>> + case SBC_SAMPLING_FREQ_16000: >>> + out->frequency = SBC_FREQ_16000; >>> + break; >>> + case SBC_SAMPLING_FREQ_32000: >>> + out->frequency = SBC_FREQ_32000; >>> + break; >>> + case SBC_SAMPLING_FREQ_44100: >>> + out->frequency = SBC_FREQ_44100; >>> + break; >>> + case SBC_SAMPLING_FREQ_48000: >>> + out->frequency = SBC_FREQ_48000; >>> + break; >>> + } >>> + >>> + out->subbands = in->subbands == SBC_SUBBANDS_4 ? SBC_SB_4 : SBC_SB_8; >>> + >>> + switch (in->channel_mode) { >>> + case SBC_CHANNEL_MODE_MONO: >>> + out->mode = SBC_MODE_MONO; >>> + break; >>> + case SBC_CHANNEL_MODE_DUAL_CHANNEL: >>> + out->mode = SBC_MODE_DUAL_CHANNEL; >>> + break; >>> + case SBC_CHANNEL_MODE_JOINT_STEREO: >>> + out->mode = SBC_MODE_JOINT_STEREO; >>> + break; >>> + case SBC_CHANNEL_MODE_STEREO: >>> + out->mode = SBC_MODE_STEREO; >>> + break; >>> + } >>> + >>> + out->endian = SBC_LE; >>> + >>> + out->bitpool = in->max_bitpool; >>> + >>> + out->allocation = in->allocation_method == SBC_ALLOCATION_SNR ? >>> + SBC_AM_SNR : SBC_AM_LOUDNESS; >>> + >>> + switch (in->block_length) { >>> + case SBC_BLOCK_LENGTH_4: >>> + out->blocks = SBC_BLK_4; >>> + break; >>> + case SBC_BLOCK_LENGTH_8: >>> + out->blocks = SBC_BLK_8; >>> + break; >>> + case SBC_BLOCK_LENGTH_12: >>> + out->blocks = SBC_BLK_12; >>> + break; >>> + case SBC_BLOCK_LENGTH_16: >>> + out->blocks = SBC_BLK_16; >>> + break; >>> + } >> >> aren’t the values all the same? This looks pretty complicated for something that should be dead simple. Does Android really had to duplicate every single definition with the same prefix? > > Actually symbols for 'in' come from a2dp-codecs.h and 'out' from sbc.h > ;-) And they have different values since A2DP uses shifted-bit values > while sbc.h are just ordinal values so cannot assign them directly. Perhaps we should create some helper function in sbc code to do that translation for us, I was even considering stuff the rtp packing there as well. -- Luiz Augusto von Dentz -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html