Some checks failed
ContinuousDelivery / linux-ubuntu (push) Failing after 4m27s
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 5m38s
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 5m32s
ContinuousIntegration / linux (push) Successful in 3m40s
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 5m15s
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 5m9s
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
19 lines
477 B
C
19 lines
477 B
C
#define STB_VORBIS_HEADER_ONLY
|
|
#include "stb_vorbis.c"
|
|
#include "stb.h"
|
|
|
|
extern void stb_vorbis_dumpmem(void);
|
|
|
|
#ifdef VORBIS_TEST
|
|
int main(int argc, char **argv)
|
|
{
|
|
size_t memlen;
|
|
unsigned char *mem = stb_fileu("../../lib/vorbis/sample/sketch008.ogg", &memlen);
|
|
int chan, samplerate;
|
|
short *output;
|
|
int samples = stb_vorbis_decode_memory(mem, memlen, &chan, &samplerate, &output);
|
|
stb_filewrite("c:/x/sketch008.raw", output, samples*4);
|
|
return 0;
|
|
}
|
|
#endif
|