20#if defined(__unix__) || defined(__APPLE__)
29 #include <libloaderapi.h>
31 #error "Unsupported OS"
39 #include <stringapiset.h>
42 #define fs_strdup wcsdup
45 #define fs_strdup strdup
87 using DynFunc_t =
void *;
89 using DynFunc_t = FARPROC;
92 DynFunc_t m_ptr = NULL;
96 operator bool()
const {
return (m_ptr!=NULL); }
97 bool IsOk()
const {
return m_ptr!=NULL; }
98 operator T* ()
const {
return reinterpret_cast<T*
>(m_ptr); }
108 using DynLib_t =
void *;
110 using DynLib_t = HMODULE;
120 operator bool()
const {
121 return (m_lib!=NULL);
124 return (m_lib!=NULL);
129 #ifndef __SANITIZE_ADDRESS__
135 bool Load(
const std::filesystem::path& dynlib)
138 m_lib=dlopen(dynlib.c_str(), RTLD_NOW|RTLD_LOCAL);
141 template <
typename T>
142 DynFuncHolder<T>
GetSymbol(
const std::string& name) {
143 auto ptr=dlsym(m_lib, name.c_str());
145 throw std::runtime_error(
"Missing function in library");
147 return DynFuncHolder<T>(ptr);
149 template <
typename T>
151 auto ptr=dlsym(m_lib, name.c_str());
152 return DynFuncHolder<T>(ptr);
157 auto rp=realpath(
info.dli_fname, NULL);
158 std::filesystem::path p(rp);
173 #if defined(SOUND4_CALL_FREELIBRARYANDEXITTHREAD)
175 #elif defined(SOUND4_CALL_FREELIBRARY)
181 template <
typename T>
185 throw std::runtime_error(
"Missing function in library");
189 template <
typename T>
202 return std::filesystem::path(
path);
272#if BIGVOICE_HAS_WEBSERVER
298#if BIGVOICE_HAS_CLOUDBUS
308#if BIGVOICE_HAS_WEBSERVER
322 bool Load(
const std::filesystem::path& path = {}) {
323 std::string filename;
324 #if defined(__APPLE__)
325 filename=
"libsound4.bigvoice.cl.dylib";
326 #elif defined(__unix__)
327 filename=
"libsound4.bigvoice.cl.so";
329 filename=
"sound4.bigvoice.cl.dll";
333 if (!path.empty() && !m_lib.
Load(path / filename)) {
335 }
else if (!m_lib.
IsOk()) {
339 if (!m_lib.
IsOk() && thisdir.filename()==
"bin") {
340 auto libdir = thisdir.parent_path() /
"lib";
341 m_lib.
Load(libdir / filename);
346 m_lib.
Load(thisdir / filename);
351 auto p = std::filesystem::current_path(ec);
353 m_lib.
Load(p / filename);
406#if BIGVOICE_HAS_WEBSERVER
418 }
catch (std::runtime_error& ) {
436#if BIGVOICE_HAS_CLOUDBUS
446#if BIGVOICE_HAS_WEBSERVER
453 }
catch (std::runtime_error& ) {
519 if (
wstr.empty())
return {};
531 if (
str.empty())
return std::wstring();
711 std::vector<unsigned int> list;
714 list.push_back(*src);
783 throw std::runtime_error(
"Bad library sampling rate");
786 throw std::runtime_error(
"Bad library frame size");
789 throw std::runtime_error(
"Bad library channel count");
792 throw std::runtime_error(
"Bad library input count");
795 throw std::runtime_error(
"Bad library output count");
850 _log_cb(severity, std::string(c_msg));
869#if BIGVOICE_HAS_CLOUDBUS
886 if (m_bus && m_dynlib.
FreeBus) {
909 virtual bool Exists(
const std::filesystem::path &name) = 0;
910 virtual bool Remove(
const std::filesystem::path &name) = 0;
911 virtual bool Rename(
const std::filesystem::path &from,
const std::filesystem::path &to) = 0;
912 virtual std::vector<std::filesystem::path>
GetAll() = 0;
913 virtual std::string
Read(
const std::filesystem::path &filename) = 0;
914 virtual bool Write(
const std::filesystem::path &filename,
const std::string &content) =0;
932 if (!params)
throw std::bad_alloc();
948 bool IsOk()
const {
return instance!=
nullptr; }
958 void SetParam(
const std::string& name,
const std::string& value)
961 m_dynlib.
SetParameter(params, name.c_str(), value.c_str());
972 auto c_value=m_dynlib.
GetParameter(params, name.c_str());
973 std::string ret(c_value);
977#if BIGVOICE_HAS_CLOUDBUS
1006 if (!preset_manager)
return;
1045 bool Create(
const std::string& LoginKey,
const std::string& RadioName,
const std::string& Access_Key_ID,
const std::string& Access_Key_Secret,
const std::filesystem::path& save_path,
int json_port = 0,
unsigned int frames_per_chunk=12)
1048 std::string l_save_path;
1049 if (!save_path.empty()) {
1050 l_save_path = save_path.u8string();
1053 instance = m_dynlib.
InitProcess3(LoginKey.c_str(), RadioName.c_str(), Access_Key_ID.c_str(), Access_Key_Secret.c_str(), l_save_path.c_str(), params, frames_per_chunk);
1054 }
else if (frames_per_chunk!=12) {
1057 instance = m_dynlib.
InitProcess2(LoginKey.c_str(), RadioName.c_str(), Access_Key_ID.c_str(), Access_Key_Secret.c_str(), l_save_path.c_str(), params);
1059 if (!instance)
return false;
1060 if (!init_metadata.empty()) {
1061 for (
auto&& [key,value]: init_metadata) {
1062 m_dynlib.
SetMetadata(instance, key.c_str(), value.c_str());
1064 init_metadata.clear();
1066 update_thread = std::thread([
this, json_port](){
1124 m_dynlib.
SetMetadata(instance, key.c_str(), value);
1126 init_metadata.push_back( {key, value} );
1145 typedef const char* pchar;
1146 pchar* keyvalue=
new pchar[2*list.size()+1];
1148 for (
auto&& [key,value]: list) {
1149 keyvalue[2*n+0]=key.c_str();
1150 keyvalue[2*n+1]=value;
1153 keyvalue[2*n+0]=
nullptr;
1159 for (
auto&& [key,value]: list) {
1164 for (
auto&& [key,value]: list) {
1166 init_metadata.push_back( {key, value} );
1179 std::vector< std::tuple<std::string,std::string> > values;
1183 for (
const char** c_value=c_values; *c_value; ) {
1184 std::string key(*c_value);
1187 std::string descr(*c_value);
1189 values.push_back( {key,descr} );
1207#if BIGVOICE_HAS_WEBSERVER
1225 webserver = m_dynlib.
Webserver(http_port,https_port,instance);
1270 char* c_contenttype=
nullptr;
1271 char* c_content=
nullptr;
1273 contenttype=c_contenttype;
1290 if (!instance)
return 0;
1299 if (!instance)
return;
1300#if BIGVOICE_HAS_WEBSERVER
1303 if (update_thread.joinable()) {
1305 update_thread.join();
1342 return reinterpret_cast< std::array<float,InputSampleSize>&
>(*buf);
1360 return reinterpret_cast< std::array<float,OutputSampleSize>&
>(*buf);
1398 template<
typename T>
1402 std::vector<T> output;
1403 unsigned int out_offset=0;
1404 unsigned int in_offset=0;
1405 unsigned int todo = input.size();
1407 unsigned int left =
AddAudio(&input[in_offset], todo);
1409 output.resize(out_offset + out_avail);
1410 GetAudio(&output[out_offset], out_avail);
1411 out_offset+=out_avail;
1412 in_offset += todo-left;
1430 if (!client)
throw std::bad_alloc();
1449 std::string
ProcessJson(
const std::string &request,
bool *NeedSave =
nullptr)
1453 const char *canswer = m_dynlib.
ProcessJson(client, request.c_str(), &need_save);
1454 if (!canswer)
return {};
1455 std::string answer(canswer);
1458 *NeedSave=(need_save!=0);
1476 return std::make_shared<CClient>(instance, m_dynlib);
1498 template<
typename T>
1499 unsigned int AddAudio(
const T* payload,
unsigned int nFrame)
1504 template<
typename T>
1505 unsigned int GetAudio(T* payload,
unsigned int max_nFrame)
1515 std::thread update_thread;
1516 std::vector< std::pair<std::string,std::string> > init_metadata;
1517#if BIGVOICE_HAS_WEBSERVER
1530 std::string content=preset_loader->
Read(filename);
1531 return strdup(content.c_str());
1534 if (!content)
return;
1539 auto res=preset_loader->
Write(filename,content);
1544 auto res=preset_loader->
Exists(filename);
1549 auto res=preset_loader->
GetAll();
1551 for (
size_t n=0;n<res.size();n++) {
1552 all[n]=fs_strdup(res[n].c_str());
1554 all[res.size()]=
nullptr;
1559 for (
fs_char** one=all;*one;one++) {
1566 auto res=preset_loader->
Remove(filename);
1571 auto res=preset_loader->
Rename(from,to);
bigvoice_CBus * Get() const
Dynamic library interface.
helper::DynFuncHolder< decltype(bigvoice_FreeParameterValue) > FreeParameterValue
helper::DynFuncHolder< decltype(bigvoice_AudioMonoFromLiveStereo) > AudioMonoFromLiveStereo
helper::DynFuncHolder< decltype(bigvoice_Webserver_FreeString) > Webserver_FreeString
helper::DynFuncHolder< decltype(bigvoice_GetAudio) > GetAudio
helper::DynFuncHolder< decltype(bigvoice_GetSampleRate) > GetSampleRate
helper::DynFuncHolder< decltype(bigvoice_ProcessJson) > ProcessJson
helper::DynFuncHolder< decltype(bigvoice_NewClient) > NewClient
helper::DynFuncHolder< decltype(bigvoice_GetBufferOut) > GetBufferOut
helper::DynFuncHolder< decltype(bigvoice_WaitUpdateThreadReady) > WaitUpdateThreadReady
helper::DynFuncHolder< decltype(bigvoice_AudioMonoToLiveStereo) > AudioMonoToLiveStereo
helper::DynFuncHolder< decltype(bigvoice_Webserver_Stop) > Webserver_Stop
helper::DynFuncHolder< decltype(bigvoice_InitProcess3) > InitProcess3
helper::DynFuncHolder< decltype(bigvoice_GetMaxPacketFrame) > GetMaxPacketFrame
helper::DynFuncHolder< decltype(bigvoice_FreeBus) > FreeBus
helper::DynFuncHolder< decltype(bigvoice_InitProcess) > InitProcess
helper::DynFuncHolder< decltype(bigvoice_GetFormatFromName) > GetFormatFromName
helper::DynFuncHolder< decltype(bigvoice_GetVersion) > GetVersion
helper::DynFuncHolder< decltype(bigvoice_SetParameter) > SetParameter
helper::DynFuncHolder< decltype(bigvoice_NewParameters) > NewParameters
helper::DynFuncHolder< decltype(bigvoice_SetLoggerCallback) > SetLoggerCallback
helper::DynFuncHolder< decltype(bigvoice_SetInstanceBus) > SetInstanceBus
helper::DynFuncHolder< decltype(bigvoice_ProcessAudio_Planar) > ProcessAudio_Planar
helper::DynFuncHolder< decltype(bigvoice_AudioConvertTo) > AudioConvertTo
helper::DynFuncHolder< decltype(bigvoice_Webserver) > Webserver
helper::DynFuncHolder< decltype(bigvoice_ExitProcess) > ExitProcess
helper::DynFuncHolder< decltype(bigvoice_SetLogSeverity) > SetLogSeverity
bool Load(const std::filesystem::path &path={})
Loads the library.
helper::DynFuncHolder< decltype(bigvoice_GetProcessChunkFrames) > GetProcessChunkFrames
helper::DynFuncHolder< decltype(bigvoice_Webserver_tcp) > Webserver_tcp
helper::DynFuncHolder< decltype(bigvoice_Webserver_tcp2) > Webserver_tcp2
helper::DynFuncHolder< decltype(bigvoice_FreeJsonAnswer) > FreeJsonAnswer
helper::DynFuncHolder< decltype(bigvoice_StartUpdateThread) > StartUpdateThread
helper::DynFuncHolder< decltype(bigvoice_InitProcess2) > InitProcess2
helper::DynFuncHolder< decltype(bigvoice_GetAudioOutputCount) > GetAudioOutputCount
helper::DynFuncHolder< decltype(bigvoice_GetOutputCount) > GetOutputCount
helper::DynFuncHolder< decltype(bigvoice_Webserver_Status) > Webserver_Status
helper::DynFuncHolder< decltype(bigvoice_GetBufferIn) > GetBufferIn
helper::DynFuncHolder< decltype(bigvoice_PresetManager_InformChange) > PresetManager_InformChange
helper::DynFuncHolder< decltype(bigvoice_StereoToMono) > StereoToMono
helper::DynFuncHolder< decltype(bigvoice_StopUpdateThread) > StopUpdateThread
helper::DynFuncHolder< decltype(bigvoice_SetPresetManager) > SetPresetManager
helper::DynFuncHolder< decltype(bigvoice_GetBytesFromFormat) > GetBytesFromFormat
helper::DynFuncHolder< decltype(bigvoice_SaveState) > SaveState
helper::DynFuncHolder< decltype(bigvoice_FreeMetadataInfos) > FreeMetadataInfos
bool IsOk() const
Check if the library was loaded correctly.
helper::DynFuncHolder< decltype(bigvoice_SetMetadata) > SetMetadata
helper::DynFuncHolder< decltype(bigvoice_GetMetadataInfos) > GetMetadataInfos
helper::DynFuncHolder< decltype(bigvoice_AddAudio) > AddAudio
helper::DynFuncHolder< decltype(bigvoice_DeleteClient) > DeleteClient
helper::DynFuncHolder< decltype(bigvoice_ProcessAudio) > ProcessAudio
helper::DynFuncHolder< decltype(bigvoice_AudioConvertFrom) > AudioConvertFrom
helper::DynFuncHolder< decltype(bigvoice_NewBus) > NewBus
helper::DynFuncHolder< decltype(bigvoice_Webserver_GetAppHealth) > Webserver_GetAppHealth
helper::DynFuncHolder< decltype(bigvoice_StereoToMono_Planar) > StereoToMono_Planar
helper::DynFuncHolder< decltype(bigvoice_MonoToStereo) > MonoToStereo
helper::DynFuncHolder< decltype(bigvoice_GetFormatName) > GetFormatName
helper::DynFuncHolder< decltype(bigvoice_MonoToStereo_Planar) > MonoToStereo_Planar
helper::DynFuncHolder< decltype(bigvoice_GetAudioInputCount) > GetAudioInputCount
helper::DynFuncHolder< decltype(bigvoice_AddPadAudio) > AddPadAudio
helper::DynFuncHolder< decltype(bigvoice_SetMetadataMulti) > SetMetadataMulti
helper::DynFuncHolder< decltype(bigvoice_Webserver_SetAppHealth) > Webserver_SetAppHealth
helper::DynFuncHolder< decltype(bigvoice_GetParameter) > GetParameter
helper::DynFuncHolder< decltype(bigvoice_GetChunkSizeInFrames) > GetChunkSizeInFrames
helper::DynFuncHolder< decltype(bigvoice_TerminateProcess) > TerminateProcess
helper::DynFuncHolder< decltype(bigvoice_FreeParameters) > FreeParameters
helper::DynFuncHolder< decltype(bigvoice_GetPossibleChunkSizeInFrames) > GetPossibleChunkSizeInFrames
helper::DynFuncHolder< decltype(bigvoice_GetEstimatedDelay) > GetEstimatedDelay
helper::DynFuncHolder< decltype(bigvoice_GetChannelCount) > GetChannelCount
std::string ProcessJson(const std::string &request, bool *NeedSave=nullptr)
Process a JSON request and returns the answer.
CClient & operator=(const CInstance &)=delete
CClient(const CInstance &)=delete
CClient(bigvoice_CInstance *instance, CDynLib &dynlib)
void SetMetadataMulti(const std::unordered_map< std::string, const char * > &list)
std::array< float, InputSampleSize > & GetBufferIn()
unsigned int AddAudio(const T *payload, unsigned int nFrame)
void SetWebServerAppHealth(int httpcode, const std::string &contenttype, const std::string &content)
void SetBus(const CBus &bus)
void SetMetadata(const std::string &key, const char *value)
CInstance(CDynLib &dynlib)
CInstance(const CInstance &)=delete
void GetWebServerAppHealth(int &httpcode, std::string &contenttype, std::string &content)
void SetParam(const std::string &name, const std::string &value)
std::string GetParam(const std::string &name)
CInstance & operator=(const CInstance &)=delete
unsigned int GetChunkFrames()
std::vector< T > ProcessAnyAudio(const std::vector< T > input)
unsigned int GetAudio(T *payload, unsigned int max_nFrame)
bool StartWebServer(int http_port, int https_port=0)
void ProcessAudio_Planar(float const *const *input, float *const *output)
std::vector< std::tuple< std::string, std::string > > GetMetadataInfos()
std::shared_ptr< CClient > NewClient()
void SetPresetManager(CPresetLoader *preset_manager)
std::array< float, OutputSampleSize > & GetBufferOut()
virtual void OnUpdateThreadStart()
virtual void OnUpdateThreadStop()
bool Create(const std::string &LoginKey, const std::string &RadioName, const std::string &Access_Key_ID, const std::string &Access_Key_Secret, const std::filesystem::path &save_path, int json_port=0, unsigned int frames_per_chunk=12)
void StopWebServer(int timeout_ms=1000)
unsigned int GetEstimatedDelay()
void PresetManager_InformChange(const std::filesystem::path &relative_path, PresetChange_Kind change_kind)
Custom preset handler helper.
virtual std::string Read(const std::filesystem::path &filename)=0
virtual bool Write(const std::filesystem::path &filename, const std::string &content)=0
virtual std::vector< std::filesystem::path > GetAll()=0
virtual bool Exists(const std::filesystem::path &name)=0
virtual bool Remove(const std::filesystem::path &name)=0
virtual ~CPresetLoader()=default
virtual bool IsReadOnly()=0
virtual bool Rename(const std::filesystem::path &from, const std::filesystem::path &to)=0
Helper to load dynamic library.
CDynLoader & operator=(CDynLoader const &)=delete
static std::filesystem::path GetThisLibraryPath(void)
DynFuncHolder< T > GetSymbol(const std::string &name)
CDynLoader(const CDynLoader &)=delete
DynFuncHolder< T > GetSymbol_safe(const std::string &name)
bool Load(const std::filesystem::path &dynlib, uint32_t loadflags=LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR|LOAD_LIBRARY_SEARCH_APPLICATION_DIR|LOAD_LIBRARY_SEARCH_USER_DIRS|LOAD_LIBRARY_SEARCH_SYSTEM32)
CDynLoader(CDynLoader &&)=default
Helper to wrap a function pointer.
DynFuncHolder(DynFunc_t a_ptr)
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)
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)
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)
#define BIGVOICE_SAMPLE_RATE
#define BIGVOICE_CHANNEL_COUNT
unsigned int bigvoice_GetAudioInputCount()
unsigned int bigvoice_GetChannelCount()
void bigvoice_SetLoggerCallback(bigvoice_loggerfn logger)
void bigvoice_SetLogSeverity(enum bigvoice_LogSeverity severity)
#define BIGVOICE_AUDIO_OUTPUT_COUNT
unsigned int bigvoice_GetChunkSizeInFrames()
unsigned int bigvoice_GetAudioOutputCount()
#define BIGVOICE_AUDIO_INPUT_COUNT
const char * bigvoice_GetVersion()
#define BIGVOICE_AUDIOFRAME_COUNT
unsigned int bigvoice_GetSampleRate()
unsigned int * bigvoice_GetPossibleChunkSizeInFrames()
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)
bigvoice_PresetChange_Kind
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_PresetManager_InformChange(struct bigvoice_CInstance *instance, const fs_char *relative_path, enum bigvoice_PresetChange_Kind change_kind)
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)
#define SOUND4_WEBSERVER_HTTPS_OK
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)
#define SOUND4_WEBSERVER_HTTP_OK
void bigvoice_Webserver_FreeString(char *str)
#define SOUND4_INVALID_WEBSERVER_ID
void bigvoice_Webserver_GetAppHealth(struct bigvoice_CInstance *instance, int *httpcode, char **contenttype, char **content)
static void StereoToMono(CDynLib &dynlib, const float *input, float *output, size_t nFrame)
static std::wstring UTF8ToWString(const std::string &str)
static std::string WStringToUTF8(const std::wstring &wstr)
static void MonoToStereo_Planar(CDynLib &dynlib, const float *input, float *outputL, float *outputR, size_t nFrame)
static void MonoToStereo(CDynLib &dynlib, const float *input, float *output, size_t nFrame)
static void AudioMonoFromLiveStereo(CDynLib &dynlib, const uint8_t *payload, float *output)
static void StereoToMono_Planar(CDynLib &dynlib, const float *inputL, const float *inputR, float *output, size_t nFrame)
static void AudioMonoToLiveStereo(CDynLib &dynlib, const float *input, uint8_t *payload)
static void AudioConvertFrom(CDynLib &dynlib, const uint8_t *payload, float *output, size_t nSpl, bigvoice_SampleFormat fmt)
static void AudioConvertTo(CDynLib &dynlib, const float *input, uint8_t *payload, size_t nSpl, bigvoice_SampleFormat fmt)
static void SetLogSeverity(CDynLib &dynlib, LogSeverity severity)
const size_t InputSampleSize
const size_t InputChannels
static unsigned int GetBytesFromFormat(CDynLib &dynlib, const SampleFormat fmt)
static SampleFormat GetFormatFromName(CDynLib &dynlib, const std::string &name)
static constexpr const char * process_name
static constexpr const char * process_shortname
static void SetLoggerCallback(CDynLib &dynlib, log_cb_t cb)
std::function< void(LogSeverity, const std::string &)> log_cb_t
static void _log_cb_c(bigvoice_LogSeverity severity, const char *c_msg)
const size_t OutputSampleSize
const size_t OutputChannels
static std::string GetFormatName(CDynLib &dynlib, const SampleFormat fmt)
static void SanityCheck(CDynLib &dynlib, bool a_bCheckFrames=true)
static unsigned int GetAudioInputCount()
static std::vector< unsigned int > GetPossibleChunkSizeInFrames()
static unsigned int GetSampleRate()
static unsigned int GetChannelCount()
static unsigned int GetAudioOutputCount()
static unsigned int GetChunkSizeInFrames()
static std::string GetVersion()
@ S32_NATIVE
32-bit signed integer, native
@ F32_NATIVE
32-bit floating-point, native
@ S16_NATIVE
16-bit signed integer, native
static int bigvoice_custom_exists(const fs_char *filename, void *userdata)
static int bigvoice_custom_rename(const fs_char *from, const fs_char *to, void *userdata)
static int bigvoice_custom_writer(const fs_char *filename, const char *content, void *userdata)
static fs_char ** bigvoice_custom_getall(void *userdata)
static int bigvoice_custom_remove(const fs_char *filename, void *userdata)
static void bigvoice_custom_reader_free(char *content, void *userdata)
static char * bigvoice_custom_reader(const fs_char *filename, void *userdata)
static void bigvoice_custom_getall_free(fs_char **all, void *userdata)
static int bigvoice_custom_exists(const fs_char *filename, void *userdata)
static int bigvoice_custom_rename(const fs_char *from, const fs_char *to, void *userdata)
static int bigvoice_custom_writer(const fs_char *filename, const char *content, void *userdata)
static fs_char ** bigvoice_custom_getall(void *userdata)
static int bigvoice_custom_remove(const fs_char *filename, void *userdata)
static void bigvoice_custom_reader_free(char *content, void *userdata)
static char * bigvoice_custom_reader(const fs_char *filename, void *userdata)
static void bigvoice_custom_getall_free(fs_char **all, void *userdata)