Skip to content
Snippets Groups Projects
Commit db336c73 authored by Jonas Stienen's avatar Jonas Stienen
Browse files

Switching to 64 blocks / 128 samples target latency (32 does not work for hammerfall dsp)

parent c5561a1d
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ using namespace std; ...@@ -16,7 +16,7 @@ using namespace std;
string g_sServerName = "localhost"; string g_sServerName = "localhost";
int g_iServerPort = 12480; int g_iServerPort = 12480;
double g_dSampleRate = 44100.0; double g_dSampleRate = 44100.0;
int g_iBlockLength = 32; int g_iBlockLength = 64;
int g_iChannels = 2; int g_iChannels = 2;
int g_iRingBufferSize = 2048; // 22ms max int g_iRingBufferSize = 2048; // 22ms max
double g_dPlaybackDuration = 10; // seconds double g_dPlaybackDuration = 10; // seconds
......
...@@ -13,9 +13,9 @@ using namespace std; ...@@ -13,9 +13,9 @@ using namespace std;
string g_sServerName = "localhost"; string g_sServerName = "localhost";
int g_iServerPort = 12480; int g_iServerPort = 12480;
double g_dSampleRate = 44100.0; double g_dSampleRate = 44100.0;
int g_iBlockLength = 32; int g_iBlockLength = 64;
int g_iChannels = 2; int g_iChannels = 2;
int g_iTargetLatencySamples = 64; // 1.4512ms int g_iTargetLatencySamples = 128; // 1.4512ms
double g_dClientStatusMessageTimeout = 0.1; // seconds double g_dClientStatusMessageTimeout = 0.1; // seconds
string g_sFileName = "gershwin-mono.wav"; string g_sFileName = "gershwin-mono.wav";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment