Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Apr 29, 2024
1 parent 5478bf5 commit 4ebde2e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ Timestamp Thread Type Activity PID

When you start streaming from sender to receiver, you should see information about connected sender in receiver's logs. If you don't, it indicates problems with network connection, e.g. you use incorrect address or port, or a firewall is blocking traffic.

* **Playback shuttering**
* **Playback stuttering**

If you hear shuttering, try increasing target latency on the receiving side. For example, for Roc VAD receiver, try using `--target-latency=200ms` to increase latency to 200 milliseconds.
If you hear stuttering, try increasing target latency on the receiving side. For example, for Roc VAD receiver, try using `--target-latency=200ms` to increase latency to 200 milliseconds.

* **Decreasing latency**

Expand Down
10 changes: 5 additions & 5 deletions driver/index_allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

namespace rocvad {

// Allocates device indicies.
// Keeps indicies small and unique.
// Allocates device indices.
// Keeps indices small and unique.
// Postpones reusing old index for a while.
// Ported from libASPL dispatcher.
class IndexAllocator
Expand Down Expand Up @@ -45,10 +45,10 @@ class IndexAllocator
size_t num_allocated_ = 0;
index_t last_allocated_index_ = 0;

// The maximum value below which we're currently trying to keep indicies.
// The maximum value below which we're currently trying to keep indices.
// If the next index exceeds this value, and there are quite a lot of
// free indicies below the maximum, we'll reuse one of them. Otherwise,
// if there are too little free indicies below the maximum, we'll increase
// free indices below the maximum, we'll reuse one of them. Otherwise,
// if there are too little free indices below the maximum, we'll increase
// the maximum instead.
index_t desired_maximum_index_ = 99;
};
Expand Down
2 changes: 1 addition & 1 deletion tool/cmd_uninstall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool CmdUninstall::execute(const Environment& env)
for (const std::string path : {BuildInfo::driver_bundle_path, BuildInfo::tool_path}) {
if (path == BuildInfo::tool_path && n_err != 0) {
spdlog::warn(
"can't remove \"{}\": Skipping because of previois errors", path);
"can't remove \"{}\": Skipping because of previous errors", path);
n_warn++;
continue;
}
Expand Down

0 comments on commit 4ebde2e

Please sign in to comment.