| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
First batch of changes:
```
find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}'
```
Then:
* Back out `sptr_magic.h` edits
* Change some `friend` clauses
* clang-format the whole thing
* Update checksums in the pybind11 bindings files
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Dividing two ints gives a result that is an int. Adding 0.5f and converting
back to an int gives the original result. This change keeps the current
behavior and doesn't implement the (suspected) desired behavior. If
rounding is desired, the divison should be done as a float, so the 0.5f is
added to a float before truncation.
Signed-off-by: Philip Balister <philip@balister.org>
|
|
|
|
|
|
|
|
| |
This is a mass conversion of existing set_relative_rate(double) calls to
either the set_relative_rate(uint64_t, uint64_t) or
set_inverse_relative_rate(double) calls, where ever easily possible and
appropriate, to improve tag propagation precision for fixed relative
rates.
|
|
|
|
| |
We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
|
|
|
|
|
|
|
|
| |
to not set relative rate."
This reverts commit 0c589a7d8f18c9b6f7daf06ecfe2a90e84a004d2.
Not necessary.
|
|
|
|
|
|
| |
set relative rate.
Whe using blocks of data, this doesn't always make sense (see the threading of the extended encoder and decoder in gr-fec).
|
| |
|
| |
|
|
|