#include "intpcm_simple.h"

#if 0
#undef _PCM_READ_S32_LE
#undef _PCM_WRITE_S32_LE

#define _PCM_READ_S32_LE(b8)            (*((int32_t *)(b8)) >> 8)
#define _PCM_WRITE_S32_LE(b8, val)      do {                            \
        *((int32_t *)(b8)) = (val) << 8;                                \
} while (0)
#endif