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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_sender.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 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
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
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 271
272 size_t RTPSender::RtpHeaderExtensionTotalLength() const { 272 size_t RTPSender::RtpHeaderExtensionTotalLength() const {
273 CriticalSectionScoped cs(send_critsect_.get()); 273 CriticalSectionScoped cs(send_critsect_.get());
274 return rtp_header_extension_map_.GetTotalLengthInBytes(); 274 return rtp_header_extension_map_.GetTotalLengthInBytes();
275 } 275 }
276 276
277 int32_t RTPSender::RegisterPayload( 277 int32_t RTPSender::RegisterPayload(
278 const char payload_name[RTP_PAYLOAD_NAME_SIZE], 278 const char payload_name[RTP_PAYLOAD_NAME_SIZE],
279 int8_t payload_number, 279 int8_t payload_number,
280 uint32_t frequency, 280 uint32_t frequency,
281 uint8_t channels, 281 size_t channels,
282 uint32_t rate) { 282 uint32_t rate) {
283 assert(payload_name); 283 assert(payload_name);
284 CriticalSectionScoped cs(send_critsect_.get()); 284 CriticalSectionScoped cs(send_critsect_.get());
285 285
286 std::map<int8_t, RtpUtility::Payload*>::iterator it = 286 std::map<int8_t, RtpUtility::Payload*>::iterator it =
287 payload_type_map_.find(payload_number); 287 payload_type_map_.find(payload_number);
288 288
289 if (payload_type_map_.end() != it) { 289 if (payload_type_map_.end() != it) {
290 // We already use this payload type. 290 // We already use this payload type.
291 RtpUtility::Payload* payload = it->second; 291 RtpUtility::Payload* payload = it->second;
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1849 CriticalSectionScoped lock(send_critsect_.get()); 1849 CriticalSectionScoped lock(send_critsect_.get());
1850 1850
1851 RtpState state; 1851 RtpState state;
1852 state.sequence_number = sequence_number_rtx_; 1852 state.sequence_number = sequence_number_rtx_;
1853 state.start_timestamp = start_timestamp_; 1853 state.start_timestamp = start_timestamp_;
1854 1854
1855 return state; 1855 return state;
1856 } 1856 }
1857 1857
1858 } // namespace webrtc 1858 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender.h ('k') | webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698