Fix/docker build (#32)

* explicit flags for boost

* remove pragma statements

* remove some logging in mod_azure_tts

* pragma back in

* compile error fixes

* mod_azure_tts: set Playback-File-Type to tts_stream
This commit is contained in:
Dave Horton
2024-04-03 13:49:05 -04:00
committed by GitHub
parent 63e66042af
commit fa4930d53e
6 changed files with 16 additions and 14 deletions
+2
View File
@@ -1,6 +1,7 @@
#include "vector_math.h"
#include <assert.h>
#include <string.h>
#include <cstdlib>
#define GRANULAR_VOLUME_MAX (50)
#define SMAX 32767
@@ -153,6 +154,7 @@ typedef union {
} vector_data_t;
#else
#pragma message("Building without vector math support")
void vector_add(int16_t* a, int16_t* b, size_t len) {
for (size_t i = 0; i < len; i++) {
a[i] += b[i];