Merge pull request #3146 from antonlacon/libopus-1.1.x
Libopus Update to 1.1.3 and use integer math when software fpu used
This commit is contained in:
commit
31e62a05b7
1 changed files with 10 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014-2015 OpenWrt.org
|
# Copyright (C) 2014-2016 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
|
@ -8,12 +8,12 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=opus
|
PKG_NAME:=opus
|
||||||
PKG_VERSION:=1.1
|
PKG_VERSION:=1.1.3
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=http://downloads.xiph.org/releases/opus/
|
PKG_SOURCE_URL:=http://downloads.xiph.org/releases/opus/
|
||||||
PKG_MD5SUM:=c5a8cf7c0b066759542bc4ca46817ac6
|
PKG_MD5SUM:=32bbb6b557fe1b6066adc0ae1f08b629
|
||||||
|
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
@ -26,7 +26,7 @@ include $(INCLUDE_DIR)/package.mk
|
||||||
define Package/libopus
|
define Package/libopus
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=OPUS Codec
|
TITLE:=OPUS Audio Codec
|
||||||
URL:=http://opus-codec.org/
|
URL:=http://opus-codec.org/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -40,6 +40,11 @@ CONFIGURE_ARGS+= \
|
||||||
--disable-doc \
|
--disable-doc \
|
||||||
--disable-extra-programs
|
--disable-extra-programs
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_SOFT_FLOAT),y)
|
||||||
|
CONFIGURE_ARGS+= \
|
||||||
|
--enable-fixed-point
|
||||||
|
endif
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/opus $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/opus $(1)/usr/include/
|
||||||
|
|
Loading…
Reference in a new issue