Lines Matching refs:p_src

30 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
105 ** Description Given the source (p_src) audio data and
109 ** p_src: the data buffer that holds the source audio data
123 ** The number of bytes used in p_src (in *p_ret)
126 int bta_av_sbc_up_sample (void *p_src, void *p_dst,
137 return (*bta_av_sbc_ups_cb.p_act)(p_src, p_dst, src, dst, p_ret);
150 ** Description Given the source (p_src) audio data and
154 ** p_src: the data buffer that holds the source audio data
160 ** The number of bytes used in p_src (in *p_ret)
163 int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
167 INT16 *p_src_tmp = (INT16 *)p_src;
205 *p_ret = ((char *)p_src_tmp - (char *)p_src);
213 ** Description Given the source (p_src) audio data and
217 ** p_src: the data buffer that holds the source audio data
223 ** The number of bytes used in p_src (in *p_ret)
226 int bta_av_sbc_up_sample_16m (void *p_src, void *p_dst,
230 INT16 *p_src_tmp = (INT16 *)p_src;
270 *p_ret = ((char *)p_src_tmp - (char *)p_src);
278 ** Description Given the source (p_src) audio data and
282 ** p_src: the data buffer that holds the source audio data
288 ** The number of bytes used in p_src (in *p_ret)
291 int bta_av_sbc_up_sample_8s (void *p_src, void *p_dst,
295 UINT8 *p_src_tmp = (UINT8 *)p_src;
339 *p_ret = ((char *)p_src_tmp - (char *)p_src);
347 ** Description Given the source (p_src) audio data and
351 ** p_src: the data buffer that holds the source audio data
357 ** The number of bytes used in p_src (in *p_ret)
360 int bta_av_sbc_up_sample_8m (void *p_src, void *p_dst,
364 UINT8 *p_src_tmp = (UINT8 *)p_src;
404 *p_ret = ((char *)p_src_tmp - (char *)p_src);