* Reinterpret a 64-bit integer as a double. */
| 58 | * Reinterpret a 64-bit integer as a double. |
| 59 | */ |
| 60 | static av_always_inline double av_int2double(uint64_t i) |
| 61 | { |
| 62 | union av_intfloat64 v; |
| 63 | v.i = i; |
| 64 | return v.f; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Reinterpret a double as a 64-bit integer. |
no outgoing calls
no test coverage detected