blob: ad0fe096195a68c3df8fe48def3c9cd018e7e468 [file] [log] [blame]
ossu7bb87ee2017-01-23 04:56:25 -08001/*
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved.
3 *
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
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.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_VIDEO_TRACK_SOURCE_H_
12#define PC_VIDEO_TRACK_SOURCE_H_
ossu7bb87ee2017-01-23 04:56:25 -080013
Steve Anton10542f22019-01-11 09:11:00 -080014#include "api/media_stream_interface.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020015#include "api/notifier.h"
Niels Möllerc6ce9c52018-05-11 11:15:30 +020016#include "api/video/video_sink_interface.h"
Steve Anton10542f22019-01-11 09:11:00 -080017#include "media/base/media_channel.h"
Mirko Bonadei3b56ee72018-10-15 17:15:12 +020018#include "rtc_base/system/rtc_export.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/thread_checker.h"
ossu7bb87ee2017-01-23 04:56:25 -080020
ossu7bb87ee2017-01-23 04:56:25 -080021namespace webrtc {
22
Niels Möller5d67f822018-05-23 16:28:17 +020023// VideoTrackSource is a convenience base class for implementations of
24// VideoTrackSourceInterface.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +020025class RTC_EXPORT VideoTrackSource : public Notifier<VideoTrackSourceInterface> {
ossu7bb87ee2017-01-23 04:56:25 -080026 public:
Niels Möller5d67f822018-05-23 16:28:17 +020027 explicit VideoTrackSource(bool remote);
ossu7bb87ee2017-01-23 04:56:25 -080028 void SetState(SourceState new_state);
ossu7bb87ee2017-01-23 04:56:25 -080029
30 SourceState state() const override { return state_; }
31 bool remote() const override { return remote_; }
32
33 bool is_screencast() const override { return false; }
Danil Chapovalov66cadcc2018-06-19 16:47:43 +020034 absl::optional<bool> needs_denoising() const override {
35 return absl::nullopt;
36 }
ossu7bb87ee2017-01-23 04:56:25 -080037
38 bool GetStats(Stats* stats) override { return false; }
39
40 void AddOrUpdateSink(rtc::VideoSinkInterface<VideoFrame>* sink,
41 const rtc::VideoSinkWants& wants) override;
42 void RemoveSink(rtc::VideoSinkInterface<VideoFrame>* sink) override;
43
Niels Möller5d67f822018-05-23 16:28:17 +020044 protected:
Niels Möllerc17ca532018-05-31 15:36:49 +020045 virtual rtc::VideoSourceInterface<VideoFrame>* source() = 0;
Niels Möller5d67f822018-05-23 16:28:17 +020046
ossu7bb87ee2017-01-23 04:56:25 -080047 private:
48 rtc::ThreadChecker worker_thread_checker_;
ossu7bb87ee2017-01-23 04:56:25 -080049 SourceState state_;
50 const bool remote_;
51};
52
53} // namespace webrtc
54
Steve Anton10542f22019-01-11 09:11:00 -080055#endif // PC_VIDEO_TRACK_SOURCE_H_