braheezy/faad2
Zig build of the faad2 AAC decoder
This is a Zig build of the faad2 AAC decoder.
Add to your project:
zig fetch --save git+https://github.com/braheezy/faad2
Then in your build.zig:
const faad2_dep = b.dependency("ada", .{});
const faad2_artifact = faad2_dep.artifact("ada");
// Where needed
<your compilation>.linkLibrary(faad2_artifact);