Select Git revision
-
Opus 1.2 brings many improvements, including speech quality improvements, performance improvements, and support for Ambisonics mapping, that could be used for VR. See https://people.xiph.org/~jm/opus/opus-1.2/ Using latest Opus has no major implication but brings "free" quality and performance improvements and is good for marketing purposes. Change-Id: Ib7fa3ed17e423fffa8ac79f8fe8e3af46057991c
Opus 1.2 brings many improvements, including speech quality improvements, performance improvements, and support for Ambisonics mapping, that could be used for VR. See https://people.xiph.org/~jm/opus/opus-1.2/ Using latest Opus has no major implication but brings "free" quality and performance improvements and is good for marketing purposes. Change-Id: Ib7fa3ed17e423fffa8ac79f8fe8e3af46057991c
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
rules.mak 601 B
# opus
OPUS_VERSION := 1.2
OPUS_URL := https://archive.mozilla.org/pub/opus/opus-$(OPUS_VERSION).tar.gz
PKGS += opus
ifeq ($(call need_pkg,"opus >= 0.9.14"),)
PKGS_FOUND += opus
endif
$(TARBALLS)/opus-$(OPUS_VERSION).tar.gz:
$(call download,$(OPUS_URL))
.sum-opus: opus-$(OPUS_VERSION).tar.gz
opus: opus-$(OPUS_VERSION).tar.gz .sum-opus
$(UNPACK)
$(UPDATE_AUTOCONFIG)
$(MOVE)
OPUS_CONF= --disable-extra-programs --disable-doc
ifndef HAVE_FPU
OPUS_CONF += --enable-fixed-point
endif
.opus: opus
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) $(OPUS_CONF)
cd $< && $(MAKE) install
touch $@