Home | History | Annotate | Download | only in a2dp

Lines Matching refs:p_result

218 **                      p_result:  the resulting codec info byte sequence.
223 tA2D_STATUS A2D_BldSbcInfo(UINT8 media_type, tA2D_SBC_CIE *p_ie, UINT8 *p_result)
227 if( p_ie == NULL || p_result == NULL ||
245 *p_result++ = A2D_SBC_INFO_LEN;
246 *p_result++ = media_type;
247 *p_result++ = A2D_MEDIA_CT_SBC;
250 *p_result++ = p_ie->samp_freq | p_ie->ch_mode;
252 *p_result++ = p_ie->block_len | p_ie->num_subbands | p_ie->alloc_mthd;
254 *p_result++ = p_ie->min_bitpool;
255 *p_result = p_ie->max_bitpool;