You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bug made the resampler interpret output zero values as `None`,
producing wrong resampled values when the result of the resampling
function is zero.
Signed-off-by: Leandro Lucarella <[email protected]>
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,6 @@
2
2
3
3
## Bug Fixes
4
4
5
-
- The resampler now properly handles zero values.
5
+
- The resampler now properly handles sending zero values.
6
6
7
-
A bug made the resampler interpret zero values as `None` (or NaN), producing wrong resampled averages.
8
-
9
-
In extreme cases where a long stream of zero values longer than the buffer size was sent, the resampler would just start producing `None` values.
7
+
A bug made the resampler interpret zero values as `None` when generating new samples, so if the result of the resampling is zero, the resampler would just produce `None` values.
0 commit comments