Lines Matching defs:p_src

31 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
106 ** Description Given the source (p_src) audio data and
110 ** p_src: the data buffer that holds the source audio data
124 ** The number of bytes used in p_src (in *p_ret)
127 int bta_av_sbc_up_sample (void *p_src, void *p_dst,
138 return (*bta_av_sbc_ups_cb.p_act)(p_src, p_dst, src, dst, p_ret);
151 ** Description Given the source (p_src) audio data and
155 ** p_src: the data buffer that holds the source audio data
161 ** The number of bytes used in p_src (in *p_ret)
164 int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
168 INT16 *p_src_tmp = (INT16 *)p_src;
206 *p_ret = ((char *)p_src_tmp - (char *)p_src);
214 ** Description Given the source (p_src) audio data and
218 ** p_src: the data buffer that holds the source audio data
224 ** The number of bytes used in p_src (in *p_ret)
227 int bta_av_sbc_up_sample_16m (void *p_src, void *p_dst,
231 INT16 *p_src_tmp = (INT16 *)p_src;
271 *p_ret = ((char *)p_src_tmp - (char *)p_src);
279 ** Description Given the source (p_src) audio data and
283 ** p_src: the data buffer that holds the source audio data
289 ** The number of bytes used in p_src (in *p_ret)
292 int bta_av_sbc_up_sample_8s (void *p_src, void *p_dst,
296 UINT8 *p_src_tmp = (UINT8 *)p_src;
340 *p_ret = ((char *)p_src_tmp - (char *)p_src);
348 ** Description Given the source (p_src) audio data and
352 ** p_src: the data buffer that holds the source audio data
358 ** The number of bytes used in p_src (in *p_ret)
361 int bta_av_sbc_up_sample_8m (void *p_src, void *p_dst,
365 UINT8 *p_src_tmp = (UINT8 *)p_src;
405 *p_ret = ((char *)p_src_tmp - (char *)p_src);