You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
OpenAudio_ArduinoLibrary/NotUsed/memcpy_interleave.h

18 lines
505 B

#ifndef memcopy_interleave_h_
#define memcopy_interleave_h_
#ifdef __cplusplus
extern "C" {
#endif
void memcpy_tointerleaveLRwLen(int16_t *dst, const int16_t *srcL, const int16_t *srcR, const int16_t len);
//void memcpy_tointerleaveL(int16_t *dst, const int16_t *srcL);
//void memcpy_tointerleaveR(int16_t *dst, const int16_t *srcR);
//void memcpy_tointerleaveQuad(int16_t *dst, const int16_t *src1, const int16_t *src2,
// const int16_t *src3, const int16_t *src4);
#ifdef __cplusplus
}
#endif
#endif