fixed fs, updated README
This commit is contained in:
parent
4c5773ca58
commit
e0456a3f89
2 changed files with 5 additions and 3 deletions
|
|
@ -26,4 +26,4 @@ As of writing, publishing will fail if there is already a package in the registr
|
|||
I was unable to figure out how to publish to the private GitLab repo using npm (400 Bad Request). This may just be a bug in npm. For real, this threw me for a loop. I had to switch to Yarn for this reason (v1.22.17). Pulling with npm works fine though (for other repos).
|
||||
|
||||
### TODO
|
||||
Sign on build
|
||||
Sign on build
|
||||
|
|
|
|||
|
|
@ -30,9 +30,11 @@ double setParameters( int type,
|
|||
parameters->suggestedLatency = deviceInfo->defaultHighInputLatency;
|
||||
|
||||
printf(" Device: %s\n", deviceInfo->name);
|
||||
printf(" SampleRate: %i\n", (int) deviceInfo->defaultSampleRate);
|
||||
// printf(" SampleRate: %i\n", (int) deviceInfo->defaultSampleRate);
|
||||
printf(" SampleRate: %i\n", 16000);
|
||||
|
||||
return deviceInfo->defaultSampleRate;
|
||||
/* return deviceInfo->defaultSampleRate; */
|
||||
return 16000;
|
||||
}
|
||||
|
||||
ring_buffer_size_t rbs_min(ring_buffer_size_t a, ring_buffer_size_t b)
|
||||
|
|
|
|||
Loading…
Reference in a new issue