mirror of
https://github.com/xiph/opus.git
synced 2025-06-01 08:07:41 +00:00
docs: fix simple typo, neareast -> nearest
There is a small typo in celt/fixed_generic.h. Should read `nearest` rather than `neareast`. Signed-off-by: Ralph Giles <giles@thaumas.net>
This commit is contained in:
parent
d2f6805c3f
commit
a923218e9b
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue