mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
56ba5294e6
* new analysis code and tuning that significantly improves encoding quality, especially for variable-bitrate (VBR), * automatic detection of speech or music to decide which encoding mode to use, * surround with good quality at 128 kbps for 5.1 and usable down to 48 kbps, * and speed improvements on all architectures. Chase shared library bump. PR: 184956
21 lines
591 B
Plaintext
21 lines
591 B
Plaintext
--- configure.orig 2013-12-17 16:51:41.000000000 +0100
|
|
+++ configure 2013-12-17 16:52:02.000000000 +0100
|
|
@@ -12807,7 +12807,7 @@ else
|
|
CPU_ARM_FALSE=
|
|
fi
|
|
|
|
- if test x"${inline_optimization:0:3}" = x"ARM"; then
|
|
+ if expr x"${inline_optimization}" : x"ARM" >/dev/null; then
|
|
OPUS_ARM_INLINE_ASM_TRUE=
|
|
OPUS_ARM_INLINE_ASM_FALSE='#'
|
|
else
|
|
@@ -12815,7 +12815,7 @@ else
|
|
OPUS_ARM_INLINE_ASM_FALSE=
|
|
fi
|
|
|
|
- if test x"${asm_optimization:0:3}" = x"ARM"; then
|
|
+ if expr x"${asm_optimization}" : x"ARM" >/dev/null; then
|
|
OPUS_ARM_EXTERNAL_ASM_TRUE=
|
|
OPUS_ARM_EXTERNAL_ASM_FALSE='#'
|
|
else
|