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

Side by Side Diff: webrtc/common_types.h

Issue 2470103002: Add new codec for FlexFEC. (Closed)
Patch Set: Change codec name to 'flexfec-03' and fix tests. Created 4 years, 1 month 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 | « webrtc/api/webrtcsdp.cc ('k') | webrtc/common_video/video_frame.cc » ('j') | 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « webrtc/api/webrtcsdp.cc ('k') | webrtc/common_video/video_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698