engage-engine 1.245.90850014 → 1.246.90860015
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/ConfigurationObjects.h +14 -1
- package/lib/darwin.arm64/libengage-shared.dylib +0 -0
- package/lib/darwin.x64/libengage-shared.dylib +0 -0
- package/lib/linux.arm64/libengage-shared.so +0 -0
- package/lib/linux.x64/libengage-shared.so +0 -0
- package/lib/linux.x64/rts-fips.so +0 -0
- package/lib/win32.ia32/engage-shared.dll +0 -0
- package/lib/win32.ia32/rts-fips.dll +0 -0
- package/lib/win32.x64/engage-shared.dll +0 -0
- package/lib/win32.x64/rts-fips.dll +0 -0
- package/package.json +1 -1
|
@@ -5861,6 +5861,13 @@ namespace AppConfigurationObjects
|
|
|
5861
5861
|
/** @brief [Optional, Default: false] Denoise output */
|
|
5862
5862
|
bool denoiseOutput;
|
|
5863
5863
|
|
|
5864
|
+
/** @brief [Optional, Default: false] If true, input audio is written to a PCM file in the data directory */
|
|
5865
|
+
bool saveInputPcm;
|
|
5866
|
+
|
|
5867
|
+
/** @brief [Optional, Default: false] If true, input audio is written to a PCM file in the data directory */
|
|
5868
|
+
bool saveOutputPcm;
|
|
5869
|
+
|
|
5870
|
+
|
|
5864
5871
|
EnginePolicyAudio()
|
|
5865
5872
|
{
|
|
5866
5873
|
clear();
|
|
@@ -5880,6 +5887,8 @@ namespace AppConfigurationObjects
|
|
|
5880
5887
|
outputAgc.clear();
|
|
5881
5888
|
denoiseInput = false;
|
|
5882
5889
|
denoiseOutput = false;
|
|
5890
|
+
saveInputPcm = false;
|
|
5891
|
+
saveOutputPcm = false;
|
|
5883
5892
|
}
|
|
5884
5893
|
};
|
|
5885
5894
|
|
|
@@ -5897,7 +5906,9 @@ namespace AppConfigurationObjects
|
|
|
5897
5906
|
TOJSON_IMPL(inputAgc),
|
|
5898
5907
|
TOJSON_IMPL(outputAgc),
|
|
5899
5908
|
TOJSON_IMPL(denoiseInput),
|
|
5900
|
-
TOJSON_IMPL(denoiseOutput)
|
|
5909
|
+
TOJSON_IMPL(denoiseOutput),
|
|
5910
|
+
TOJSON_IMPL(saveInputPcm),
|
|
5911
|
+
TOJSON_IMPL(saveOutputPcm)
|
|
5901
5912
|
};
|
|
5902
5913
|
}
|
|
5903
5914
|
static void from_json(const nlohmann::json& j, EnginePolicyAudio& p)
|
|
@@ -5916,6 +5927,8 @@ namespace AppConfigurationObjects
|
|
|
5916
5927
|
getOptional<Agc>("outputAgc", p.outputAgc, j);
|
|
5917
5928
|
FROMJSON_IMPL(denoiseInput, bool, false);
|
|
5918
5929
|
FROMJSON_IMPL(denoiseOutput, bool, false);
|
|
5930
|
+
FROMJSON_IMPL(saveInputPcm, bool, false);
|
|
5931
|
+
FROMJSON_IMPL(saveOutputPcm, bool, false);
|
|
5919
5932
|
}
|
|
5920
5933
|
|
|
5921
5934
|
//-----------------------------------------------------------
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED