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 23 matching lines...) Expand all Loading... |
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 Loading... |
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_ |
OLD | NEW |