summaryrefslogtreecommitdiff
path: root/spdifenc_wrap.h (plain)
blob: 2d388f3fee424d54def209131014625a4dbeda37
1#ifndef __SPDIFENC_WRAP_H__
2#define __SPDIFENC_WRAP_H__
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8int spdifenc_init(struct pcm *mypcm, audio_format_t format);
9int spdifenc_write(const void *buffer, size_t numBytes);
10uint64_t spdifenc_get_total(void);
11
12#ifdef __cplusplus
13}
14#endif
15
16#endif //__SPDIFENC_WRAP_H__
17