OLD | NEW |
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 CriticalSectionScoped cs(_sendAudioCritsect.get()); | 64 CriticalSectionScoped cs(_sendAudioCritsect.get()); |
65 | 65 |
66 _packetSizeSamples = packetSizeSamples; | 66 _packetSizeSamples = packetSizeSamples; |
67 return 0; | 67 return 0; |
68 } | 68 } |
69 | 69 |
70 int32_t RTPSenderAudio::RegisterAudioPayload( | 70 int32_t RTPSenderAudio::RegisterAudioPayload( |
71 const char payloadName[RTP_PAYLOAD_NAME_SIZE], | 71 const char payloadName[RTP_PAYLOAD_NAME_SIZE], |
72 const int8_t payloadType, | 72 const int8_t payloadType, |
73 const uint32_t frequency, | 73 const uint32_t frequency, |
74 const uint8_t channels, | 74 const size_t channels, |
75 const uint32_t rate, | 75 const uint32_t rate, |
76 RtpUtility::Payload*& payload) { | 76 RtpUtility::Payload*& payload) { |
77 if (RtpUtility::StringCompare(payloadName, "cn", 2)) { | 77 if (RtpUtility::StringCompare(payloadName, "cn", 2)) { |
78 CriticalSectionScoped cs(_sendAudioCritsect.get()); | 78 CriticalSectionScoped cs(_sendAudioCritsect.get()); |
79 // we can have multiple CNG payload types | 79 // we can have multiple CNG payload types |
80 switch (frequency) { | 80 switch (frequency) { |
81 case 8000: | 81 case 8000: |
82 _cngNBPayloadType = payloadType; | 82 _cngNBPayloadType = payloadType; |
83 break; | 83 break; |
84 case 16000: | 84 case 16000: |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 retVal = _rtpSender->SendToNetwork(dtmfbuffer, 4, 12, -1, | 481 retVal = _rtpSender->SendToNetwork(dtmfbuffer, 4, 12, -1, |
482 kAllowRetransmission, | 482 kAllowRetransmission, |
483 PacedSender::kHighPriority); | 483 PacedSender::kHighPriority); |
484 sendCount--; | 484 sendCount--; |
485 | 485 |
486 }while (sendCount > 0 && retVal == 0); | 486 }while (sendCount > 0 && retVal == 0); |
487 | 487 |
488 return retVal; | 488 return retVal; |
489 } | 489 } |
490 } // namespace webrtc | 490 } // namespace webrtc |
OLD | NEW |