aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-01-07 02:13:11 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-01-07 02:13:11 +0000
commitae5a16b7766300c080314c599509ede604f42739 (patch)
tree16d989b11e29eb0ee847d32be7fc439ee63fa435
parent4dc13e56b4de39e738050af15430a29a8f66c6dc (diff)
parent01e3419fd7b9e56afc6251e7cc452a1b7cf2e1b5 (diff)
downloadlibopus-ae5a16b7766300c080314c599509ede604f42739.tar.gz
Snap for 7066998 from 01e3419fd7b9e56afc6251e7cc452a1b7cf2e1b5 to sc-d1-release
Change-Id: I1cb6717e94938eb9b4ef72013f5507c5ffcbd148
-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 */