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

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

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 13 matching lines...) Expand all
24 public: 24 public:
25 RTPSenderAudio(const int32_t id, 25 RTPSenderAudio(const int32_t id,
26 Clock* clock, 26 Clock* clock,
27 RTPSender* rtpSender, 27 RTPSender* rtpSender,
28 RtpAudioFeedback* audio_feedback); 28 RtpAudioFeedback* audio_feedback);
29 virtual ~RTPSenderAudio(); 29 virtual ~RTPSenderAudio();
30 30
31 int32_t RegisterAudioPayload(const char payloadName[RTP_PAYLOAD_NAME_SIZE], 31 int32_t RegisterAudioPayload(const char payloadName[RTP_PAYLOAD_NAME_SIZE],
32 const int8_t payloadType, 32 const int8_t payloadType,
33 const uint32_t frequency, 33 const uint32_t frequency,
34 const uint8_t channels, 34 const size_t channels,
35 const uint32_t rate, 35 const uint32_t rate,
36 RtpUtility::Payload*& payload); 36 RtpUtility::Payload*& payload);
37 37
38 int32_t SendAudio(const FrameType frameType, 38 int32_t SendAudio(const FrameType frameType,
39 const int8_t payloadType, 39 const int8_t payloadType,
40 const uint32_t captureTimeStamp, 40 const uint32_t captureTimeStamp,
41 const uint8_t* payloadData, 41 const uint8_t* payloadData,
42 const size_t payloadSize, 42 const size_t payloadSize,
43 const RTPFragmentationHeader* fragmentation); 43 const RTPFragmentationHeader* fragmentation);
44 44
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 int8_t _cngFBPayloadType GUARDED_BY(_sendAudioCritsect); 103 int8_t _cngFBPayloadType GUARDED_BY(_sendAudioCritsect);
104 int8_t _lastPayloadType GUARDED_BY(_sendAudioCritsect); 104 int8_t _lastPayloadType GUARDED_BY(_sendAudioCritsect);
105 105
106 // Audio level indication 106 // Audio level indication
107 // (https://datatracker.ietf.org/doc/draft-lennox-avt-rtp-audio-level-exthdr/) 107 // (https://datatracker.ietf.org/doc/draft-lennox-avt-rtp-audio-level-exthdr/)
108 uint8_t _audioLevel_dBov GUARDED_BY(_sendAudioCritsect); 108 uint8_t _audioLevel_dBov GUARDED_BY(_sendAudioCritsect);
109 }; 109 };
110 } // namespace webrtc 110 } // namespace webrtc
111 111
112 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_AUDIO_H_ 112 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_AUDIO_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698