aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-01-06 20:00:50 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-01-06 20:00:50 +0000
commit01e3419fd7b9e56afc6251e7cc452a1b7cf2e1b5 (patch)
tree16d989b11e29eb0ee847d32be7fc439ee63fa435
parent7c1bbe755e9488a422d919207af151b51b469cd3 (diff)
parent4bb4bb045025d354491d97834c3c48209b6f0268 (diff)
downloadlibopus-01e3419fd7b9e56afc6251e7cc452a1b7cf2e1b5.tar.gz
Upgrade libopus to 794392ecd77e6fc6aafa62c3f6002780abcc2c7c am: e135dd4b8a am: 03965b588b am: 4bb4bb0450
Original change: https://android-review.googlesource.com/c/platform/external/libopus/+/1540686 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Icd18ee37a79436b215b682ba8bc94d6c13cc47fd
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--METADATA8
-rw-r--r--celt/fixed_generic.h4
3 files changed, 9 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 70c243b5..01b033fd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,3 +1,6 @@
+include:
+ - template: 'Workflows/Branch-Pipelines.gitlab-ci.yml'
+
default:
tags:
- docker
@@ -6,8 +9,6 @@ default:
whitespace:
stage: test
- only:
- - merge_requests
script:
- git diff-tree --check origin/master HEAD
diff --git a/METADATA b/METADATA
index ed4804fc..eb54eee4 100644
--- a/METADATA
+++ b/METADATA
@@ -5,11 +5,11 @@ third_party {
type: GIT
value: "https://gitlab.xiph.org/xiph/opus.git"
}
- version: "d2f6805c3f36718a742c33c56eb945c2e10646ef"
+ version: "794392ecd77e6fc6aafa62c3f6002780abcc2c7c"
license_type: NOTICE
last_upgrade_date {
- year: 2020
- month: 11
- day: 30
+ year: 2021
+ month: 1
+ day: 5
}
}
diff --git a/celt/fixed_generic.h b/celt/fixed_generic.h
index 5f4abda7..0ecbb899 100644
--- a/celt/fixed_generic.h
+++ b/celt/fixed_generic.h
@@ -102,9 +102,9 @@
#define SATURATE16(x) (EXTRACT16((x)>32767 ? 32767 : (x)<-32768 ? -32768 : (x)))
-/** Shift by a and round-to-neareast 32-bit value. Result is a 16-bit value */
+/** Shift by a and round-to-nearest 32-bit value. Result is a 16-bit value */
#define ROUND16(x,a) (EXTRACT16(PSHR32((x),(a))))
-/** Shift by a and round-to-neareast 32-bit value. Result is a saturated 16-bit value */
+/** Shift by a and round-to-nearest 32-bit value. Result is a saturated 16-bit value */
#define SROUND16(x,a) EXTRACT16(SATURATE(PSHR32(x,a), 32767));
/** Divide by two */