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

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

Issue 1551813002: Storing raw audio sink for default audio track. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Adding unit tests for SetRawAudioSink. Created 4 years, 11 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) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 11 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
13 13
14 #include "webrtc/base/scoped_ref_ptr.h"
14 #include "webrtc/base/thread_checker.h" 15 #include "webrtc/base/thread_checker.h"
15 #include "webrtc/voice_engine/channel_manager.h" 16 #include "webrtc/voice_engine/channel_manager.h"
16 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" 17 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
17 18
18 #include <string> 19 #include <string>
19 #include <vector> 20 #include <vector>
20 21
21 namespace webrtc { 22 namespace webrtc {
22 23
23 class AudioSinkInterface; 24 class AudioSinkInterface;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 virtual CallStatistics GetRTCPStatistics() const; 59 virtual CallStatistics GetRTCPStatistics() const;
59 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; 60 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const;
60 virtual NetworkStatistics GetNetworkStatistics() const; 61 virtual NetworkStatistics GetNetworkStatistics() const;
61 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; 62 virtual AudioDecodingCallStats GetDecodingCallStatistics() const;
62 virtual int32_t GetSpeechOutputLevelFullRange() const; 63 virtual int32_t GetSpeechOutputLevelFullRange() const;
63 virtual uint32_t GetDelayEstimate() const; 64 virtual uint32_t GetDelayEstimate() const;
64 65
65 virtual bool SetSendTelephoneEventPayloadType(int payload_type); 66 virtual bool SetSendTelephoneEventPayloadType(int payload_type);
66 virtual bool SendTelephoneEventOutband(uint8_t event, uint32_t duration_ms); 67 virtual bool SendTelephoneEventOutband(uint8_t event, uint32_t duration_ms);
67 68
68 virtual void SetSink(rtc::scoped_ptr<AudioSinkInterface> sink); 69 virtual void SetSink(rtc::scoped_refptr<AudioSinkInterface> sink);
69 70
70 private: 71 private:
71 Channel* channel() const; 72 Channel* channel() const;
72 73
73 rtc::ThreadChecker thread_checker_; 74 rtc::ThreadChecker thread_checker_;
74 ChannelOwner channel_owner_; 75 ChannelOwner channel_owner_;
75 }; 76 };
76 } // namespace voe 77 } // namespace voe
77 } // namespace webrtc 78 } // namespace webrtc
78 79
79 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 80 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698