Lines Matching refs:p_dst

31 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
111 ** p_dst: the data buffer to hold the converted audio data
113 ** dst_samples: The size of p_dst (number of bytes)
123 ** Returns The number of bytes used in p_dst
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);
156 ** p_dst: the data buffer to hold the converted audio data
158 ** dst_samples: The size of p_dst (in uint of 4 bytes)
160 ** Returns The number of bytes used in p_dst
164 int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
169 INT16 *p_dst_tmp = (INT16 *)p_dst;
207 return ((char *)p_dst_tmp - (char *)p_dst);
219 ** p_dst: the data buffer to hold the converted audio data
221 ** dst_samples: The size of p_dst (in uint of 2 bytes)
223 ** Returns The number of bytes used in p_dst
227 int bta_av_sbc_up_sample_16m (void *p_src, void *p_dst,
232 INT16 *p_dst_tmp = (INT16 *)p_dst;
272 return ((char *)p_dst_tmp - (char *)p_dst);
284 ** p_dst: the data buffer to hold the converted audio data
286 ** dst_samples: The size of p_dst (in uint of 2 bytes)
288 ** Returns The number of bytes used in p_dst
292 int bta_av_sbc_up_sample_8s (void *p_src, void *p_dst,
297 INT16 *p_dst_tmp = (INT16 *)p_dst;
341 return ((char *)p_dst_tmp - (char *)p_dst);
353 ** p_dst: the data buffer to hold the converted audio data
355 ** dst_samples: The size of p_dst (number of bytes)
357 ** Returns The number of bytes used in p_dst
361 int bta_av_sbc_up_sample_8m (void *p_src, void *p_dst,
366 INT16 *p_dst_tmp = (INT16 *)p_dst;
406 return ((char *)p_dst_tmp - (char *)p_dst);