| Index: webrtc/media/base/mediachannel.h
|
| diff --git a/webrtc/media/base/mediachannel.h b/webrtc/media/base/mediachannel.h
|
| index 5e0f2d8bc2d6101058bf7a6193a5b618ca3fd5f7..e8c3f942fa573483f7ff4b5a479e222c7b21d5cc 100644
|
| --- a/webrtc/media/base/mediachannel.h
|
| +++ b/webrtc/media/base/mediachannel.h
|
| @@ -188,6 +188,7 @@ struct AudioOptions {
|
| playout_sample_rate == o.playout_sample_rate &&
|
| combined_audio_video_bwe == o.combined_audio_video_bwe;
|
| }
|
| + bool operator!=(const AudioOptions& o) const { return !(*this == o); }
|
|
|
| std::string ToString() const {
|
| std::ostringstream ost;
|
| @@ -279,6 +280,7 @@ struct VideoOptions {
|
| screencast_min_bitrate_kbps == o.screencast_min_bitrate_kbps &&
|
| is_screencast == o.is_screencast;
|
| }
|
| + bool operator!=(const VideoOptions& o) const { return !(*this == o); }
|
|
|
| std::string ToString() const {
|
| std::ostringstream ost;
|
|
|