![]() |
SOUND4 BIGVOICE.CL Library [1.1.6]
|
Get information on the library. More...
Classes | |
struct | SOUND4_ProcessInfo |
Macros | |
#define | BIGVOICE_AUDIOFRAME_COUNT 12 |
#define | BIGVOICE_CHANNEL_COUNT 1 |
#define | BIGVOICE_AUDIO_INPUT_COUNT 1 |
#define | BIGVOICE_AUDIO_OUTPUT_COUNT 1 |
#define | BIGVOICE_SAMPLE_RATE 48000 |
Typedefs | |
typedef void(* | bigvoice_loggerfn) (enum bigvoice_LogSeverity, const char *) |
Enumerations | |
enum | bigvoice_LogSeverity { none = 0 , fatal = 1 , error = 2 , warning = 3 , info = 4 , verbose = 5 , verbose2 = 6 , verbose3 = 7 , verbose4 = 8 , verbose5 = 9 } |
Functions | |
const struct SOUND4_ProcessInfo * | SOUND4_GetProcessInfo () |
const char * | bigvoice_GetVersion () |
unsigned int | bigvoice_GetChunkSizeInFrames () |
unsigned int * | bigvoice_GetPossibleChunkSizeInFrames () |
unsigned int | bigvoice_GetChannelCount () |
unsigned int | bigvoice_GetAudioInputCount () |
unsigned int | bigvoice_GetAudioOutputCount () |
unsigned int | bigvoice_GetSampleRate () |
void | bigvoice_SetLoggerCallback (bigvoice_loggerfn logger) |
void | bigvoice_SetLogSeverity (enum bigvoice_LogSeverity severity) |
Get information on the library. Set logging mode.
#define BIGVOICE_AUDIO_INPUT_COUNT 1 |
This version number of inputs for this process.
Definition at line 54 of file sound4.bigvoice.cl.h.
#define BIGVOICE_AUDIO_OUTPUT_COUNT 1 |
This version number of outputs for this process.
Definition at line 60 of file sound4.bigvoice.cl.h.
#define BIGVOICE_AUDIOFRAME_COUNT 12 |
This version number of frames in a process chunk.
Definition at line 42 of file sound4.bigvoice.cl.h.
#define BIGVOICE_CHANNEL_COUNT 1 |
This version number of channels.
Definition at line 48 of file sound4.bigvoice.cl.h.
#define BIGVOICE_SAMPLE_RATE 48000 |
This input/output sample-rate.
Definition at line 66 of file sound4.bigvoice.cl.h.
typedef void(* bigvoice_loggerfn) (enum bigvoice_LogSeverity, const char *) |
The logging callback format
char*
are UTF-8 encoded Definition at line 181 of file sound4.bigvoice.cl.h.
enum bigvoice_LogSeverity |
The logging levels
Enumerator | |
---|---|
none | Not used. |
fatal | fatal error |
error | error |
warning | warning |
info | info |
verbose | verbose |
verbose2 | verbose2 |
verbose3 | verbose3 |
verbose4 | verbose4 |
verbose5 | verbose5 |
Definition at line 162 of file sound4.bigvoice.cl.h.
unsigned int bigvoice_GetAudioInputCount | ( | ) |
Get the number of inputs for this process
unsigned int bigvoice_GetAudioOutputCount | ( | ) |
Get the number of outputs for this process
unsigned int bigvoice_GetChannelCount | ( | ) |
Get the number of channels needed by this process
unsigned int bigvoice_GetChunkSizeInFrames | ( | ) |
Get the default number of frames in a process chunk.
The output will be available only by chunks of this size.
unsigned int * bigvoice_GetPossibleChunkSizeInFrames | ( | ) |
Get the possibles number of frames in a process chunk.
The output will be available only by chunks of this size.
unsigned int bigvoice_GetSampleRate | ( | ) |
Get the processing sample-rate
const char * bigvoice_GetVersion | ( | ) |
Get the process version string
void bigvoice_SetLoggerCallback | ( | bigvoice_loggerfn | logger | ) |
Set a callback for logging
If not set, a default logger prints to stderr.
logger | A C callback called for logging. |
void bigvoice_SetLogSeverity | ( | enum bigvoice_LogSeverity | severity | ) |
Change the global log severity
Logs above this level will not be printed.
severity | Log severity |
const struct SOUND4_ProcessInfo * SOUND4_GetProcessInfo | ( | ) |
Get this processor description
Common to all SOUND4 processors.