search for: oggflac_id

Displaying 2 results from an estimated 2 matches for "oggflac_id".

Did you mean: oggflac__
2005 Jun 04
0
Allignment of vorbis, flac and speex headers
...f(char), 36); if (len >= 32 && memcmp(buf, "OggS", 4) == 0 && memcmp(buf+28, "Speex ", 8) == 0) /* 3 trailing spaces */ return 1; else return 0; } Flac ------- In the file at \vorbis-tools-1.0.1\oggenc\flac.c I find the following int oggflac_id(unsigned char *buf, int len) { if (len < 32) return 0; return memcmp(buf, "OggS", 4) == 0 && flac_id(buf+28, len - 28); } Summary -------------- It looks as if the format of the ogg header has changed and the documentation has not, and this info has not been passed onto the...
2015 Oct 08
2
[PATCH 0/1] opusenc support for WavPack input
This patch to opus-tools adds optional support to WavPack lossless format as input to opusenc. Like support to FLAC, it depends on an external library, libwavpack, and may be disabled on configure. Lucas Clemente Vella (1): Reading input from WavPack files. Makefile.am | 7 +- configure.ac | 37 ++++++++ src/audio-in.c | 71 ++++++++------- src/opusenc.c | 19 +++- src/opusenc.h