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

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

Issue 1903663002: Build dynamic iOS SDK. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix test gyp 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
« no previous file with comments | « webrtc/api/objc/RTCPeerConnectionFactory+Private.h ('k') | webrtc/api/objc/RTCRtpCodecParameters.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/objc/RTCRtpCodecParameters.h
diff --git a/webrtc/api/objc/RTCRtpCodecParameters.h b/webrtc/api/objc/RTCRtpCodecParameters.h
deleted file mode 100644
index ec0c647b58f580767bbe94eefeabc2f8a6beb144..0000000000000000000000000000000000000000
--- a/webrtc/api/objc/RTCRtpCodecParameters.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright 2016 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#import <Foundation/Foundation.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-extern const NSString * const kRtxCodecMimeType;
-extern const NSString * const kRedCodecMimeType;
-extern const NSString * const kUlpfecCodecMimeType;
-extern const NSString * const kOpusCodecMimeType;
-extern const NSString * const kIsacCodecMimeType;
-extern const NSString * const kL16CodecMimeType;
-extern const NSString * const kG722CodecMimeType;
-extern const NSString * const kIlbcCodecMimeType;
-extern const NSString * const kPcmuCodecMimeType;
-extern const NSString * const kPcmaCodecMimeType;
-extern const NSString * const kDtmfCodecMimeType;
-extern const NSString * const kComfortNoiseCodecMimeType;
-extern const NSString * const kVp8CodecMimeType;
-extern const NSString * const kVp9CodecMimeType;
-extern const NSString * const kH264CodecMimeType;
-
-/** Defined in http://w3c.github.io/webrtc-pc/#idl-def-RTCRtpCodecParameters */
-@interface RTCRtpCodecParameters : NSObject
-
-/** The RTP payload type. */
-@property(nonatomic, assign) int payloadType;
-
-/**
- * The codec MIME type. Valid types are listed in:
- * http://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml#rtp-parameters-2
- *
- * Several supported types are represented by the constants above.
- */
-@property(nonatomic, nonnull) NSString *mimeType;
-
-/** The codec clock rate expressed in Hertz. */
-@property(nonatomic, assign) int clockRate;
-
-/** The number of channels (mono=1, stereo=2). */
-@property(nonatomic, assign) int channels;
-
-- (instancetype)init NS_DESIGNATED_INITIALIZER;
-
-@end
-
-NS_ASSUME_NONNULL_END
« no previous file with comments | « webrtc/api/objc/RTCPeerConnectionFactory+Private.h ('k') | webrtc/api/objc/RTCRtpCodecParameters.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698