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.h1122 static inline int32_t i32_from_p24(const uint8_t *packed24) in i32_from_p24() argument
1125 return (packed24[0] << 8) | (packed24[1] << 16) | (packed24[2] << 24); in i32_from_p24()
1151 static inline float float_from_p24(const uint8_t *packed24) in float_from_p24() argument
1153 return float_from_i32(i32_from_p24(packed24)); in float_from_p24()