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

Side by Side Diff: webrtc/common_types.h

Issue 2766823004: Delete unused constant kConfigParameterSize. (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 kVideoARGB4444 = 8, 427 kVideoARGB4444 = 8,
428 kVideoARGB1555 = 9, 428 kVideoARGB1555 = 9,
429 kVideoMJPEG = 10, 429 kVideoMJPEG = 10,
430 kVideoNV12 = 11, 430 kVideoNV12 = 11,
431 kVideoNV21 = 12, 431 kVideoNV21 = 12,
432 kVideoBGRA = 13, 432 kVideoBGRA = 13,
433 kVideoUnknown = 99 433 kVideoUnknown = 99
434 }; 434 };
435 435
436 // Video codec 436 // Video codec
437 enum { kConfigParameterSize = 128 };
438 enum { kPayloadNameSize = 32 }; 437 enum { kPayloadNameSize = 32 };
439 enum { kMaxSimulcastStreams = 4 }; 438 enum { kMaxSimulcastStreams = 4 };
440 enum { kMaxSpatialLayers = 5 }; 439 enum { kMaxSpatialLayers = 5 };
441 enum { kMaxTemporalStreams = 4 }; 440 enum { kMaxTemporalStreams = 4 };
442 441
443 enum VideoCodecComplexity { 442 enum VideoCodecComplexity {
444 kComplexityNormal = 0, 443 kComplexityNormal = 0,
445 kComplexityHigh = 1, 444 kComplexityHigh = 1,
446 kComplexityHigher = 2, 445 kComplexityHigher = 2,
447 kComplexityMax = 3 446 kComplexityMax = 3
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 enum class RtcpMode { kOff, kCompound, kReducedSize }; 835 enum class RtcpMode { kOff, kCompound, kReducedSize };
837 836
838 enum NetworkState { 837 enum NetworkState {
839 kNetworkUp, 838 kNetworkUp,
840 kNetworkDown, 839 kNetworkDown,
841 }; 840 };
842 841
843 } // namespace webrtc 842 } // namespace webrtc
844 843
845 #endif // WEBRTC_COMMON_TYPES_H_ 844 #endif // WEBRTC_COMMON_TYPES_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698