* Reinterpret a float as a 32-bit integer. */
| 48 | * Reinterpret a float as a 32-bit integer. |
| 49 | */ |
| 50 | static av_always_inline uint32_t av_float2int(float f) |
| 51 | { |
| 52 | union av_intfloat32 v; |
| 53 | v.f = f; |
| 54 | return v.i; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Reinterpret a 64-bit integer as a double. |
no outgoing calls
no test coverage detected