MCPcopy Create free account
hub / github.com/defold/defold / MemPutLE32

Function MemPutLE32

engine/record/src/record/record.cpp:66–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64 }
65
66 static void MemPutLE32(char *mem, unsigned int val)
67 {
68 mem[0] = val;
69 mem[1] = val >> 8;
70 mem[2] = val >> 16;
71 mem[3] = val >> 24;
72 }
73
74 const uint32_t IVF_HEADER_SIZE = 32;
75 const uint32_t FOURCC = 0x30385056;

Callers 2

WriteIvfFileHeaderFunction · 0.85
WriteIvfFrameHeaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected