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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 virtual void RenderBufferSizeMs(int buffer_size_ms) = 0; | 192 virtual void RenderBufferSizeMs(int buffer_size_ms) = 0; |
195 | 193 |
196 protected: | 194 protected: |
197 virtual ~VCMRenderBufferSizeCallback() { | 195 virtual ~VCMRenderBufferSizeCallback() { |
198 } | 196 } |
199 }; | 197 }; |
200 | 198 |
201 } // namespace webrtc | 199 } // namespace webrtc |
202 | 200 |
203 #endif // WEBRTC_MODULES_INTERFACE_VIDEO_CODING_DEFINES_H_ | 201 #endif // WEBRTC_MODULES_INTERFACE_VIDEO_CODING_DEFINES_H_ |
OLD | NEW |