MCPcopy Create free account
hub / github.com/DentonW/DevIL / GetSynchInt

Function GetSynchInt

DevIL/src-IL/src/il_mp3.cpp:83–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81
82
83ILuint GetSynchInt()
84{
85 ILuint SynchInt;
86
87 SynchInt = GetBigUInt();
88
89 SynchInt = ((SynchInt & 0x7F000000) >> 3) | ((SynchInt & 0x7F0000) >> 2)
90 | ((SynchInt & 0x7F00) >> 1) | (SynchInt & 0x7F);
91
92 return SynchInt;
93}
94
95
96// Internal function used to get the MP3 header from the current file.

Callers 2

iGetMp3HeadFunction · 0.85
iFindMp3PicFunction · 0.85

Calls 1

GetBigUIntFunction · 0.85

Tested by

no test coverage detected