| 12345678910111213141516171819202122232425262728293031 | /***************************************************************************** * alac_wrapper.h: ALAC coder wrapper * * (c) Philippe G. 2019, philippe_44@outlook.com * * This software is released under the MIT License. * https://opensource.org/licenses/MIT *  */ #ifndef __ALAC_WRAPPER_H_#define __ALAC_WRAPPER_H_struct alac_codec_s;#ifdef __cplusplusextern "C" {#endifstruct alac_codec_s *alac_create_decoder(int magic_cookie_size, unsigned char *magic_cookie,								unsigned char *sample_size, unsigned *sample_rate,								unsigned char *channels);void alac_delete_decoder(struct alac_codec_s *codec);bool alac_to_pcm(struct alac_codec_s *codec, unsigned char* input,				 unsigned char *output, char channels, unsigned *out_frames);#ifdef __cplusplus}#endif#endif
 |