Go to the source code of this file.
Typedefs | |
typedef sfBool(* | sfSoundRecorderStartCallback )(void *) |
Type of the callback used when starting a capture. | |
typedef sfBool(* | sfSoundRecorderProcessCallback )(const sfInt16 *, size_t, void *) |
Type of the callback used to process audio data. | |
typedef void(* | sfSoundRecorderStopCallback )(void *) |
Type of the callback used when stopping a capture. | |
Functions | |
CSFML_AUDIO_API sfSoundRecorder * | sfSoundRecorder_create (sfSoundRecorderStartCallback onStart, sfSoundRecorderProcessCallback onProcess, sfSoundRecorderStopCallback onStop, void *userData) |
Construct a new sound recorder from callback functions. | |
CSFML_AUDIO_API void | sfSoundRecorder_destroy (sfSoundRecorder *soundRecorder) |
Destroy a sound recorder. | |
CSFML_AUDIO_API void | sfSoundRecorder_start (sfSoundRecorder *soundRecorder, unsigned int sampleRate) |
Start the capture of a sound recorder. | |
CSFML_AUDIO_API void | sfSoundRecorder_stop (sfSoundRecorder *soundRecorder) |
Stop the capture of a sound recorder. | |
CSFML_AUDIO_API unsigned int | sfSoundRecorder_getSampleRate (const sfSoundRecorder *soundRecorder) |
Get the sample rate of a sound recorder. | |
CSFML_AUDIO_API sfBool | sfSoundRecorder_isAvailable (void) |
Check if the system supports audio capture. | |
Type of the callback used to process audio data.
Definition at line 37 of file SoundRecorder.h.
typedef sfBool(* sfSoundRecorderStartCallback)(void *) |
Type of the callback used when starting a capture.
Definition at line 36 of file SoundRecorder.h.
typedef void(* sfSoundRecorderStopCallback)(void *) |
Type of the callback used when stopping a capture.
Definition at line 38 of file SoundRecorder.h.
CSFML_AUDIO_API sfSoundRecorder* sfSoundRecorder_create | ( | sfSoundRecorderStartCallback | onStart, |
sfSoundRecorderProcessCallback | onProcess, | ||
sfSoundRecorderStopCallback | onStop, | ||
void * | userData | ||
) |
Construct a new sound recorder from callback functions.
onStart | Callback function which will be called when a new capture starts (can be NULL) |
onProcess | Callback function which will be called each time there's audio data to process |
onStop | Callback function which will be called when the current capture stops (can be NULL) |
userData | Data to pass to the callback function (can be NULL) |
CSFML_AUDIO_API void sfSoundRecorder_destroy | ( | sfSoundRecorder * | soundRecorder | ) |
Destroy a sound recorder.
soundRecorder | Sound recorder to destroy |
CSFML_AUDIO_API unsigned int sfSoundRecorder_getSampleRate | ( | const sfSoundRecorder * | soundRecorder | ) |
Get the sample rate of a sound recorder.
The sample rate defines the number of audio samples captured per second. The higher, the better the quality (for example, 44100 samples/sec is CD quality).
soundRecorder | Sound recorder object |
CSFML_AUDIO_API sfBool sfSoundRecorder_isAvailable | ( | void | ) |
Check if the system supports audio capture.
This function should always be called before using the audio capture features. If it returns false, then any attempt to use sfSoundRecorder will fail.
CSFML_AUDIO_API void sfSoundRecorder_start | ( | sfSoundRecorder * | soundRecorder, |
unsigned int | sampleRate | ||
) |
Start the capture of a sound recorder.
The sampleRate parameter defines the number of audio samples captured per second. The higher, the better the quality (for example, 44100 samples/sec is CD quality). This function uses its own thread so that it doesn't block the rest of the program while the capture runs. Please note that only one capture can happen at the same time.
soundRecorder | Sound recorder object |
sampleRate | Desired capture rate, in number of samples per second |
CSFML_AUDIO_API void sfSoundRecorder_stop | ( | sfSoundRecorder * | soundRecorder | ) |
Stop the capture of a sound recorder.
soundRecorder | Sound recorder object |