mirror of
https://github.com/xiph/opus.git
synced 2025-05-16 08:28:29 +00:00
6 lines
135 B
Python
6 lines
135 B
Python
|
|
def clip_to_int16(x):
|
|
int_min = -2**15
|
|
int_max = 2**15 - 1
|
|
x_clipped = max(int_min, min(x, int_max))
|
|
return x_clipped
|