Commit 705662b4 authored by Hadrien Boutteville's avatar Hadrien Boutteville Committed by Peter Korsgaard
Browse files

libsoxr: new package



Building tests fails mainly because of the cross-compilation, so they
are disabled for the moment.

Signed-off-by: default avatarHadrien Boutteville <hadrien.boutteville@gmail.com>
Reviewed-by: default avatarThomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent fa279854
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -506,6 +506,7 @@ source "package/libmpd/Config.in"
source "package/libreplaygain/Config.in"
source "package/libsamplerate/Config.in"
source "package/libsndfile/Config.in"
source "package/libsoxr/Config.in"
source "package/libvorbis/Config.in"
source "package/opus/Config.in"
source "package/portaudio/Config.in"
+15 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBSOXR
	bool "libsoxr"
	help
	  The SoX Resampler library `libsoxr' performs one-dimensional
	  sample-rate conversion—it may be used, for example, to
	  resample PCM-encoded audio.

	  It aims to give fast and high quality results for any constant
	  (rational or irrational) resampling ratio. Phase-response,
	  preserved bandwidth, aliasing, and rejection level parameters
	  are all configurable; alternatively, simple `preset'
	  configurations may be selected. An experimental, variable-rate
	  resampling mode of operation is also included.

	  http://sourceforge.net/projects/soxr/
+25 −0
Original line number Diff line number Diff line
################################################################################
#
# libsoxr
#
################################################################################

LIBSOXR_VERSION = 0.1.1
LIBSOXR_SOURCE = soxr-$(LIBSOXR_VERSION)-Source.tar.xz
LIBSOXR_SITE = http://downloads.sourceforge.net/project/soxr
LIBSOXR_LICENSE = LGPLv2.1+
LIBSOXR_LICENSE_FILES = LICENCE COPYING.LGPL
LIBSOXR_INSTALL_STAGING = YES
LIBSOXR_CONF_OPT = -DWITH_OPENMP:BOOL=OFF -DBUILD_TESTS:BOOL=OFF

ifeq ($(BR2_PREFER_STATIC_LIB),y)
LIBSOXR_CONF_OPT += -DBUILD_SHARED_LIBS:BOOL=OFF
endif

ifeq ($(call qstrip,$(BR2_ENDIAN)),BIG)
LIBSOXR_CONF_OPT += -DHAVE_WORDS_BIGENDIAN=1
else
LIBSOXR_CONF_OPT += -DHAVE_WORDS_BIGENDIAN=0
endif

$(eval $(cmake-package))