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

Function ilLoadMp3F

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

Reads an already-opened MP3 file

Source from the content-addressed store, hash-verified

218
219//! Reads an already-opened MP3 file
220ILboolean ilLoadMp3F(ILHANDLE File)
221{
222 ILuint FirstPos;
223 ILboolean bRet;
224
225 iSetInputFile(File);
226 FirstPos = itell();
227 bRet = iLoadMp3Internal();
228 iseek(FirstPos, IL_SEEK_SET);
229
230 return bRet;
231}
232
233
234//! Reads from a memory "lump" that contains a MP3

Callers 2

ilLoadMp3Function · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadMp3InternalFunction · 0.85

Tested by

no test coverage detected