SOUND4 BIGVOICE.CL Library [1.1.7]
Loading...
Searching...
No Matches
sound4.bigvoice.cl.h
Go to the documentation of this file.
1
4#pragma once
5
6#ifdef __unix__
7 #include <sys/types.h>
8 #define BIGVOICE_DECL __attribute__ ((visibility ("default")))
9#elif defined(_WIN32) || defined(WIN32)
10 #include <windows.h>
11 #ifdef BUILDING_BIGVOICE_DLL
12 #define BIGVOICE_DECL __declspec(dllexport)
13 #else
14 #define BIGVOICE_DECL __declspec(dllimport)
15 #endif
16 #ifdef _MSC_VER
17 #pragma warning(disable : 4996)
18 #endif
19#elif defined(__APPLE__)
20 #include <sys/types.h>
21 #define BIGVOICE_DECL __attribute__ ((visibility ("default")))
22#endif
23#include <stdint.h>
24
25#define BIGVOICE_HAS_WEBSERVER 1
26#define BIGVOICE_HAS_CLOUDBUS 1
27
28#ifdef __cplusplus
29extern "C" {
30#endif // __cplusplus
31
32// --------------------------------------------------------------
46#define BIGVOICE_AUDIOFRAME_COUNT 12
52#define BIGVOICE_CHANNEL_COUNT 1
58#define BIGVOICE_AUDIO_INPUT_COUNT 1
64#define BIGVOICE_AUDIO_OUTPUT_COUNT 1
70#define BIGVOICE_SAMPLE_RATE 48000
71
78 size_t struct_size;
79 const char *name;
80 const char *prefix;
81 const char *shortname;
82 const char *version;
83};
84
93
100
114
124
133
143
153
162
178
185typedef void (*bigvoice_loggerfn) (enum bigvoice_LogSeverity, const char *);
186
197
206
209// --------------------------------------------------------------
217// --------------------------------------------------------------
221struct bigvoice_CInstance;
222
227
236
241
253BIGVOICE_DECL void bigvoice_SetParameter(struct bigvoice_CParameters *params, const char *name, const char *value);
254
260BIGVOICE_DECL const char *bigvoice_GetParameter(struct bigvoice_CParameters *params, const char *name);
261
268
277 const char *LoginKey,
278 const char *RadioName,
279 const char *Access_Key_ID,
280 const char *Access_Key_Secret,
281 const char *save_path
282 );
283
292 const char *LoginKey,
293 const char *RadioName,
294 const char *Access_Key_ID,
295 const char *Access_Key_Secret,
296 const char *save_path,
297 const struct bigvoice_CParameters *parameters
298 );
299
328 const char *LoginKey,
329 const char *RadioName,
330 const char *Access_Key_ID,
331 const char *Access_Key_Secret,
332 const char *save_path,
333 const struct bigvoice_CParameters *parameters,
334 unsigned int frames_per_chunk
335 );
336
349
360
367
370#if BIGVOICE_HAS_CLOUDBUS
371// --------------------------------------------------------------
381struct bigvoice_CBus;
382
389
396
407
408
410#endif // BIGVOICE_HAS_CLOUDBUS
411
412// --------------------------------------------------------------
413// Tracing (Windows only)
414// --------------------------------------------------------------
415#ifdef _WIN32
416#ifndef TLG_HAVE_EVENT_SET_INFORMATION // TraceLoggingProvider.h has not been included
417 struct _tlgProvider_t;
418 typedef struct _tlgProvider_t const* TraceLoggingHProvider;
419#endif // !TLG_HAVE_EVENT_SET_INFORMATION
420// --------------------------------------------------------------
435BIGVOICE_DECL void bigvoice_SetInstanceTracing(struct bigvoice_CParameters *params, TraceLoggingHProvider tracing_provider, GUID activity_guid);
436
445
447#endif // _WIN32
448
449// --------------------------------------------------------------
472// --------------------------------------------------------------
473
474// OS dependent filesystem path char type
475#ifdef _WIN32
476 typedef wchar_t fs_char;
477#else // !_WIN32
478 typedef char fs_char;
479#endif // !_WIN32
480
488typedef char * (*bigvoice_storage_reader) (const fs_char *filename, void* userdata);
489
496typedef void (*bigvoice_storage_reader_free) (char *content, void* userdata);
497
506typedef int (*bigvoice_storage_writer) (const fs_char *filename, const char *content, void* userdata);
507
515typedef int (*bigvoice_storage_exists) (const fs_char *filename, void* userdata);
516
524typedef fs_char** (*bigvoice_storage_getall) (void* userdata);
525
532typedef void (*bigvoice_storage_getall_free) (fs_char**all, void* userdata);
533
541typedef int (*bigvoice_storage_remove) (const fs_char *filename, void* userdata);
542
551typedef int (*bigvoice_storage_rename) (const fs_char *from, const fs_char *to, void* userdata);
552
577 , int IsReadOnly
578 , void* userdata
579 );
580
589
599
602// --------------------------------------------------------------
610// --------------------------------------------------------------
611
628BIGVOICE_DECL void bigvoice_SetMetadata(struct bigvoice_CInstance *instance, const char* key, const char* value);
629
640BIGVOICE_DECL void bigvoice_SetMetadataMulti(struct bigvoice_CInstance *instance, const char** keyvalue);
641
650
657BIGVOICE_DECL void bigvoice_FreeMetadataInfos(struct bigvoice_CInstance *instance, const char** infos);
658
661// --------------------------------------------------------------
668// --------------------------------------------------------------
669
682BIGVOICE_DECL void bigvoice_StartUpdateThread(struct bigvoice_CInstance *instance, unsigned int port);
683
690
699
702// --------------------------------------------------------------
709// --------------------------------------------------------------
731BIGVOICE_DECL void bigvoice_ProcessAudio(struct bigvoice_CInstance *instance, const float *input, float *output );
732
752 , float const * const *input
753 , float * const *output);
754
768
782
793
796// --------------------------------------------------------------
805// --------------------------------------------------------------
806 #ifdef _MSC_VER
807 #define __BYTE_ORDER__ REG_DWORD
808 #define __ORDER_LITTLE_ENDIAN__ REG_DWORD_LITTLE_ENDIAN
809 #define __ORDER_BIG_ENDIAN__ REG_DWORD_BIG_ENDIAN
810 #endif
811
825
826 // Native definitions, only links to the physical ones
827 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
832 #else
837 #endif
838};
839
847
855
863
864
872
883BIGVOICE_DECL unsigned int bigvoice_AddAudio(struct bigvoice_CInstance *instance, const uint8_t *payload, unsigned int nFrame, enum bigvoice_SampleFormat fmt );
884
892
900
910BIGVOICE_DECL unsigned int bigvoice_GetAudio(struct bigvoice_CInstance *instance, uint8_t *payload, unsigned int max_nFrame, enum bigvoice_SampleFormat fmt );
911
915// --------------------------------------------------------------
922// --------------------------------------------------------------
933BIGVOICE_DECL void bigvoice_AudioConvertFrom(const uint8_t *payload, float *output, size_t nSpl, enum bigvoice_SampleFormat fmt);
934
945BIGVOICE_DECL void bigvoice_AudioConvertTo(const float *input, uint8_t *payload, size_t nSpl, enum bigvoice_SampleFormat fmt);
946
956BIGVOICE_DECL void bigvoice_StereoToMono(const float *input, float *output, size_t nFrame);
957
967BIGVOICE_DECL void bigvoice_MonoToStereo(const float *input, float *output, size_t nFrame);
968
979BIGVOICE_DECL void bigvoice_StereoToMono_Planar(const float *inputL, const float *inputR, float *output, size_t nFrame);
980
991BIGVOICE_DECL void bigvoice_MonoToStereo_Planar(const float *input, float *outputL, float *outputR, size_t nFrame);
992
999BIGVOICE_DECL void bigvoice_AudioMonoFromLiveStereo(const uint8_t *payload, float *output);
1000
1007BIGVOICE_DECL void bigvoice_AudioMonoToLiveStereo(const float *input, uint8_t *payload);
1008
1011// --------------------------------------------------------------
1018// --------------------------------------------------------------
1023
1033
1040
1054BIGVOICE_DECL const char *bigvoice_ProcessJson(struct bigvoice_CClientInstance *client, const char *json_str, int *need_save);
1055
1061BIGVOICE_DECL void bigvoice_FreeJsonAnswer(const char *json_str);
1062
1075
1078#if BIGVOICE_HAS_WEBSERVER
1079// --------------------------------------------------------------
1094// --------------------------------------------------------------
1102BIGVOICE_DECL uint64_t bigvoice_Webserver_tcp(unsigned int listenport, unsigned int listenport_secure, const char *socket_ip, unsigned int socket_port);
1103
1104// --------------------------------------------------------------
1124BIGVOICE_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);
1125
1143BIGVOICE_DECL uint64_t bigvoice_Webserver(unsigned int listenport, unsigned int listenport_secure, struct bigvoice_CInstance *instance);
1144
1154BIGVOICE_DECL int bigvoice_Webserver_Stop(uint64_t id, int timeout_ms);
1155
1165
1176BIGVOICE_DECL void bigvoice_Webserver_SetAppHealth(struct bigvoice_CInstance *instance, int httpcode, const char *contenttype, const char *content);
1177
1186BIGVOICE_DECL void bigvoice_Webserver_GetAppHealth(struct bigvoice_CInstance *instance, int* httpcode, char** contenttype, char** content);
1187
1194
1199#define SOUND4_INVALID_WEBSERVER_ID ((uint64_t)-1)
1200
1204#define SOUND4_WEBSERVER_HTTP_OK (1<<0)
1208#define SOUND4_WEBSERVER_HTTPS_OK (1<<1)
1209
1211#endif // BIGVOICE_HAS_WEBSERVER
1212
1213#ifdef __cplusplus
1214} // extern "C"
1215#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_SetInstanceTracingProcessActivity(struct bigvoice_CInstance *instance, GUID activity_guid)
void bigvoice_SetInstanceTracing(struct bigvoice_CParameters *params, TraceLoggingHProvider tracing_provider, GUID activity_guid)
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)
struct _tlgProvider_t const * TraceLoggingHProvider
#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.