Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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/

View File

@@ -0,0 +1,5 @@
# From http://sourceforge.net/projects/soxr/files/
sha1 3b990f91dc8dc08e70626cd5fb90deda0239c211 soxr-0.1.2-Source.tar.xz
md5 0866fc4320e26f47152798ac000de1c0 soxr-0.1.2-Source.tar.xz
# Locally calculated
sha256 54e6f434f1c491388cd92f0e3c47f1ade082cc24327bdc43762f7d1eefe0c275 soxr-0.1.2-Source.tar.xz

View File

@@ -0,0 +1,21 @@
################################################################################
#
# libsoxr
#
################################################################################
LIBSOXR_VERSION = 0.1.2
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_OPTS = -DWITH_OPENMP=OFF
ifeq ($(call qstrip,$(BR2_ENDIAN)),BIG)
LIBSOXR_CONF_OPTS += -DHAVE_WORDS_BIGENDIAN=1
else
LIBSOXR_CONF_OPTS += -DHAVE_WORDS_BIGENDIAN=0
endif
$(eval $(cmake-package))