faad2: add configurable fixed point build

Change the faad build to use fixed point math if emulated floating point
is in use (based on CONFIG_SOFT_FLOAT). Adds a config option to force
the use of floating point math.

Signed-off-by: Andy Leiserson <andy@leiserson.org>
Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@34527 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2012-12-05 17:31:33 +00:00
parent 1b382fff50
commit 49560cde68
2 changed files with 28 additions and 1 deletions

12
libs/faad2/Config.in Normal file
View File

@ -0,0 +1,12 @@
config FAAD2_ALWAYS_USE_FLOATING_POINT
depends on PACKAGE_libfaad2
bool "Build FAAD2 to use floating-point math even if using soft floats."
default n
help
By default, libfaad2 will be built to use fixed point rather
than floating point math if emulated floating point operations
are being used. (See the CONFIG_SOFT_FLOAT option.) Set this
option if you would like to use floating point math regardless
of whether floating point emulation is in use.
For the best real-time decoding ability, leave this option off.

View File

@ -9,12 +9,16 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=faad2
PKG_VERSION:=2.7
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/faac
PKG_MD5SUM:=4c332fa23febc0e4648064685a3d4332
PKG_CONFIG_DEPENDS := \
CONFIG_SOFT_FLOAT \
CONFIG_FAAD2_ALWAYS_USE_FLOATING_POINT
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
@ -22,6 +26,12 @@ include $(INCLUDE_DIR)/package.mk
TARGET_CFLAGS += $(FPIC)
# Use fixed point math, if we're using soft floats, and the user didn't
# specifically ask to use floats anyways.
ifeq ($(CONFIG_SOFT_FLOAT)-$(CONFIG_FAAD2_ALWAYS_USE_FLOATING_POINT),y-)
TARGET_CFLAGS+= -DFIXED_POINT
endif
define Package/faad2/Default
URL:=http://www.audiocoding.com/faad2.html
TITLE:=Freeware Advanced Audio Decoder
@ -52,6 +62,11 @@ $(call Package/faad2/Default)
CATEGORY:=Libraries
TITLE+=library
DEPENDS:=@BUILD_PATENTED
MENU:=1
endef
define Package/libfaad2/config
source "$(SOURCE)/Config.in"
endef
define Package/libfaad2/description