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

Function av_int2double

libavutil/intfloat.h:60–65  ·  view source on GitHub ↗

* Reinterpret a 64-bit integer as a double. */

Source from the content-addressed store, hash-verified

58 * Reinterpret a 64-bit integer as a double.
59 */
60static 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.

Callers 15

ebml_read_floatFunction · 0.85
mov_parse_stsd_audioFunction · 0.85
parse_utfFunction · 0.85
oledate_to_iso8601Function · 0.85
get_tagFunction · 0.85
nuv_headerFunction · 0.85
parse_keyframes_indexFunction · 0.85
amf_parse_objectFunction · 0.85
ff_amf_read_numberFunction · 0.85
amf_get_field_value2Function · 0.85
amf_tag_contentsFunction · 0.85
read_desc_chunkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected