search for: flac_id

Displaying 4 results from an estimated 4 matches for "flac_id".

Did you mean: flac_ip
2006 May 11
2
C++ Set_Metadata Problem
...d right, but it did not work for him. I have tried the same and also can not get it to work, but with a different error. To recap... (I've left out is-valid checks in the listing for brevity) ////////// // Create an application block FLAC::Metadata::Application header_flac; FLAC__byte header_flac_id[4] = { 1, 2, 3, 4 }; header_flac.set_id(header_flac_id); header_flac.set_data((FLAC__byte*)(header_str.begin()),header_str.size() ); // Add the block to a metadata array and pass the array to the encoder object FLAC::Metadata::Prototype *meta[] = { &header_flac }; set_metadata(meta, sizeof(met...
2005 Jun 04
0
Allignment of vorbis, flac and speex headers
...har), 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...
2003 Nov 20
2
Vorbis 1.0.1 release compile errors (libvorbis, vorbistools)
Well, I grabbed the tarballs this morning and found that of the three new releases, only libogg1.1 would compile without and issue. I had to recompile my flac1.1.0 for ogg support, and it gave me a new error (or I wasnt paying attention, anyway...) it will finish compiling and install, but I only ran make check on the original compile, not the new one with OggFLAC attached and stuff...
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