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

Unified Diff: webrtc/api/rtpparameters.h

Issue 2052233002: Enable passing receive stream ID to the decoder factory. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: pthatcher1's solution implemented Created 4 years, 6 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/api/rtpparameters.h
diff --git a/webrtc/api/rtpparameters.h b/webrtc/api/rtpparameters.h
index 5c79ab4e9df571f1f4ef7c315c6efc4024bae84c..6263d49079fcf0845020ec3f2fe23e992f22b8f4 100644
--- a/webrtc/api/rtpparameters.h
+++ b/webrtc/api/rtpparameters.h
@@ -47,9 +47,10 @@ struct RtpCodecParameters {
struct RtpParameters {
std::vector<RtpEncodingParameters> encodings;
std::vector<RtpCodecParameters> codecs;
+ std::vector<uint32_t> ssrcs;
pthatcher1 2016/06/15 19:40:00 This should match the standard here: http://w3c.g
perkj_webrtc 2016/06/15 20:25:52 Why is this needed?
pthatcher1 2016/06/15 21:08:17 It's part of the standard. If you want an explana
bool operator==(const RtpParameters& o) const {
- return encodings == o.encodings && codecs == o.codecs;
+ return encodings == o.encodings && codecs == o.codecs && ssrcs == o.ssrcs;
}
bool operator!=(const RtpParameters& o) const { return !(*this == o); }
};
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvideodecoderfactory.h » ('j') | webrtc/media/engine/webrtcvideodecoderfactory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698