Adopt absl::string_view in modules/audio_coding/
Bug: webrtc:13579 Change-Id: Ifec66fb6ba9724d18539de7245a358c2d13c7939 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/268547 Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org> Commit-Queue: Ali Tofigh <alito@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37573}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
761072f68e
commit
714e3cbb48
@ -10,14 +10,15 @@
|
||||
|
||||
#include "modules/audio_coding/neteq/tools/input_audio_file.h"
|
||||
|
||||
#include "absl/strings/string_view.h"
|
||||
#include "rtc_base/checks.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace test {
|
||||
|
||||
InputAudioFile::InputAudioFile(const std::string file_name, bool loop_at_end)
|
||||
InputAudioFile::InputAudioFile(absl::string_view file_name, bool loop_at_end)
|
||||
: loop_at_end_(loop_at_end) {
|
||||
fp_ = fopen(file_name.c_str(), "rb");
|
||||
fp_ = fopen(std::string(file_name).c_str(), "rb");
|
||||
RTC_DCHECK(fp_) << file_name << " could not be opened.";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user