1 /* 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 3 * 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 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ 12 #define MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ 13 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. 16 // These packet masks are defined to protect up to maximum of 48 media packets. 17 18 #include <stdint.h> 19 20 namespace webrtc { 21 namespace fec_private_tables { 22 23 extern const uint8_t kPacketMaskRandomTbl[]; 24 25 } // namespace fec_private_tables 26 } // namespace webrtc 27 #endif // MODULES_RTP_RTCP_SOURCE_FEC_PRIVATE_TABLES_RANDOM_H_ 28