OLD | NEW |
---|---|
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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
551 }; | 551 }; |
552 | 552 |
553 // Video codec types | 553 // Video codec types |
554 enum VideoCodecType { | 554 enum VideoCodecType { |
555 kVideoCodecVP8, | 555 kVideoCodecVP8, |
556 kVideoCodecVP9, | 556 kVideoCodecVP9, |
557 kVideoCodecH264, | 557 kVideoCodecH264, |
558 kVideoCodecI420, | 558 kVideoCodecI420, |
559 kVideoCodecRED, | 559 kVideoCodecRED, |
560 kVideoCodecULPFEC, | 560 kVideoCodecULPFEC, |
561 kVideoCodecFLEXFEC, | |
stefan-webrtc
2016/11/03 13:56:05
Feel free to break the convention here and write k
| |
561 kVideoCodecGeneric, | 562 kVideoCodecGeneric, |
562 kVideoCodecUnknown | 563 kVideoCodecUnknown |
563 }; | 564 }; |
564 | 565 |
565 union VideoCodecUnion { | 566 union VideoCodecUnion { |
566 VideoCodecVP8 VP8; | 567 VideoCodecVP8 VP8; |
567 VideoCodecVP9 VP9; | 568 VideoCodecVP9 VP9; |
568 VideoCodecH264 H264; | 569 VideoCodecH264 H264; |
569 }; | 570 }; |
570 | 571 |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
837 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 838 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
838 | 839 |
839 enum NetworkState { | 840 enum NetworkState { |
840 kNetworkUp, | 841 kNetworkUp, |
841 kNetworkDown, | 842 kNetworkDown, |
842 }; | 843 }; |
843 | 844 |
844 } // namespace webrtc | 845 } // namespace webrtc |
845 | 846 |
846 #endif // WEBRTC_COMMON_TYPES_H_ | 847 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |