Searched defs:p_ie (Results 1 - 5 of 5) sorted by relevance

/system/bt/stack/a2dp/
H A Da2dp_vendor_aptx.cc89 // |p_ie| is a pointer to the aptX Codec Information Element information.
93 const tA2DP_APTX_CIE* p_ie,
95 if (p_ie == NULL || p_result == NULL) {
102 *p_result++ = (uint8_t)(p_ie->vendorId & 0x000000FF);
103 *p_result++ = (uint8_t)((p_ie->vendorId & 0x0000FF00) >> 8);
104 *p_result++ = (uint8_t)((p_ie->vendorId & 0x00FF0000) >> 16);
105 *p_result++ = (uint8_t)((p_ie->vendorId & 0xFF000000) >> 24);
106 *p_result++ = (uint8_t)(p_ie->codecId & 0x00FF);
107 *p_result++ = (uint8_t)((p_ie->codecId & 0xFF00) >> 8);
108 *p_result++ = p_ie
92 A2DP_BuildInfoAptx(uint8_t media_type, const tA2DP_APTX_CIE* p_ie, uint8_t* p_result) argument
119 A2DP_ParseInfoAptx(tA2DP_APTX_CIE* p_ie, const uint8_t* p_codec_info, bool is_capability) argument
[all...]
H A Da2dp_vendor_aptx_hd.cc96 // |p_ie| is a pointer to the aptX-HD Codec Information Element information.
100 const tA2DP_APTX_HD_CIE* p_ie,
102 if (p_ie == NULL || p_result == NULL) {
109 *p_result++ = (uint8_t)(p_ie->vendorId & 0x000000FF);
110 *p_result++ = (uint8_t)((p_ie->vendorId & 0x0000FF00) >> 8);
111 *p_result++ = (uint8_t)((p_ie->vendorId & 0x00FF0000) >> 16);
112 *p_result++ = (uint8_t)((p_ie->vendorId & 0xFF000000) >> 24);
113 *p_result++ = (uint8_t)(p_ie->codecId & 0x00FF);
114 *p_result++ = (uint8_t)((p_ie->codecId & 0xFF00) >> 8);
115 *p_result++ = p_ie
99 A2DP_BuildInfoAptxHd(uint8_t media_type, const tA2DP_APTX_HD_CIE* p_ie, uint8_t* p_result) argument
130 A2DP_ParseInfoAptxHd(tA2DP_APTX_HD_CIE* p_ie, const uint8_t* p_codec_info, bool is_capability) argument
[all...]
H A Da2dp_vendor_ldac.cc87 // |p_ie| is a pointer to the LDAC Codec Information Element information.
91 const tA2DP_LDAC_CIE* p_ie,
93 if (p_ie == NULL || p_result == NULL) {
102 *p_result++ = (uint8_t)(p_ie->vendorId & 0x000000FF);
103 *p_result++ = (uint8_t)((p_ie->vendorId & 0x0000FF00) >> 8);
104 *p_result++ = (uint8_t)((p_ie->vendorId & 0x00FF0000) >> 16);
105 *p_result++ = (uint8_t)((p_ie->vendorId & 0xFF000000) >> 24);
106 *p_result++ = (uint8_t)(p_ie->codecId & 0x00FF);
107 *p_result++ = (uint8_t)((p_ie->codecId & 0xFF00) >> 8);
110 *p_result = (uint8_t)(p_ie
90 A2DP_BuildInfoLdac(uint8_t media_type, const tA2DP_LDAC_CIE* p_ie, uint8_t* p_result) argument
127 A2DP_ParseInfoLdac(tA2DP_LDAC_CIE* p_ie, const uint8_t* p_codec_info, bool is_capability) argument
[all...]
H A Da2dp_aac.cc115 // |p_ie| is a pointer to the AAC Codec Information Element information.
119 const tA2DP_AAC_CIE* p_ie,
121 if (p_ie == NULL || p_result == NULL) {
130 if (p_ie->objectType == 0) return A2DP_INVALID_PARAMS;
131 *p_result++ = p_ie->objectType;
134 if (p_ie->sampleRate == 0) return A2DP_INVALID_PARAMS;
135 *p_result++ = (uint8_t)(p_ie->sampleRate & A2DP_AAC_SAMPLING_FREQ_MASK0);
136 *p_result = (uint8_t)((p_ie->sampleRate & A2DP_AAC_SAMPLING_FREQ_MASK1) >> 8);
139 if (p_ie->channelMode == 0) return A2DP_INVALID_PARAMS;
140 *p_result++ |= (p_ie
118 A2DP_BuildInfoAac(uint8_t media_type, const tA2DP_AAC_CIE* p_ie, uint8_t* p_result) argument
159 A2DP_ParseInfoAac(tA2DP_AAC_CIE* p_ie, const uint8_t* p_codec_info, bool is_capability) argument
[all...]
H A Da2dp_sbc.cc118 // |p_ie| is a pointer to the SBC Codec Information Element information.
122 const tA2DP_SBC_CIE* p_ie,
124 if (p_ie == NULL || p_result == NULL ||
125 (p_ie->samp_freq & ~A2DP_SBC_IE_SAMP_FREQ_MSK) ||
126 (p_ie->ch_mode & ~A2DP_SBC_IE_CH_MD_MSK) ||
127 (p_ie->block_len & ~A2DP_SBC_IE_BLOCKS_MSK) ||
128 (p_ie->num_subbands & ~A2DP_SBC_IE_SUBBAND_MSK) ||
129 (p_ie->alloc_method & ~A2DP_SBC_IE_ALLOC_MD_MSK) ||
130 (p_ie->min_bitpool > p_ie
121 A2DP_BuildInfoSbc(uint8_t media_type, const tA2DP_SBC_CIE* p_ie, uint8_t* p_result) argument
160 A2DP_ParseInfoSbc(tA2DP_SBC_CIE* p_ie, const uint8_t* p_codec_info, bool is_capability) argument
[all...]

Completed in 59 milliseconds