Lines Matching refs:src

291 static void conv_natural_float_to_mono(struct st_sample *dst, const void *src,  in conv_natural_float_to_mono()  argument
294 const float *in = src; in conv_natural_float_to_mono()
302 static void conv_swap_float_to_mono(struct st_sample *dst, const void *src, in conv_swap_float_to_mono() argument
305 const uint32_t *in_f32s = src; in conv_swap_float_to_mono()
313 static void conv_natural_float_to_stereo(struct st_sample *dst, const void *src, in conv_natural_float_to_stereo() argument
316 const float *in = src; in conv_natural_float_to_stereo()
325 static void conv_swap_float_to_stereo(struct st_sample *dst, const void *src, in conv_swap_float_to_stereo() argument
328 const uint32_t *in_f32s = src; in conv_swap_float_to_stereo()
348 static void clip_natural_float_from_mono(void *dst, const struct st_sample *src, in clip_natural_float_from_mono() argument
354 *out++ = CLIP_NATURAL_FLOAT(src->l + src->r); in clip_natural_float_from_mono()
355 src++; in clip_natural_float_from_mono()
359 static void clip_swap_float_from_mono(void *dst, const struct st_sample *src, in clip_swap_float_from_mono() argument
365 *out_f32s++ = F32_TO_F32S(CLIP_NATURAL_FLOAT(src->l + src->r)); in clip_swap_float_from_mono()
366 src++; in clip_swap_float_from_mono()
371 void *dst, const struct st_sample *src, int samples) in clip_natural_float_from_stereo() argument
376 *out++ = CLIP_NATURAL_FLOAT(src->l); in clip_natural_float_from_stereo()
377 *out++ = CLIP_NATURAL_FLOAT(src->r); in clip_natural_float_from_stereo()
378 src++; in clip_natural_float_from_stereo()
383 void *dst, const struct st_sample *src, int samples) in clip_swap_float_from_stereo() argument
388 *out_f32s++ = F32_TO_F32S(CLIP_NATURAL_FLOAT(src->l)); in clip_swap_float_from_stereo()
389 *out_f32s++ = F32_TO_F32S(CLIP_NATURAL_FLOAT(src->r)); in clip_swap_float_from_stereo()
390 src++; in clip_swap_float_from_stereo()