wsbc.h 370 B

123456789101112
  1. #ifndef __WSBC_H_
  2. #define __WSBC_H_
  3. void *wsbc_dec_init(u8 *header, u32 sample_rate, u8 channels, int *error, u8 *mem, u32 size);
  4. uint wsbc_play_proc(u8 *input, s16 *obuf, uint frame_size);
  5. bool wsbc_play_init(u8 *header, u16 *sample_rate, u8 *frame_size);
  6. uint wsbc_play_proc(u8 *input, s16 *obuf, uint frame_size);
  7. void wsbc_play_test(void);
  8. #endif // __WSBC_H_