package: add vo-aacenc (aac encoder)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
fc07556408
commit
0510e34783
@ -483,6 +483,7 @@ source "package/portaudio/Config.in"
|
||||
source "package/speex/Config.in"
|
||||
source "package/taglib/Config.in"
|
||||
source "package/tremor/Config.in"
|
||||
source "package/vo-aacenc/Config.in"
|
||||
source "package/webrtc-audio-processing/Config.in"
|
||||
endmenu
|
||||
|
||||
|
9
package/vo-aacenc/Config.in
Normal file
9
package/vo-aacenc/Config.in
Normal file
@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_VO_AACENC
|
||||
bool "vo-aacenc"
|
||||
help
|
||||
This library contains an encoder implementation of the
|
||||
Advanced Audio Coding (AAC) audio codec. The library is
|
||||
based on a codec implementation by VisualOn as part of the
|
||||
Stagefright framework from the Google Android project.
|
||||
|
||||
http://sourceforge.net/projects/opencore-amr/
|
32
package/vo-aacenc/vo-aacenc.mk
Normal file
32
package/vo-aacenc/vo-aacenc.mk
Normal file
@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# vo-aacenc
|
||||
#
|
||||
################################################################################
|
||||
|
||||
VO_AACENC_VERSION = 0.1.3
|
||||
VO_AACENC_SITE = http://downloads.sourceforge.net/project/opencore-amr/vo-aacenc
|
||||
VO_AACENC_LICENSE = Apache-2.0
|
||||
VO_AACENC_LICENSE_FILES = COPYING
|
||||
VO_AACENC_INSTALL_STAGING = YES
|
||||
|
||||
# arm specific asm optimizations
|
||||
ifeq ($(BR2_arm),y)
|
||||
|
||||
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
||||
VO_AACENC_CONF_OPT += --enable-armv7neon
|
||||
# mfpu=neon needed to assemble neon code
|
||||
VO_AACENC_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -mfpu=neon"
|
||||
else
|
||||
VO_AACENC_CONF_OPT += --disable-armv7neon
|
||||
|
||||
ifeq ($(BR2_arm7tdmi)$(BR2_arm720t)$(BR2_arm920t)$(BR2_arm922t)$(BR2_strongarm)$(BR2_fa526),)
|
||||
VO_AACENC_CONF_OPT += --enable-armv5e
|
||||
else
|
||||
VO_AACENC_CONF_OPT += --disable-armv5e
|
||||
endif
|
||||
|
||||
endif # !neon
|
||||
endif # arm
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user