Searched refs:LC3_CLIP (Results 1 – 3 of 3) sorted by relevance
| /liblc3-latest/src/ |
| D | common.h | 88 #define LC3_CLIP(v, min, max) LC3_MIN(LC3_MAX(v, min), max) macro 89 #define LC3_SAT16(v) LC3_CLIP(v, -(1 << 15), (1 << 15) - 1) 90 #define LC3_SAT24(v) LC3_CLIP(v, -(1 << 23), (1 << 23) - 1)
|
| D | lc3.c | 118 bitrate = LC3_CLIP(bitrate, 0, 8*LC3_HR_MAX_BITRATE); in lc3_hr_frame_block_bytes() 120 return LC3_CLIP((bitrate * (int)(1 + dt)) / 3200, in lc3_hr_frame_block_bytes()
|
| D | spec.c | 103 reg_bits = LC3_CLIP(reg_bits + reg_c, 6, 23); in estimate_gain() 736 return LC3_CLIP(nf, 0, 7); in estimate_noise()
|