Go to the source code of this file.
Typedefs | |
typedef FishSoundDecoded_Float | FishSoundDecoded |
DEPRECATED TYPE. | |
Functions | |
int | fish_sound_set_interleave (FishSound *fsound, int interleave) |
DEPRECATED FUNCTION. | |
int | fish_sound_set_decoded_callback (FishSound *fsound, FishSoundDecoded decoded, void *user_data) |
DEPRECATED FUNCTION. | |
long | fish_sound_encode (FishSound *fsound, float **pcm, long frames) |
DEPRECATED FUNCTION. |
|
DEPRECATED TYPE. Signature of a callback for libfishsound to call when it has decoded PCM audio data, and you want this provided as floats using the current interleave method as set by fish_sound_set_interleave(). |
|
DEPRECATED FUNCTION. Encode a block of audio
|
|
DEPRECATED FUNCTION. Set the callback for libfishsound to call when it has a block of decoded PCM audio ready, and you want this provided as floats using the current interleave method as set by fish_sound_set_interleave(). This function, and fish_sound_set_interleave(), have been superceded by the typesafe fish_sound_set_decoded_TYPE() callbacks, such as fish_sound_set_decoded_float() or fish_sound_set_decoded_float_ilv().
|
|
DEPRECATED FUNCTION. Set the PCM format used by a FishSound object. The default value is non-interleaved. Prior to libfishsound 0.7.0, you would (optionally) specify whether you wanted to receive interleaved or per-channel PCM data using fish_sound_set_interleave(), the default being per-channel (non-interleaved) PCM. Whether or not your decoded callback expects interleaved or non-interleaved data is now implied by the particular fish_sound_set_decoded_TYPE() method you use to set it, such as fish_sound_set_decoded_float() or fish_sound_set_decode_float_ilv().
|