titan-studio / coeus

Pure LuaJIT game engine with a focus on fast development and high quality games
zlib License
25 stars 0 forks source link

Improve Static OGG Decoding #29

Closed LPGhatguy closed 9 years ago

LPGhatguy commented 10 years ago

Right now the static OGG file decoder allocates extra memory and internalizes a lot of strings. This is because it's based entirely on a reference implementation I found somewhere. I can probably optimize it by using a single malloc'd buffer.

LPGhatguy commented 9 years ago

Done!