mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 21:56:31 +00:00
opusfile: new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
4194fef640
commit
b579027ef3
@ -621,6 +621,7 @@ menu "Audio/Sound"
|
|||||||
source "package/mp4v2/Config.in"
|
source "package/mp4v2/Config.in"
|
||||||
source "package/opencore-amr/Config.in"
|
source "package/opencore-amr/Config.in"
|
||||||
source "package/opus/Config.in"
|
source "package/opus/Config.in"
|
||||||
|
source "package/opusfile/Config.in"
|
||||||
source "package/portaudio/Config.in"
|
source "package/portaudio/Config.in"
|
||||||
source "package/speex/Config.in"
|
source "package/speex/Config.in"
|
||||||
source "package/taglib/Config.in"
|
source "package/taglib/Config.in"
|
||||||
|
13
package/opusfile/Config.in
Normal file
13
package/opusfile/Config.in
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
comment "opusfile needs a toolchain w/ largefile"
|
||||||
|
depends on !BR2_LARGEFILE
|
||||||
|
|
||||||
|
config BR2_PACKAGE_OPUSFILE
|
||||||
|
bool "opusfile"
|
||||||
|
depends on BR2_LARGEFILE
|
||||||
|
select BR2_PACKAGE_LIBOGG
|
||||||
|
select BR2_PACKAGE_OPUS
|
||||||
|
help
|
||||||
|
A convenient high-level API for decoding and basic manipulation
|
||||||
|
of all Ogg Opus audio streams.
|
||||||
|
|
||||||
|
http://opus-codec.org
|
2
package/opusfile/opusfile.hash
Normal file
2
package/opusfile/opusfile.hash
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt
|
||||||
|
sha256 2428717b356e139f18ed2fdb5ad990b5654a238907a0058200b39c46a7d03ea6 opusfile-0.6.tar.gz
|
25
package/opusfile/opusfile.mk
Normal file
25
package/opusfile/opusfile.mk
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# opusfile
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
OPUSFILE_VERSION = 0.6
|
||||||
|
OPUSFILE_SITE = http://downloads.xiph.org/releases/opus
|
||||||
|
OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
|
||||||
|
OPUSFILE_LICENSE = BSD-3c
|
||||||
|
OPUSFILE_LICENSE_FILES = COPYING
|
||||||
|
OPUSFILE_INSTALL_STAGING = YES
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||||
|
OPUSFILE_DEPENDENCIES += openssl
|
||||||
|
else
|
||||||
|
OPUSFILE_CONF_OPTS += --disable-http
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Use the same as opus package since it's a dep and we can't mix
|
||||||
|
ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y)
|
||||||
|
OPUSFILE_CONF_OPTS += --enable-fixed-point
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
x
Reference in New Issue
Block a user