Adopt absl::string_view in modules/audio_processing/
Bug: webrtc:13579 Change-Id: Idb05a64cfd16aed68d40cd427a6b516caa5e2077 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/269387 Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Commit-Queue: Ali Tofigh <alito@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37800}
This commit is contained in:

committed by
WebRTC LUCI CQ

parent
13b9f81b23
commit
f3592cb2a2
@ -1654,8 +1654,8 @@ int AudioProcessingImpl::recommended_stream_analog_level_locked() const {
|
||||
bool AudioProcessingImpl::CreateAndAttachAecDump(absl::string_view file_name,
|
||||
int64_t max_log_size_bytes,
|
||||
rtc::TaskQueue* worker_queue) {
|
||||
std::unique_ptr<AecDump> aec_dump = AecDumpFactory::Create(
|
||||
std::string(file_name), max_log_size_bytes, worker_queue);
|
||||
std::unique_ptr<AecDump> aec_dump =
|
||||
AecDumpFactory::Create(file_name, max_log_size_bytes, worker_queue);
|
||||
if (!aec_dump) {
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user