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
@ -15,6 +15,7 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include "absl/strings/string_view.h"
|
||||
#include "api/audio_codecs/audio_decoder_factory.h"
|
||||
#include "api/audio_codecs/audio_format.h"
|
||||
#include "api/scoped_refptr.h"
|
||||
@ -41,7 +42,7 @@ class DecoderDatabase {
|
||||
DecoderInfo(const SdpAudioFormat& audio_format,
|
||||
absl::optional<AudioCodecPairId> codec_pair_id,
|
||||
AudioDecoderFactory* factory,
|
||||
const std::string& codec_name);
|
||||
absl::string_view codec_name);
|
||||
explicit DecoderInfo(const SdpAudioFormat& audio_format,
|
||||
absl::optional<AudioCodecPairId> codec_pair_id,
|
||||
AudioDecoderFactory* factory = nullptr);
|
||||
@ -80,9 +81,7 @@ class DecoderDatabase {
|
||||
bool IsRed() const { return subtype_ == Subtype::kRed; }
|
||||
|
||||
// Returns true if the decoder's format is named `name`.
|
||||
bool IsType(const char* name) const;
|
||||
// Returns true if the decoder's format is named `name`.
|
||||
bool IsType(const std::string& name) const;
|
||||
bool IsType(absl::string_view name) const;
|
||||
|
||||
const std::string& get_name() const { return name_; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user