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

Side by Side Diff: webrtc/media/base/rtpdataengine.cc

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 months 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 | « webrtc/media/base/mediaengine.h ('k') | webrtc/media/base/rtpdataengine_unittest.cc » ('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 #include "webrtc/media/base/rtpdataengine.h" 11 #include "webrtc/media/base/rtpdataengine.h"
12 12
13 #include "webrtc/base/copyonwritebuffer.h"
14 #include "webrtc/base/helpers.h"
15 #include "webrtc/base/logging.h"
16 #include "webrtc/base/ratelimiter.h"
17 #include "webrtc/base/stringutils.h"
18 #include "webrtc/media/base/codec.h" 13 #include "webrtc/media/base/codec.h"
19 #include "webrtc/media/base/mediaconstants.h" 14 #include "webrtc/media/base/mediaconstants.h"
20 #include "webrtc/media/base/rtputils.h" 15 #include "webrtc/media/base/rtputils.h"
21 #include "webrtc/media/base/streamparams.h" 16 #include "webrtc/media/base/streamparams.h"
17 #include "webrtc/rtc_base/copyonwritebuffer.h"
18 #include "webrtc/rtc_base/helpers.h"
19 #include "webrtc/rtc_base/logging.h"
20 #include "webrtc/rtc_base/ratelimiter.h"
21 #include "webrtc/rtc_base/stringutils.h"
22 22
23 namespace cricket { 23 namespace cricket {
24 24
25 // We want to avoid IP fragmentation. 25 // We want to avoid IP fragmentation.
26 static const size_t kDataMaxRtpPacketLen = 1200U; 26 static const size_t kDataMaxRtpPacketLen = 1200U;
27 // We reserve space after the RTP header for future wiggle room. 27 // We reserve space after the RTP header for future wiggle room.
28 static const unsigned char kReservedSpace[] = { 28 static const unsigned char kReservedSpace[] = {
29 0x00, 0x00, 0x00, 0x00 29 0x00, 0x00, 0x00, 0x00
30 }; 30 };
31 31
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 *result = SDR_SUCCESS; 337 *result = SDR_SUCCESS;
338 } 338 }
339 return true; 339 return true;
340 } 340 }
341 341
342 rtc::DiffServCodePoint RtpDataMediaChannel::PreferredDscp() const { 342 rtc::DiffServCodePoint RtpDataMediaChannel::PreferredDscp() const {
343 return rtc::DSCP_AF41; 343 return rtc::DSCP_AF41;
344 } 344 }
345 345
346 } // namespace cricket 346 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/media/base/mediaengine.h ('k') | webrtc/media/base/rtpdataengine_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698