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

Side by Side Diff: webrtc/modules/video_coding/main/interface/video_coding_defines.h

Issue 1226143013: Merge methods for configuring NACK/FEC/hybrid. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 5 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
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 23 matching lines...) Expand all
34 #define VCM_OLD_PACKET_ERROR -10 34 #define VCM_OLD_PACKET_ERROR -10
35 #define VCM_NO_FRAME_DECODED -11 35 #define VCM_NO_FRAME_DECODED -11
36 #define VCM_ERROR_REQUEST_SLI -12 36 #define VCM_ERROR_REQUEST_SLI -12
37 #define VCM_NOT_IMPLEMENTED -20 37 #define VCM_NOT_IMPLEMENTED -20
38 38
39 enum { kDefaultStartBitrateKbps = 300 }; 39 enum { kDefaultStartBitrateKbps = 300 };
40 40
41 enum VCMVideoProtection { 41 enum VCMVideoProtection {
42 kProtectionNone, 42 kProtectionNone,
43 kProtectionNack, // Both send-side and receive-side 43 kProtectionNack, // Both send-side and receive-side
44 kProtectionNackSender, // Send-side only
45 kProtectionNackReceiver, // Receive-side only
46 kProtectionFEC, 44 kProtectionFEC,
47 kProtectionNackFEC, 45 kProtectionNackFEC,
48 kProtectionKeyOnLoss, 46 kProtectionKeyOnLoss,
49 kProtectionKeyOnKeyLoss, 47 kProtectionKeyOnKeyLoss,
50 }; 48 };
51 49
52 enum VCMTemporalDecimation { 50 enum VCMTemporalDecimation {
53 kBitrateOverUseDecimation, 51 kBitrateOverUseDecimation,
54 }; 52 };
55 53
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 virtual void RenderBufferSizeMs(int buffer_size_ms) = 0; 194 virtual void RenderBufferSizeMs(int buffer_size_ms) = 0;
197 195
198 protected: 196 protected:
199 virtual ~VCMRenderBufferSizeCallback() { 197 virtual ~VCMRenderBufferSizeCallback() {
200 } 198 }
201 }; 199 };
202 200
203 } // namespace webrtc 201 } // namespace webrtc
204 202
205 #endif // WEBRTC_MODULES_INTERFACE_VIDEO_CODING_DEFINES_H_ 203 #endif // WEBRTC_MODULES_INTERFACE_VIDEO_CODING_DEFINES_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender.cc ('k') | webrtc/modules/video_coding/main/source/media_opt_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698