Added libalac.h decoder exports
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-04-21 11:06:53 +02:00
parent 0f8ce49da1
commit d4fe18abce
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -36,6 +36,10 @@ typedef struct {
} alac_decoder_read_result;
alac_decoder alac_decoder_new(const unsigned char* magicCookie, int magicCookieSize);
alac_decoder_read_result alac_decoder_read(alac_decoder* decoder, const unsigned char * input, int input_size, unsigned char * output);
void alac_decoder_delete(alac_decoder* decoder);
#ifdef __cplusplus
}
#endif