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

Side by Side Diff: webrtc/voice_engine/channel.h

Issue 2392883002: Multi frequency DTMF support - sender side (Closed)
Patch Set: rebase Created 4 years, 1 month 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 int SetMinimumPlayoutDelay(int delayMs); 279 int SetMinimumPlayoutDelay(int delayMs);
280 int GetPlayoutTimestamp(unsigned int& timestamp); 280 int GetPlayoutTimestamp(unsigned int& timestamp);
281 int SetInitTimestamp(unsigned int timestamp); 281 int SetInitTimestamp(unsigned int timestamp);
282 int SetInitSequenceNumber(short sequenceNumber); 282 int SetInitSequenceNumber(short sequenceNumber);
283 283
284 // VoEVideoSyncExtended 284 // VoEVideoSyncExtended
285 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; 285 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const;
286 286
287 // DTMF 287 // DTMF
288 int SendTelephoneEventOutband(int event, int duration_ms); 288 int SendTelephoneEventOutband(int event, int duration_ms);
289 int SetSendTelephoneEventPayloadType(int payload_type); 289 int SetSendTelephoneEventPayloadType(int payload_type, int payload_frequency);
290 290
291 // VoEAudioProcessingImpl 291 // VoEAudioProcessingImpl
292 int VoiceActivityIndicator(int& activity); 292 int VoiceActivityIndicator(int& activity);
293 293
294 // VoERTP_RTCP 294 // VoERTP_RTCP
295 int SetLocalSSRC(unsigned int ssrc); 295 int SetLocalSSRC(unsigned int ssrc);
296 int GetLocalSSRC(unsigned int& ssrc); 296 int GetLocalSSRC(unsigned int& ssrc);
297 int GetRemoteSSRC(unsigned int& ssrc); 297 int GetRemoteSSRC(unsigned int& ssrc);
298 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id); 298 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id);
299 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id); 299 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id);
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; 545 std::unique_ptr<RateLimiter> retransmission_rate_limiter_;
546 546
547 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. 547 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed.
548 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; 548 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_;
549 }; 549 };
550 550
551 } // namespace voe 551 } // namespace voe
552 } // namespace webrtc 552 } // namespace webrtc
553 553
554 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ 554 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698