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

Unified Diff: webrtc/api/objc/RTCRtpParameters.h

Issue 1885473004: Adding codecs to the RtpParameters returned by an RtpSender. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing minor issues Created 4 years, 8 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/objc/RTCRtpParameters.h
diff --git a/webrtc/api/objc/RTCRtpParameters.h b/webrtc/api/objc/RTCRtpParameters.h
index d38e9ef64749b01bbbbdf522fd9b645cb67c051a..977644f5923ecbd877e67256a4a209ba94bff569 100644
--- a/webrtc/api/objc/RTCRtpParameters.h
+++ b/webrtc/api/objc/RTCRtpParameters.h
@@ -10,6 +10,7 @@
#import <Foundation/Foundation.h>
+#import "webrtc/api/objc/RTCRtpCodecParameters.h"
#import "webrtc/api/objc/RTCRtpEncodingParameters.h"
NS_ASSUME_NONNULL_BEGIN
@@ -19,6 +20,9 @@ NS_ASSUME_NONNULL_BEGIN
/** The currently active encodings in the order of preference. */
@property(nonatomic, copy) NSArray<RTCRtpEncodingParameters *> *encodings;
+/** The negotiated set of send codecs in order of preference. */
+@property(nonatomic, copy) NSArray<RTCRtpCodecParameters*>* codecs;
tkchin_webrtc 2016/04/14 17:52:51 update * spacing (see above)
Taylor Brandstetter 2016/04/14 18:17:22 Done. I think git cl format did this and I didn't
tkchin_webrtc 2016/04/14 18:30:08 Yeah git cl format wrecks ObjC styling.
+
- (instancetype)init NS_DESIGNATED_INITIALIZER;
@end

Powered by Google App Engine
This is Rietveld 408576698