SOUND4 BIGVOICE.CL Library [1.1.6]
Loading...
Searching...
No Matches
sound4.bigvoice.cl.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <stdint.h>
7#ifdef __unix__
8 #include <sys/types.h>
9 #define BIGVOICE_DECL __attribute__ ((visibility ("default")))
10#elif defined(_WIN32) || defined(WIN32)
11 #ifdef BUILDING_BIGVOICE_DLL
12 #define BIGVOICE_DECL __declspec(dllexport)
13 #else
14 #define BIGVOICE_DECL __declspec(dllimport)
15 #endif
16#elif defined(__APPLE__)
17 #include <sys/types.h>
18 #define BIGVOICE_DECL __attribute__ ((visibility ("default")))
19#endif
20
21#define BIGVOICE_HAS_WEBSERVER 1
22#define BIGVOICE_HAS_CLOUDBUS 1
23
24#ifdef __cplusplus
25extern "C" {
26#endif // __cplusplus
27
28// --------------------------------------------------------------
42#define BIGVOICE_AUDIOFRAME_COUNT 12
48#define BIGVOICE_CHANNEL_COUNT 1
54#define BIGVOICE_AUDIO_INPUT_COUNT 1
60#define BIGVOICE_AUDIO_OUTPUT_COUNT 1
66#define BIGVOICE_SAMPLE_RATE 48000
67
74 size_t struct_size;
75 const char *name;
76 const char *prefix;
77 const char *shortname;
78 const char *version;
79};
80
89
96
110
120
129
139
149
158
174
181typedef void (*bigvoice_loggerfn) (enum bigvoice_LogSeverity, const char *);
182
193
202
205// --------------------------------------------------------------
213// --------------------------------------------------------------
217struct bigvoice_CInstance;
218
223
232
237
249BIGVOICE_DECL void bigvoice_SetParameter(struct bigvoice_CParameters *params, const char *name, const char *value);
250
256BIGVOICE_DECL const char *bigvoice_GetParameter(struct bigvoice_CParameters *params, const char *name);
257
264
273 const char *LoginKey,
274 const char *RadioName,
275 const char *Access_Key_ID,
276 const char *Access_Key_Secret,
277 const char *save_path
278 );
279
288 const char *LoginKey,
289 const char *RadioName,
290 const char *Access_Key_ID,
291 const char *Access_Key_Secret,
292 const char *save_path,
293 const struct bigvoice_CParameters *parameters
294 );
295
324 const char *LoginKey,
325 const char *RadioName,
326 const char *Access_Key_ID,
327 const char *Access_Key_Secret,
328 const char *save_path,
329 const struct bigvoice_CParameters *parameters,
330 unsigned int frames_per_chunk
331 );
332
345
356
363
366#if BIGVOICE_HAS_CLOUDBUS
367// --------------------------------------------------------------
377struct bigvoice_CBus;
378
385
392
403
404
406#endif // BIGVOICE_HAS_CLOUDBUS
407
408// --------------------------------------------------------------
431// --------------------------------------------------------------
432
433// OS dependent filesystem path char type
434#ifdef _WIN32
435 typedef wchar_t fs_char;
436#else // !_WIN32
437 typedef char fs_char;
438#endif // !_WIN32
439
447typedef char * (*bigvoice_storage_reader) (const fs_char *filename, void* userdata);
448
455typedef void (*bigvoice_storage_reader_free) (char *content, void* userdata);
456
465typedef int (*bigvoice_storage_writer) (const fs_char *filename, const char *content, void* userdata);
466
474typedef int (*bigvoice_storage_exists) (const fs_char *filename, void* userdata);
475
483typedef fs_char** (*bigvoice_storage_getall) (void* userdata);
484
491typedef void (*bigvoice_storage_getall_free) (fs_char**all, void* userdata);
492
500typedef int (*bigvoice_storage_remove) (const fs_char *filename, void* userdata);
501
510typedef int (*bigvoice_storage_rename) (const fs_char *from, const fs_char *to, void* userdata);
511
536 , int IsReadOnly
537 , void* userdata
538 );
539
548
558
561// --------------------------------------------------------------
569// --------------------------------------------------------------
570
587BIGVOICE_DECL void bigvoice_SetMetadata(struct bigvoice_CInstance *instance, const char* key, const char* value);
588
599BIGVOICE_DECL void bigvoice_SetMetadataMulti(struct bigvoice_CInstance *instance, const char** keyvalue);
600
609
616BIGVOICE_DECL void bigvoice_FreeMetadataInfos(struct bigvoice_CInstance *instance, const char** infos);
617
620// --------------------------------------------------------------
627// --------------------------------------------------------------
628
641BIGVOICE_DECL void bigvoice_StartUpdateThread(struct bigvoice_CInstance *instance, unsigned int port);
642
649
658
661// --------------------------------------------------------------
668// --------------------------------------------------------------
690BIGVOICE_DECL void bigvoice_ProcessAudio(struct bigvoice_CInstance *instance, const float *input, float *output );
691
711 , float const * const *input
712 , float * const *output);
713
727
741
752
755// --------------------------------------------------------------
764// --------------------------------------------------------------
765 #ifdef _MSC_VER
766 #define __BYTE_ORDER__ REG_DWORD
767 #define __ORDER_LITTLE_ENDIAN__ REG_DWORD_LITTLE_ENDIAN
768 #define __ORDER_BIG_ENDIAN__ REG_DWORD_BIG_ENDIAN
769 #endif
770
784
785 // Native definitions, only links to the physical ones
786 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
791 #else
796 #endif
797};
798
806
814
822
823
831
842BIGVOICE_DECL unsigned int bigvoice_AddAudio(struct bigvoice_CInstance *instance, const uint8_t *payload, unsigned int nFrame, enum bigvoice_SampleFormat fmt );
843
851
859
869BIGVOICE_DECL unsigned int bigvoice_GetAudio(struct bigvoice_CInstance *instance, uint8_t *payload, unsigned int max_nFrame, enum bigvoice_SampleFormat fmt );
870
874// --------------------------------------------------------------
881// --------------------------------------------------------------
892BIGVOICE_DECL void bigvoice_AudioConvertFrom(const uint8_t *payload, float *output, size_t nSpl, enum bigvoice_SampleFormat fmt);
893
904BIGVOICE_DECL void bigvoice_AudioConvertTo(const float *input, uint8_t *payload, size_t nSpl, enum bigvoice_SampleFormat fmt);
905
915BIGVOICE_DECL void bigvoice_StereoToMono(const float *input, float *output, size_t nFrame);
916
926BIGVOICE_DECL void bigvoice_MonoToStereo(const float *input, float *output, size_t nFrame);
927
938BIGVOICE_DECL void bigvoice_StereoToMono_Planar(const float *inputL, const float *inputR, float *output, size_t nFrame);
939
950BIGVOICE_DECL void bigvoice_MonoToStereo_Planar(const float *input, float *outputL, float *outputR, size_t nFrame);
951
958BIGVOICE_DECL void bigvoice_AudioMonoFromLiveStereo(const uint8_t *payload, float *output);
959
966BIGVOICE_DECL void bigvoice_AudioMonoToLiveStereo(const float *input, uint8_t *payload);
967
970// --------------------------------------------------------------
977// --------------------------------------------------------------
982
992
999
1013BIGVOICE_DECL const char *bigvoice_ProcessJson(struct bigvoice_CClientInstance *client, const char *json_str, int *need_save);
1014
1020BIGVOICE_DECL void bigvoice_FreeJsonAnswer(const char *json_str);
1021
1034
1037#if BIGVOICE_HAS_WEBSERVER
1038// --------------------------------------------------------------
1053// --------------------------------------------------------------
1061BIGVOICE_DECL uint64_t bigvoice_Webserver_tcp(unsigned int listenport, unsigned int listenport_secure, const char *socket_ip, unsigned int socket_port);
1062
1063// --------------------------------------------------------------
1083BIGVOICE_DECL uint64_t bigvoice_Webserver_tcp2(unsigned int listenport, unsigned int listenport_secure, const char *socket_ip, unsigned int socket_port, const struct bigvoice_CParameters *parameters);
1084
1102BIGVOICE_DECL uint64_t bigvoice_Webserver(unsigned int listenport, unsigned int listenport_secure, struct bigvoice_CInstance *instance);
1103
1113BIGVOICE_DECL int bigvoice_Webserver_Stop(uint64_t id, int timeout_ms);
1114
1124
1135BIGVOICE_DECL void bigvoice_Webserver_SetAppHealth(struct bigvoice_CInstance *instance, int httpcode, const char *contenttype, const char *content);
1136
1145BIGVOICE_DECL void bigvoice_Webserver_GetAppHealth(struct bigvoice_CInstance *instance, int* httpcode, char** contenttype, char** content);
1146
1153
1158#define SOUND4_INVALID_WEBSERVER_ID ((uint64_t)-1)
1159
1163#define SOUND4_WEBSERVER_HTTP_OK (1<<0)
1167#define SOUND4_WEBSERVER_HTTPS_OK (1<<1)
1168
1170#endif // BIGVOICE_HAS_WEBSERVER
1171
1172#ifdef __cplusplus
1173} // extern "C"
1174#endif // __cplusplus
unsigned int bigvoice_GetOutputCount(struct bigvoice_CInstance *instance)
unsigned int bigvoice_GetAudio(struct bigvoice_CInstance *instance, uint8_t *payload, unsigned int max_nFrame, enum bigvoice_SampleFormat fmt)
unsigned int bigvoice_GetMaxPacketFrame(struct bigvoice_CInstance *instance)
bigvoice_SampleFormat
const char * bigvoice_GetFormatName(const enum bigvoice_SampleFormat fmt)
unsigned int bigvoice_GetBytesFromFormat(const enum bigvoice_SampleFormat fmt)
unsigned int bigvoice_AddPadAudio(struct bigvoice_CInstance *instance)
enum bigvoice_SampleFormat bigvoice_GetFormatFromName(const char *name)
unsigned int bigvoice_AddAudio(struct bigvoice_CInstance *instance, const uint8_t *payload, unsigned int nFrame, enum bigvoice_SampleFormat fmt)
@ F32_NATIVE
32-bit floating-point, native
@ INVALID_FORMAT
Invalid.
@ S16_NATIVE
16-bit signed integer, native
@ F32_LE
32-bit floating-point, little-endian
@ S16_BE
16-bit signed integer, big-endian
@ S32_BE
32-bit signed integer, big-endian
@ S24_BE
24-bit signed integer, big-endian
@ S16_LE
16-bit signed integer, little-endian
@ F32_BE
32-bit floating-point, big-endian
@ S32_NATIVE
32-bit signed integer, native
@ S24_LE
24-bit signed integer, little-endian
@ S32_LE
32-bit signed integer, little-endian
@ S24_NATIVE
24-bit signed integer, native
int bigvoice_SaveState(struct bigvoice_CInstance *instance)
void bigvoice_DeleteClient(struct bigvoice_CClientInstance *client)
const char * bigvoice_ProcessJson(struct bigvoice_CClientInstance *client, const char *json_str, int *need_save)
void bigvoice_FreeJsonAnswer(const char *json_str)
struct bigvoice_CClientInstance * bigvoice_NewClient(struct bigvoice_CInstance *instance)
struct bigvoice_CBus * bigvoice_NewBus()
void bigvoice_FreeBus(struct bigvoice_CBus *bus)
void bigvoice_SetInstanceBus(struct bigvoice_CParameters *params, struct bigvoice_CBus *bus)
void bigvoice_AudioConvertTo(const float *input, uint8_t *payload, size_t nSpl, enum bigvoice_SampleFormat fmt)
void bigvoice_AudioConvertFrom(const uint8_t *payload, float *output, size_t nSpl, enum bigvoice_SampleFormat fmt)
void bigvoice_AudioMonoToLiveStereo(const float *input, uint8_t *payload)
void bigvoice_StereoToMono_Planar(const float *inputL, const float *inputR, float *output, size_t nFrame)
void bigvoice_MonoToStereo_Planar(const float *input, float *outputL, float *outputR, size_t nFrame)
void bigvoice_AudioMonoFromLiveStereo(const uint8_t *payload, float *output)
void bigvoice_MonoToStereo(const float *input, float *output, size_t nFrame)
void bigvoice_StereoToMono(const float *input, float *output, size_t nFrame)
void bigvoice_ProcessAudio(struct bigvoice_CInstance *instance, const float *input, float *output)
unsigned int bigvoice_GetEstimatedDelay(struct bigvoice_CInstance *instance)
float * bigvoice_GetBufferOut(struct bigvoice_CInstance *instance)
float * bigvoice_GetBufferIn(struct bigvoice_CInstance *instance)
void bigvoice_ProcessAudio_Planar(struct bigvoice_CInstance *instance, float const *const *input, float *const *output)
const struct SOUND4_ProcessInfo * SOUND4_GetProcessInfo()
bigvoice_LogSeverity
void(* bigvoice_loggerfn)(enum bigvoice_LogSeverity, const char *)
unsigned int bigvoice_GetAudioInputCount()
unsigned int bigvoice_GetChannelCount()
void bigvoice_SetLoggerCallback(bigvoice_loggerfn logger)
void bigvoice_SetLogSeverity(enum bigvoice_LogSeverity severity)
unsigned int bigvoice_GetChunkSizeInFrames()
unsigned int bigvoice_GetAudioOutputCount()
const char * bigvoice_GetVersion()
unsigned int bigvoice_GetSampleRate()
unsigned int * bigvoice_GetPossibleChunkSizeInFrames()
@ verbose5
verbose5
@ fatal
fatal error
@ warning
warning
@ verbose4
verbose4
@ info
info
@ none
Not used.
@ error
error
@ verbose2
verbose2
@ verbose3
verbose3
@ verbose
verbose
void bigvoice_FreeParameterValue(const char *value)
int bigvoice_TerminateProcess(struct bigvoice_CInstance *instance)
struct bigvoice_CInstance * bigvoice_InitProcess3(const char *LoginKey, const char *RadioName, const char *Access_Key_ID, const char *Access_Key_Secret, const char *save_path, const struct bigvoice_CParameters *parameters, unsigned int frames_per_chunk)
void bigvoice_FreeParameters(struct bigvoice_CParameters *params)
void bigvoice_ExitProcess(struct bigvoice_CInstance *instance)
struct bigvoice_CParameters * bigvoice_NewParameters()
unsigned int bigvoice_GetProcessChunkFrames(struct bigvoice_CInstance *instance)
struct bigvoice_CInstance * bigvoice_InitProcess2(const char *LoginKey, const char *RadioName, const char *Access_Key_ID, const char *Access_Key_Secret, const char *save_path, const struct bigvoice_CParameters *parameters)
void bigvoice_SetParameter(struct bigvoice_CParameters *params, const char *name, const char *value)
struct bigvoice_CInstance * bigvoice_InitProcess(const char *LoginKey, const char *RadioName, const char *Access_Key_ID, const char *Access_Key_Secret, const char *save_path)
const char * bigvoice_GetParameter(struct bigvoice_CParameters *params, const char *name)
void bigvoice_FreeMetadataInfos(struct bigvoice_CInstance *instance, const char **infos)
void bigvoice_SetMetadata(struct bigvoice_CInstance *instance, const char *key, const char *value)
const char ** bigvoice_GetMetadataInfos(struct bigvoice_CInstance *instance)
void bigvoice_SetMetadataMulti(struct bigvoice_CInstance *instance, const char **keyvalue)
void(* bigvoice_storage_getall_free)(fs_char **all, void *userdata)
int(* bigvoice_storage_exists)(const fs_char *filename, void *userdata)
fs_char **(* bigvoice_storage_getall)(void *userdata)
int(* bigvoice_storage_remove)(const fs_char *filename, void *userdata)
int(* bigvoice_storage_writer)(const fs_char *filename, const char *content, void *userdata)
bigvoice_PresetChange_Kind
char *(* bigvoice_storage_reader)(const fs_char *filename, void *userdata)
void bigvoice_SetPresetManager(struct bigvoice_CParameters *params, bigvoice_storage_reader reader, bigvoice_storage_reader_free, bigvoice_storage_writer writer, bigvoice_storage_exists exists, bigvoice_storage_getall getall, bigvoice_storage_getall_free getall_free, bigvoice_storage_remove remove, bigvoice_storage_rename rename, int IsReadOnly, void *userdata)
void(* bigvoice_storage_reader_free)(char *content, void *userdata)
void bigvoice_PresetManager_InformChange(struct bigvoice_CInstance *instance, const fs_char *relative_path, enum bigvoice_PresetChange_Kind change_kind)
wchar_t fs_char
int(* bigvoice_storage_rename)(const fs_char *from, const fs_char *to, void *userdata)
@ change_kind_modified
Path has been modified.
@ change_kind_created
Path has been created.
@ change_kind_deleted
Path has been deleted.
void bigvoice_StopUpdateThread(struct bigvoice_CInstance *instance)
int bigvoice_WaitUpdateThreadReady(struct bigvoice_CInstance *instance, int milliseconds)
void bigvoice_StartUpdateThread(struct bigvoice_CInstance *instance, unsigned int port)
uint64_t bigvoice_Webserver_tcp(unsigned int listenport, unsigned int listenport_secure, const char *socket_ip, unsigned int socket_port)
uint64_t bigvoice_Webserver(unsigned int listenport, unsigned int listenport_secure, struct bigvoice_CInstance *instance)
int bigvoice_Webserver_Stop(uint64_t id, int timeout_ms)
uint64_t bigvoice_Webserver_tcp2(unsigned int listenport, unsigned int listenport_secure, const char *socket_ip, unsigned int socket_port, const struct bigvoice_CParameters *parameters)
int bigvoice_Webserver_Status(uint64_t id)
void bigvoice_Webserver_SetAppHealth(struct bigvoice_CInstance *instance, int httpcode, const char *contenttype, const char *content)
void bigvoice_Webserver_FreeString(char *str)
void bigvoice_Webserver_GetAppHealth(struct bigvoice_CInstance *instance, int *httpcode, char **contenttype, char **content)
#define BIGVOICE_DECL
const char * version
Library version.
const char * shortname
A short name of the processor, single word.
const char * prefix
The prefix of this processor functions.
size_t struct_size
The size of total this structure, for compatibility checking.
const char * name
The name of the processor.