Registry / other / drlibs

drlibs

JSON →
library2026-03-03vcpkgunverified

Single-file audio decoding libraries for C/C++

vcpkg install drlibs
INSTALL
IMPORT
SIG · DRLIBS
D
drlibs
othercppv2026-03-03
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

dr_libs/dr_wav.h
#include <dr_libs/dr_wav.h>

Load a WAV file using dr_wav

#define DR_WAV_IMPLEMENTATION #include "dr_libs/dr_wav.h" #include <stdio.h> int main() { unsigned int channels, sampleRate; drwav_uint64 totalPCMFrameCount; float* pSampleData = drwav_open_file_and_read_pcm_frames_f32("audio.wav", &channels, &sampleRate, &totalPCMFrameCount, NULL); if (pSampleData) { printf("Loaded %llu frames\n", totalPCMFrameCount); drwav_free(pSampleData, NULL); } return 0; }
Debug
Known issues
gotchaSingle-file libraries require a #define before inclusion to enable implementation.
fix
Add #define DR_WAV_IMPLEMENTATION (or DR_MP3_IMPLEMENTATION, etc.) before including the header.
affects: *
Upgrade
Version history
2026-03-03latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Meta
1
Amazon
1
Resources

No resource links recorded.

drlibs — pip install drlibs · libregistry