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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 : initial_slope(8.0/512.0), | 706 : initial_slope(8.0/512.0), |
707 initial_offset(0), | 707 initial_offset(0), |
708 initial_e(), | 708 initial_e(), |
709 initial_process_noise(), | 709 initial_process_noise(), |
710 initial_avg_noise(0.0), | 710 initial_avg_noise(0.0), |
711 initial_var_noise(50) { | 711 initial_var_noise(50) { |
712 initial_e[0][0] = 100; | 712 initial_e[0][0] = 100; |
713 initial_e[1][1] = 1e-1; | 713 initial_e[1][1] = 1e-1; |
714 initial_e[0][1] = initial_e[1][0] = 0; | 714 initial_e[0][1] = initial_e[1][0] = 0; |
715 initial_process_noise[0] = 1e-13; | 715 initial_process_noise[0] = 1e-13; |
716 initial_process_noise[1] = 1e-2; | 716 initial_process_noise[1] = 1e-3; |
717 } | 717 } |
718 double initial_slope; | 718 double initial_slope; |
719 double initial_offset; | 719 double initial_offset; |
720 double initial_e[2][2]; | 720 double initial_e[2][2]; |
721 double initial_process_noise[2]; | 721 double initial_process_noise[2]; |
722 double initial_avg_noise; | 722 double initial_avg_noise; |
723 double initial_var_noise; | 723 double initial_var_noise; |
724 }; | 724 }; |
725 | 725 |
726 // This structure will have the information about when packet is actually | 726 // This structure will have the information about when packet is actually |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 uint32_t ssrc) = 0; | 876 uint32_t ssrc) = 0; |
877 }; | 877 }; |
878 | 878 |
879 // RTCP mode to use. Compound mode is described by RFC 4585 and reduced-size | 879 // RTCP mode to use. Compound mode is described by RFC 4585 and reduced-size |
880 // RTCP mode is described by RFC 5506. | 880 // RTCP mode is described by RFC 5506. |
881 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 881 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
882 | 882 |
883 } // namespace webrtc | 883 } // namespace webrtc |
884 | 884 |
885 #endif // WEBRTC_COMMON_TYPES_H_ | 885 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |