2
0

alac_wrapper.h 802 B

1234567891011121314151617181920212223242526272829303132
  1. /*****************************************************************************
  2. * alac_wrapper.h: ALAC coder wrapper
  3. *
  4. /*
  5. * (c) Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #ifndef __ALAC_WRAPPER_H_
  12. #define __ALAC_WRAPPER_H_
  13. struct alac_codec_s;
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. struct alac_codec_s *alac_create_decoder(int magic_cookie_size, unsigned char *magic_cookie,
  18. unsigned char *sample_size, unsigned *sample_rate,
  19. unsigned char *channels);
  20. void alac_delete_decoder(struct alac_codec_s *codec);
  21. bool alac_to_pcm(struct alac_codec_s *codec, unsigned char* input,
  22. unsigned char *output, char channels, unsigned *out_frames);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif