love.sound.newDecoder

Attempts to find a decoder for the encoded sound data in the specified file.

Function

Synopsis

decoder = love.sound.newDecoder( file, buffer )

Arguments

File file
The file with encoded sound data.
number buffer (1024)
The size of each decoded chunk, in bytes.

Returns

Decoder decoder
A new Decoder object.

Function

Synopsis

decoder = love.sound.newDecoder( filename, buffer )

Arguments

string filename
The filename of the file with encoded sound data.
number buffer (1024)
The size of each decoded chunk, in bytes.

Returns

Decoder decoder
A new Decoder object.

See Also


Other Languages