Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 383 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 383 Bytes

opus-tools

Zig build for xiph/opus-tools

NOTE

This package currently only covers speex_resampler.h. PRs welcome if more coverage of the upstream project is needed.

To use the library correctly you have to define two macros:

const c = @cImport({
    @cDefine("OUTSIDE_SPEEX", "1");
    @cDefine("RANDOM_PREFIX", "speex");
    @cInclude("speex_resampler.h");
});