blob: b7ad0aafaabc8a5d241218384ef4c6c385c80ac3 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2011 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_AUDIOTRACK_H_
12#define PC_AUDIOTRACK_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000013
tommi6eca7e32015-12-15 04:27:11 -080014#include <string>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "api/mediastreaminterface.h"
17#include "api/notifier.h"
18#include "pc/mediastreamtrack.h"
19#include "rtc_base/constructormagic.h"
20#include "rtc_base/scoped_ref_ptr.h"
21#include "rtc_base/thread_checker.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000022
23namespace webrtc {
24
tommi6eca7e32015-12-15 04:27:11 -080025class AudioTrack : public MediaStreamTrack<AudioTrackInterface>,
26 public ObserverInterface {
27 protected:
28 // Protected ctor to force use of factory method.
29 AudioTrack(const std::string& label,
30 const rtc::scoped_refptr<AudioSourceInterface>& source);
31 ~AudioTrack() override;
32
henrike@webrtc.org28e20752013-07-10 00:45:36 +000033 public:
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000034 static rtc::scoped_refptr<AudioTrack> Create(
tommi6eca7e32015-12-15 04:27:11 -080035 const std::string& id,
36 const rtc::scoped_refptr<AudioSourceInterface>& source);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000037
tommi6eca7e32015-12-15 04:27:11 -080038 private:
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000039 // MediaStreamTrack implementation.
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000040 std::string kind() const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000041
tommi6eca7e32015-12-15 04:27:11 -080042 // AudioTrackInterface implementation.
43 AudioSourceInterface* GetSource() const override;
44
45 void AddSink(AudioTrackSinkInterface* sink) override;
46 void RemoveSink(AudioTrackSinkInterface* sink) override;
47
48 // ObserverInterface implementation.
49 void OnChanged() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000050
51 private:
tommi6eca7e32015-12-15 04:27:11 -080052 const rtc::scoped_refptr<AudioSourceInterface> audio_source_;
53 rtc::ThreadChecker thread_checker_;
54 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioTrack);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000055};
56
57} // namespace webrtc
58
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020059#endif // PC_AUDIOTRACK_H_