Age | Commit message (Collapse) | Author |
|
rearrange the cross-thread load to be the second load; being a little late may cause it to be lucky! (this probably doesn't matter)
|
|
Format all the code under `include` and `src` except those files under
`src/speex` with style setting in `.clang-format` file by the following
script:
```sh
FILE_LIST="$(find "include" "src" -not -path "src/speex/*" | grep -E ".*(\.cpp|\.c|\.h|\.hpp|\.hh)$")"
echo "Files found to format:\n---\n$FILE_LIST\n---"
clang-format --verbose -i $FILE_LIST
```
|
|
|
|
|
|
This allow reseting the consumer/producer thread id in the ring buffer
class, so that we can take into account the change in thread inherent to
the audio devices changes.
This fixes #320.
|
|
This avoid generating unnecessary barriers beyond those that are needed to
provide the required memory consistency.
|
|
|
|
|