search for: flac_lib

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

Did you mean: flac_libs
2002 Sep 11
1
patch for FLAC
...quot;x$build_ogg123" = xyes; then fi dnl -------------------------------------------------- +dnl Check for optional libraries +dnl -------------------------------------------------- + +dnl check for FLAC +dnl disabled by default +dnl defines HAVE_FLAC to 1 for use in source code +dnl sets FLAC_LIBS to the right libs if found for Makefile.am +dnl sets HAVE_FLAC to yes or no for Makefile.am + +AC_ARG_ENABLE(flac, [ --enable-flac Build in FLAC support], + use_flac="$enableval", use_flac="no") +have_flac="no" +if test "x$use_flac" = xyes;...
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