Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/fec_private_tables_random.h

Issue 1506043003: [rtp_rtcp] Lint build/header_guard errors fixed (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/mock/mock_rtp_payload_strategy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/mock/mock_rtp_payload_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698