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
@ -16,6 +16,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "absl/strings/string_view.h"
|
||||
#include "absl/types/optional.h"
|
||||
#include "modules/audio_coding/neteq/tools/neteq_input.h"
|
||||
#include "modules/audio_coding/neteq/tools/neteq_test.h"
|
||||
@ -45,12 +46,12 @@ class NetEqDelayAnalyzer : public test::NetEqPostInsertPacket,
|
||||
// Creates a matlab script with file name script_name. When executed in
|
||||
// Matlab, the script will generate graphs with the same timing information
|
||||
// as provided by CreateGraphs.
|
||||
void CreateMatlabScript(const std::string& script_name) const;
|
||||
void CreateMatlabScript(absl::string_view script_name) const;
|
||||
|
||||
// Creates a python script with file name `script_name`. When executed in
|
||||
// Python, the script will generate graphs with the same timing information
|
||||
// as provided by CreateGraphs.
|
||||
void CreatePythonScript(const std::string& script_name) const;
|
||||
void CreatePythonScript(absl::string_view script_name) const;
|
||||
|
||||
private:
|
||||
struct TimingData {
|
||||
|
||||
Reference in New Issue
Block a user