Dereference sample pointer and convert to float sample
| 84 | |
| 85 | // Dereference sample pointer and convert to float sample |
| 86 | static inline float FROM_INT16(const short *ptr) |
| 87 | { |
| 88 | return *ptr / CONVERT_DIV16; |
| 89 | } |
| 90 | |
| 91 | static inline float FROM_INT24(const int *ptr) |
| 92 | { |