| Index: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| index a2db415bcf82b48a1b962ce002bbd907b8473393..3d911b61562f06da3c763cac9fbdba135c2d0733 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| @@ -201,7 +201,7 @@ void OfflineAudioDestinationHandler::DoOfflineRendering() {
|
| ++channel_index) {
|
| const float* source = render_bus_->Channel(channel_index)->Data();
|
| float* destination =
|
| - render_target_->getChannelData(channel_index)->Data();
|
| + render_target_->getChannelData(channel_index).View()->Data();
|
| memcpy(destination + frames_processed_, source,
|
| sizeof(float) * frames_available_to_copy);
|
| }
|
|
|