MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / av_int2float

Function av_int2float

libavutil/intfloat.h:40–45  ·  view source on GitHub ↗

* Reinterpret a 32-bit integer as a float. */

Source from the content-addressed store, hash-verified

38 * Reinterpret a 32-bit integer as a float.
39 */
40static av_always_inline float av_int2float(uint32_t i)
41{
42 union av_intfloat32 v;
43 v.i = i;
44 return v.f;
45}
46
47/**
48 * Reinterpret a float as a 32-bit integer.

Callers 15

ebml_read_floatFunction · 0.85
mov_read_udta_stringFunction · 0.85
parse_utfFunction · 0.85
laf_read_headerFunction · 0.85
thp_probeFunction · 0.85
thp_read_headerFunction · 0.85
ircam_read_headerFunction · 0.85
cine_read_headerFunction · 0.85
fourxm_read_headerFunction · 0.85
read_headerFunction · 0.85
pdv_read_headerFunction · 0.85
float2halfFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68