Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 219) sorted by relevance

123456789

/hal_espressif-2.7.6/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dbitalloc-sbc.c35 static void dualBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT *common) in dualBitAllocation() argument
44 bitcountL = computeBitneed(common, bitneedsL.uint8, 0, &bitpoolPreferenceL); in dualBitAllocation()
45 bitcountR = computeBitneed(common, bitneedsR.uint8, 1, &bitpoolPreferenceR); in dualBitAllocation()
47 oneChannelBitAllocation(common, &bitneedsL, 0, bitcountL); in dualBitAllocation()
48 oneChannelBitAllocation(common, &bitneedsR, 1, bitcountR); in dualBitAllocation()
51 static void stereoBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT *common) in stereoBitAllocation() argument
53 const OI_UINT nrof_subbands = common->frameInfo.nrof_subbands; in stereoBitAllocation()
62 bitcount = computeBitneed(common, &bitneeds.uint8[0], 0, &bitpoolPreference); in stereoBitAllocation()
63 bitcount += computeBitneed(common, &bitneeds.uint8[nrof_subbands], 1, &bitpoolPreference); in stereoBitAllocation()
67 …bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds.uint32, 2 * nrof_subbands, bitc… in stereoBitAllocation()
[all …]
Ddecoder-sbc.c73 context->common.frameInfo.enhanced = (**frameData == OI_SBC_ENHANCED_SYNCWORD); in FindSyncword()
92 context->common.frameInfo.enhanced = FALSE; in FindSyncword()
110 …OI_UINT frameSamples = context->common.frameInfo.nrof_blocks * context->common.frameInfo.nrof_subb… in DecodeBody()
116 … if (*pcmBytes < (sizeof(OI_INT16) * frameSamples * context->common.pcmStride) && !allowPartial) { in DecodeBody()
121 …} else if (*pcmBytes < sizeof (OI_INT16) * context->common.frameInfo.nrof_subbands * context->comm… in DecodeBody()
129 OI_SBC_ReadScalefactors(&context->common, bodyData, &bs); in DecodeBody()
132 OI_SBC_ComputeBitAllocation(&context->common); in DecodeBody()
135 if (context->common.frameInfo.mode == SBC_JOINT_STEREO) { in DecodeBody()
141 context->bufferedBlocks = context->common.frameInfo.nrof_blocks; in DecodeBody()
145 …code_block_count = *pcmBytes / sizeof(OI_INT16) / context->common.pcmStride / context->common.fram… in DecodeBody()
[all …]
Ddecoder-private.c75 …status = OI_CODEC_SBC_Alloc(&context->common, decoderData, decoderDataBytes, maxChannels, pcmStrid… in internal_DecoderReset()
81 context->common.codecInfo = OI_Codec_Copyright; in internal_DecoderReset()
82 context->common.maxBitneed = 0; in internal_DecoderReset()
84 OI_SBC_ExpandFrameFields(&context->common.frameInfo); in internal_DecoderReset()
95 INLINE void OI_SBC_ReadHeader(OI_CODEC_SBC_COMMON_CONTEXT *common, const OI_BYTE *data) in OI_SBC_ReadHeader() argument
97 OI_CODEC_SBC_FRAME_INFO *frame = &common->frameInfo; in OI_SBC_ReadHeader()
167 PRIVATE void OI_SBC_ReadScalefactors(OI_CODEC_SBC_COMMON_CONTEXT *common, in OI_SBC_ReadScalefactors() argument
171 OI_UINT i = common->frameInfo.nrof_subbands * common->frameInfo.nrof_channels; in OI_SBC_ReadScalefactors()
172 OI_INT8 *scale_factor = common->scale_factor; in OI_SBC_ReadScalefactors()
175 if (common->frameInfo.nrof_subbands == 8 || common->frameInfo.mode != SBC_JOINT_STEREO) { in OI_SBC_ReadScalefactors()
[all …]
Dsynthesis-sbc.c264 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_80()
265 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_80()
266 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_80()
267 OI_INT32 *s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_80()
272 …_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[0] + context->common.filterBufferLen - 72… in OI_SBC_SynthFrame_80()
274 …_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[1] + context->common.filterBufferLen - 72… in OI_SBC_SynthFrame_80()
276 offset = context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_80()
282 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_80()
283 SYNTH80(pcm + ch, context->common.filterBuffer[ch] + offset, pcmStrideShift); in OI_SBC_SynthFrame_80()
288 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_80()
[all …]
Dalloc.c29 PRIVATE OI_STATUS OI_CODEC_SBC_Alloc(OI_CODEC_SBC_COMMON_CONTEXT *common, in OI_CODEC_SBC_Alloc() argument
48 common->maxChannels = maxChannels; in OI_CODEC_SBC_Alloc()
49 common->pcmStride = pcmStride; in OI_CODEC_SBC_Alloc()
53 subdataSize = maxChannels * sizeof(common->subdata[0]) * SBC_MAX_BANDS * SBC_MAX_BLOCKS; in OI_CODEC_SBC_Alloc()
58 …filterBufferCount = (codecDataBytes - subdataSize) / (sizeof(common->filterBuffer[0][0]) * SBC_MAX… in OI_CODEC_SBC_Alloc()
62 common->filterBufferLen = filterBufferCount * SBC_MAX_BANDS; in OI_CODEC_SBC_Alloc()
65 common->subdata = (OI_INT32 *)codecData; in OI_CODEC_SBC_Alloc()
72 size_t allocSize = common->filterBufferLen * sizeof(common->filterBuffer[0][0]); in OI_CODEC_SBC_Alloc()
73 common->filterBuffer[i] = (SBC_BUFFER_T *)codecData; in OI_CODEC_SBC_Alloc()
Ddecoder-oina.c81 context->common.frameInfo.enhanced = enhanced; in OI_CODEC_SBC_DecoderConfigureRaw()
83 context->common.frameInfo.enhanced = FALSE; in OI_CODEC_SBC_DecoderConfigureRaw()
85 context->common.frameInfo.freqIndex = frequency; in OI_CODEC_SBC_DecoderConfigureRaw()
86 context->common.frameInfo.mode = mode; in OI_CODEC_SBC_DecoderConfigureRaw()
87 context->common.frameInfo.subbands = subbands; in OI_CODEC_SBC_DecoderConfigureRaw()
88 context->common.frameInfo.blocks = blocks; in OI_CODEC_SBC_DecoderConfigureRaw()
89 context->common.frameInfo.alloc = alloc; in OI_CODEC_SBC_DecoderConfigureRaw()
90 context->common.frameInfo.bitpool = maxBitpool; in OI_CODEC_SBC_DecoderConfigureRaw()
92 OI_SBC_ExpandFrameFields(&context->common.frameInfo); in OI_CODEC_SBC_DecoderConfigureRaw()
94 if (context->common.frameInfo.nrof_channels >= context->common.pcmStride) { in OI_CODEC_SBC_DecoderConfigureRaw()
Dbitalloc.c129 OI_UINT computeBitneed(OI_CODEC_SBC_COMMON_CONTEXT *common, in computeBitneed() argument
148 const OI_UINT nrof_subbands = common->frameInfo.nrof_subbands; in computeBitneed()
150 OI_INT8 *scale_factor = &common->scale_factor[ch ? nrof_subbands : 0]; in computeBitneed()
155 if (common->frameInfo.alloc == SBC_SNR) { in computeBitneed()
169 offset = offset4[common->frameInfo.freqIndex]; in computeBitneed()
171 offset = offset8[common->frameInfo.freqIndex]; in computeBitneed()
191 common->maxBitneed = OI_MAX(maxBits, common->maxBitneed); in computeBitneed()
353 void oneChannelBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT *common, in oneChannelBitAllocation() argument
358 const OI_UINT8 nrof_subbands = common->frameInfo.nrof_subbands; in oneChannelBitAllocation()
367 …bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds->uint32, nrof_subbands, bitcoun… in oneChannelBitAllocation()
[all …]
Dreadsamplesjoint.inc26 void OI_SBC_ReadSamplesJoint4(OI_CODEC_SBC_COMMON_CONTEXT *common, OI_BITSTREAM *global_bs)
33 void OI_SBC_ReadSamplesJoint8(OI_CODEC_SBC_COMMON_CONTEXT *common, OI_BITSTREAM *global_bs)
42 void OI_SBC_ReadSamplesJoint(OI_CODEC_SBC_COMMON_CONTEXT *common, OI_BITSTREAM *global_bs)
44 OI_UINT nrof_subbands = common->frameInfo.nrof_subbands;
59 OI_CODEC_SBC_COMMON_CONTEXT *common = &context->common;
60 OI_UINT bl = common->frameInfo.nrof_blocks;
61 OI_INT32 * RESTRICT s = common->subdata;
65 OI_UINT8 jmask = common->frameInfo.join << (8 - NROF_SUBBANDS);
68 OI_INT8 *sf_array = &common->scale_factor[0];
69 OI_UINT8 *bits_array = &common->bits.uint8[0];
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/common_components/fast_provisioning/
Dble_mesh_fast_prov_operation.c330 esp_ble_mesh_client_common_param_t common = {0}; in example_send_config_appkey_add() local
354 common.opcode = ESP_BLE_MESH_MODEL_OP_APP_KEY_ADD; in example_send_config_appkey_add()
355 common.model = model; in example_send_config_appkey_add()
356 common.ctx.net_idx = info->net_idx; in example_send_config_appkey_add()
357 common.ctx.app_idx = 0x0000; /* not used for config messages */ in example_send_config_appkey_add()
358 common.ctx.addr = info->dst; in example_send_config_appkey_add()
359 common.ctx.send_rel = false; in example_send_config_appkey_add()
360 common.ctx.send_ttl = 0; in example_send_config_appkey_add()
361 common.msg_timeout = info->timeout; in example_send_config_appkey_add()
362 common.msg_role = info->role; in example_send_config_appkey_add()
[all …]
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/
Dmain.c168 static esp_err_t example_ble_mesh_set_msg_common(esp_ble_mesh_client_common_param_t *common, in example_ble_mesh_set_msg_common() argument
172 if (!common || !node || !model) { in example_ble_mesh_set_msg_common()
176 common->opcode = opcode; in example_ble_mesh_set_msg_common()
177 common->model = model; in example_ble_mesh_set_msg_common()
178 common->ctx.net_idx = prov_key.net_idx; in example_ble_mesh_set_msg_common()
179 common->ctx.app_idx = prov_key.app_idx; in example_ble_mesh_set_msg_common()
180 common->ctx.addr = node->unicast; in example_ble_mesh_set_msg_common()
181 common->ctx.send_ttl = MSG_SEND_TTL; in example_ble_mesh_set_msg_common()
182 common->ctx.send_rel = MSG_SEND_REL; in example_ble_mesh_set_msg_common()
183 common->msg_timeout = MSG_TIMEOUT; in example_ble_mesh_set_msg_common()
[all …]
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_time_scene_model.c302 bt_mesh_client_common_param_t common = {0}; in btc_ble_mesh_time_scene_client_call_handler() local
314 common.opcode = params->opcode; in btc_ble_mesh_time_scene_client_call_handler()
315 common.model = (struct bt_mesh_model *)params->model; in btc_ble_mesh_time_scene_client_call_handler()
316 common.ctx.net_idx = params->ctx.net_idx; in btc_ble_mesh_time_scene_client_call_handler()
317 common.ctx.app_idx = params->ctx.app_idx; in btc_ble_mesh_time_scene_client_call_handler()
318 common.ctx.addr = params->ctx.addr; in btc_ble_mesh_time_scene_client_call_handler()
319 common.ctx.send_rel = params->ctx.send_rel; in btc_ble_mesh_time_scene_client_call_handler()
320 common.ctx.send_ttl = params->ctx.send_ttl; in btc_ble_mesh_time_scene_client_call_handler()
321 common.msg_timeout = params->msg_timeout; in btc_ble_mesh_time_scene_client_call_handler()
322 common.msg_role = params->msg_role; in btc_ble_mesh_time_scene_client_call_handler()
[all …]
Dbtc_ble_mesh_lighting_model.c300 bt_mesh_client_common_param_t common = {0}; in btc_ble_mesh_lighting_client_call_handler() local
312 common.opcode = params->opcode; in btc_ble_mesh_lighting_client_call_handler()
313 common.model = (struct bt_mesh_model *)params->model; in btc_ble_mesh_lighting_client_call_handler()
314 common.ctx.net_idx = params->ctx.net_idx; in btc_ble_mesh_lighting_client_call_handler()
315 common.ctx.app_idx = params->ctx.app_idx; in btc_ble_mesh_lighting_client_call_handler()
316 common.ctx.addr = params->ctx.addr; in btc_ble_mesh_lighting_client_call_handler()
317 common.ctx.send_rel = params->ctx.send_rel; in btc_ble_mesh_lighting_client_call_handler()
318 common.ctx.send_ttl = params->ctx.send_ttl; in btc_ble_mesh_lighting_client_call_handler()
319 common.msg_timeout = params->msg_timeout; in btc_ble_mesh_lighting_client_call_handler()
320 common.msg_role = params->msg_role; in btc_ble_mesh_lighting_client_call_handler()
[all …]
Dbtc_ble_mesh_generic_model.c456 bt_mesh_client_common_param_t common = {0}; in btc_ble_mesh_generic_client_call_handler() local
468 common.opcode = params->opcode; in btc_ble_mesh_generic_client_call_handler()
469 common.model = (struct bt_mesh_model *)params->model; in btc_ble_mesh_generic_client_call_handler()
470 common.ctx.net_idx = params->ctx.net_idx; in btc_ble_mesh_generic_client_call_handler()
471 common.ctx.app_idx = params->ctx.app_idx; in btc_ble_mesh_generic_client_call_handler()
472 common.ctx.addr = params->ctx.addr; in btc_ble_mesh_generic_client_call_handler()
473 common.ctx.send_rel = params->ctx.send_rel; in btc_ble_mesh_generic_client_call_handler()
474 common.ctx.send_ttl = params->ctx.send_ttl; in btc_ble_mesh_generic_client_call_handler()
475 common.msg_timeout = params->msg_timeout; in btc_ble_mesh_generic_client_call_handler()
476 common.msg_role = params->msg_role; in btc_ble_mesh_generic_client_call_handler()
[all …]
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/client/
Dtime_scene_client.c377 static int time_scene_get_state(bt_mesh_client_common_param_t *common, void *value) in time_scene_get_state() argument
381 bt_mesh_model_msg_init(&msg, common->opcode); in time_scene_get_state()
384 switch (common->opcode) { in time_scene_get_state()
392 BT_DBG("No parameters for Time Scene Get 0x%04x", common->opcode); in time_scene_get_state()
397 return bt_mesh_client_send_msg(common, &msg, true, timeout_handler); in time_scene_get_state()
400 static int time_scene_set_state(bt_mesh_client_common_param_t *common, in time_scene_set_state() argument
412 bt_mesh_model_msg_init(msg, common->opcode); in time_scene_set_state()
414 switch (common->opcode) { in time_scene_set_state()
480 BT_ERR("Invalid Time Scene Set opcode 0x%04x", common->opcode); in time_scene_set_state()
485 err = bt_mesh_client_send_msg(common, msg, need_ack, timeout_handler); in time_scene_set_state()
[all …]
Dsensor_client.c360 static int sensor_act_state(bt_mesh_client_common_param_t *common, in sensor_act_state() argument
372 bt_mesh_model_msg_init(msg, common->opcode); in sensor_act_state()
374 switch (common->opcode) { in sensor_act_state()
450 BT_ERR("Invalid Sensor client opcode 0x%04x", common->opcode); in sensor_act_state()
455 err = bt_mesh_client_send_msg(common, msg, need_ack, timeout_handler); in sensor_act_state()
462 int bt_mesh_sensor_client_get_state(bt_mesh_client_common_param_t *common, void *get) in bt_mesh_sensor_client_get_state() argument
467 if (!common || !common->model || !get) { in bt_mesh_sensor_client_get_state()
472 client = (bt_mesh_sensor_client_t *)common->model->user_data; in bt_mesh_sensor_client_get_state()
478 switch (common->opcode) { in bt_mesh_sensor_client_get_state()
520 BT_ERR("Invalid Sensor Get opcode 0x%04x", common->opcode); in bt_mesh_sensor_client_get_state()
[all …]
Dgeneric_client.c694 static int gen_get_state(bt_mesh_client_common_param_t *common, void *value) in gen_get_state() argument
698 bt_mesh_model_msg_init(&msg, common->opcode); in gen_get_state()
701 switch (common->opcode) { in gen_get_state()
727 BT_DBG("No parameters for Generic Get 0x%04x", common->opcode); in gen_get_state()
732 return bt_mesh_client_send_msg(common, &msg, true, timeout_handler); in gen_get_state()
735 static int gen_set_state(bt_mesh_client_common_param_t *common, in gen_set_state() argument
747 bt_mesh_model_msg_init(msg, common->opcode); in gen_set_state()
749 switch (common->opcode) { in gen_set_state()
899 BT_ERR("Invalid Generic Set opcode 0x%04x", common->opcode); in gen_set_state()
904 err = bt_mesh_client_send_msg(common, msg, need_ack, timeout_handler); in gen_set_state()
[all …]
/hal_espressif-2.7.6/components/freemodbus/
DCMakeLists.txt6 "common/esp_modbus_master.c"
7 "common/esp_modbus_slave.c"
43 "common/esp_modbus_master_tcp.c"
44 "common/esp_modbus_slave_tcp.c"
45 "common/esp_modbus_master_serial.c"
46 "common/esp_modbus_slave_serial.c")
48 set(include_dirs common/include)
50 set(priv_include_dirs common port modbus modbus/ascii modbus/functions
/hal_espressif-2.7.6/components/esp_timer/test/
Dtest_ets_timer.c117 test_common_t* common; member
126 size_t count = p_args->common->count; in timer_func()
127 int expected_index = p_args->common->order[count]; in timer_func()
136 p_args->common->count++; in timer_func()
152 test_common_t common = { variable
163 .common = &common,
172 .common = &common,
181 .common = &common,
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/
Dmain.c145 static void example_ble_mesh_set_msg_common(esp_ble_mesh_client_common_param_t *common, in example_ble_mesh_set_msg_common() argument
149 common->opcode = opcode; in example_ble_mesh_set_msg_common()
150 common->model = model; in example_ble_mesh_set_msg_common()
151 common->ctx.net_idx = prov_key.net_idx; in example_ble_mesh_set_msg_common()
152 common->ctx.app_idx = prov_key.app_idx; in example_ble_mesh_set_msg_common()
153 common->ctx.addr = node->unicast_addr; in example_ble_mesh_set_msg_common()
154 common->ctx.send_ttl = MSG_SEND_TTL; in example_ble_mesh_set_msg_common()
155 common->ctx.send_rel = MSG_SEND_REL; in example_ble_mesh_set_msg_common()
156 common->msg_timeout = MSG_TIMEOUT; in example_ble_mesh_set_msg_common()
157 common->msg_role = MSG_ROLE; in example_ble_mesh_set_msg_common()
[all …]
/hal_espressif-2.7.6/components/wpa_supplicant/
Dcomponent.mk4 COMPONENT_SRCDIRS := port src/ap src/common src/crypto src/eap_peer src/rsn_supp src/tls src/utils …
29 COMPONENT_OBJEXCLUDE += src/common/rrm.o \
30 src/common/wnm_sta.o \
31 src/common/bss.o \
32 src/common/scan.o \
33 src/common/ieee802_11_common.o \
DCMakeLists.txt6 "src/common/sae.c"
7 "src/common/wpa_common.c"
8 "src/common/dpp.c"
71 "src/utils/common.c"
113 "src/common/rrm.c"
114 "src/common/wnm_sta.c"
115 "src/common/bss.c"
116 "src/common/scan.c"
117 "src/common/ieee802_11_common.c"
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/
Dmain.c92 static void example_ble_mesh_set_msg_common(esp_ble_mesh_client_common_param_t *common, in example_ble_mesh_set_msg_common() argument
96 common->opcode = opcode; in example_ble_mesh_set_msg_common()
97 common->model = model; in example_ble_mesh_set_msg_common()
98 common->ctx.net_idx = prov_key.net_idx; in example_ble_mesh_set_msg_common()
99 common->ctx.app_idx = prov_key.app_idx; in example_ble_mesh_set_msg_common()
100 common->ctx.addr = node->unicast_addr; in example_ble_mesh_set_msg_common()
101 common->ctx.send_ttl = MSG_SEND_TTL; in example_ble_mesh_set_msg_common()
102 common->ctx.send_rel = MSG_SEND_REL; in example_ble_mesh_set_msg_common()
103 common->msg_timeout = MSG_TIMEOUT; in example_ble_mesh_set_msg_common()
104 common->msg_role = MSG_ROLE; in example_ble_mesh_set_msg_common()
[all …]
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/
Dmain.c174 esp_ble_mesh_client_common_param_t common = {0}; in example_ble_mesh_send_gen_onoff_set() local
177 common.opcode = ESP_BLE_MESH_MODEL_OP_GEN_ONOFF_SET_UNACK; in example_ble_mesh_send_gen_onoff_set()
178 common.model = onoff_client.model; in example_ble_mesh_send_gen_onoff_set()
179 common.ctx.net_idx = store.net_idx; in example_ble_mesh_send_gen_onoff_set()
180 common.ctx.app_idx = store.app_idx; in example_ble_mesh_send_gen_onoff_set()
181 common.ctx.addr = 0xFFFF; /* to all nodes */ in example_ble_mesh_send_gen_onoff_set()
182 common.ctx.send_ttl = 3; in example_ble_mesh_send_gen_onoff_set()
183 common.ctx.send_rel = false; in example_ble_mesh_send_gen_onoff_set()
184 common.msg_timeout = 0; /* 0 indicates that timeout value from menuconfig will be used */ in example_ble_mesh_send_gen_onoff_set()
185 common.msg_role = ROLE_NODE; in example_ble_mesh_send_gen_onoff_set()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/external/sbc/decoder/include/
Doi_codec_sbc_private.h129 OI_UINT computeBitneed(OI_CODEC_SBC_COMMON_CONTEXT *common,
134 void oneChannelBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT *common,
157 void monoBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT *common);
159 typedef void (*BIT_ALLOC)(OI_CODEC_SBC_COMMON_CONTEXT *common);
210 void OI_SBC_ReadHeader(OI_CODEC_SBC_COMMON_CONTEXT *common, const OI_BYTE *data);
211 PRIVATE void OI_SBC_ReadScalefactors(OI_CODEC_SBC_COMMON_CONTEXT *common, const OI_BYTE *b, OI_BITS…
212 PRIVATE void OI_SBC_ReadSamples(OI_CODEC_SBC_DECODER_CONTEXT *common, OI_BITSTREAM *ob);
213 PRIVATE void OI_SBC_ReadSamplesJoint(OI_CODEC_SBC_DECODER_CONTEXT *common, OI_BITSTREAM *global_bs);
220 PRIVATE OI_STATUS OI_CODEC_SBC_Alloc(OI_CODEC_SBC_COMMON_CONTEXT *common,
/hal_espressif-2.7.6/components/protocomm/
Dcomponent.mk1 COMPONENT_ADD_INCLUDEDIRS := include/common include/security include/transports
2 COMPONENT_PRIV_INCLUDEDIRS := proto-c src/common src/simple_ble
3 COMPONENT_SRCDIRS := src/common src/security proto-c src/simple_ble src/transports

123456789