Home | History | Annotate | Download | only in audio_utils

Lines Matching refs:sample

22  * Clamps a 24-bit value from a 32-bit sample
24 static inline int32_t clamp24(int32_t sample)
26 if ((sample>>23) ^ (sample>>31)) {
27 sample = 0x007FFFFF ^ (sample>>31);
29 return sample;
252 * sample_size_in_bytes Specifies the number of bytes per sample.
323 * sample_size_in_bytes Specifies the number of bytes per sample.
336 static const uint8x3_t packed24_zero; /* zero 24 bit sample */
420 * sample_size_in_bytes Specifies the number of bytes per sample.