opus-embedded-sys 0.1.1

Bindings to libopus for decoding Opus audio on embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <opus.h>

/**
 * Struct big enough to contain OpusDecoder of opus-1.5.2 so it can be reserved
 * on stack.
 * <div rustbindgen replaces="OpusDecoder"></div>
 */
struct OpusDecoder {
#ifdef OPUS_EMBEDDED_SYS_STEREO
    char _unused[26580] __attribute__((aligned(4)));
#else
    char _unused[17860] __attribute__((aligned(4)));
#endif
};