Home
last modified time | relevance | path

Searched refs:packed24 (Results 1 – 1 of 1) sorted by relevance

/system/media/audio_utils/include/audio_utils/
Dprimitives.h817 static inline int32_t i32_from_p24(const uint8_t *packed24) in i32_from_p24() argument
820 return (packed24[0] << 8) | (packed24[1] << 16) | (packed24[2] << 24); in i32_from_p24()
844 static inline float float_from_p24(const uint8_t *packed24) in float_from_p24() argument
846 return float_from_i32(i32_from_p24(packed24)); in float_from_p24()