| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM with nits
destinations[channel_index]
.first(frames_to_process)
.copy_from(sources[channel_index].first(frames_to_process));Isn't this just a channel-wise copy?
```suggestion
destinations[channel_index].copy_from(sources[channel_index]);
```
destination[i] = (source_l[i] + source_r[i]) / 2;Nit: While we're at it... (another type clarify)
```suggestion
destination[i] = (source_l[i] + source_r[i]) * 0.5f;
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
destinations[channel_index]
.first(frames_to_process)
.copy_from(sources[channel_index].first(frames_to_process));Isn't this just a channel-wise copy?
```suggestion
destinations[channel_index].copy_from(sources[channel_index]);
```
I wanted to be explicit about the number of frames that were being copied. If it's not necessary let's fix it in a follow-up.
Nit: type clarify
```suggestion
0.0f);
```
Done.
destination[i] = (source_l[i] + source_r[i]) / 2;Nit: While we're at it... (another type clarify)
```suggestion
destination[i] = (source_l[i] + source_r[i]) * 0.5f;
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/platform/audio/audio_bus.cc
Insertions: 2, Deletions: 2.
The diff is too large to show. Please review the diff.
```
Replace UNSAFE_TODO in AudioBus with safe operations
This should cause no functional change.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |