| 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 |
| 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ |
| 13 | 13 |
| 14 // This file contains a set of packets masks for the FEC code. The masks in | 14 // This file contains a set of packets masks for the FEC code. The masks in |
| 15 // this table are specifically designed to favor recovery to random loss. | 15 // this table are specifically designed to favor recovery to random loss. |
| 16 // These packet masks are defined to protect up to maximum of 48 media packets. | 16 // These packet masks are defined to protect up to maximum of 48 media packets. |
| 17 | 17 |
| 18 #include "webrtc/typedefs.h" | 18 #include "webrtc/typedefs.h" |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 const uint8_t kMaskRandom10_1[2] = { | 22 const uint8_t kMaskRandom10_1[2] = { |
| (...skipping 24489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24512 kPacketMaskRandom42, | 24512 kPacketMaskRandom42, |
| 24513 kPacketMaskRandom43, | 24513 kPacketMaskRandom43, |
| 24514 kPacketMaskRandom44, | 24514 kPacketMaskRandom44, |
| 24515 kPacketMaskRandom45, | 24515 kPacketMaskRandom45, |
| 24516 kPacketMaskRandom46, | 24516 kPacketMaskRandom46, |
| 24517 kPacketMaskRandom47, | 24517 kPacketMaskRandom47, |
| 24518 kPacketMaskRandom48 | 24518 kPacketMaskRandom48 |
| 24519 }; | 24519 }; |
| 24520 | 24520 |
| 24521 } // namespace | 24521 } // namespace |
| 24522 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_H_ | 24522 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ |
| OLD | NEW |