Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(790)

Unified Diff: webrtc/modules/audio_coding/codecs/audio_format.cc

Issue 2351183002: AcmReceiver: Eliminate AcmReceiver::decoders_ (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/codecs/audio_format.cc
diff --git a/webrtc/modules/audio_coding/codecs/audio_format.cc b/webrtc/modules/audio_coding/codecs/audio_format.cc
index 86d5d800422893f95e55f2e890468e4cc4a9448e..e764d773a740a2f63aa625606ae65a4a7dc1084d 100644
--- a/webrtc/modules/audio_coding/codecs/audio_format.cc
+++ b/webrtc/modules/audio_coding/codecs/audio_format.cc
@@ -33,6 +33,11 @@ SdpAudioFormat::~SdpAudioFormat() = default;
SdpAudioFormat& SdpAudioFormat::operator=(const SdpAudioFormat&) = default;
SdpAudioFormat& SdpAudioFormat::operator=(SdpAudioFormat&&) = default;
+bool operator==(const SdpAudioFormat& a, const SdpAudioFormat& b) {
+ return a.name == b.name && a.clockrate_hz == b.clockrate_hz &&
+ a.num_channels == b.num_channels && a.parameters == b.parameters;
kwiberg-webrtc 2016/09/20 15:21:00 Should the .name comparison be case-insensitive?
ossu 2016/09/20 15:30:55 I think it should. We're doing case-insensitive ma
kwiberg-webrtc 2016/09/20 16:30:29 Done.
+}
+
void swap(SdpAudioFormat& a, SdpAudioFormat& b) {
using std::swap;
swap(a.name, b.name);

Powered by Google App Engine
This is Rietveld 408576698