blob: 50488dd2c6011d336abe9bba277e10f646467e53 [file] [log] [blame]
ossu7bb87ee2017-01-23 12:56:251/*
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
Mirko Bonadei92ea95e2017-09-15 04:47:3111#ifndef PC_VIDEOTRACKSOURCE_H_
12#define PC_VIDEOTRACKSOURCE_H_
ossu7bb87ee2017-01-23 12:56:2513
Mirko Bonadei92ea95e2017-09-15 04:47:3114#include "api/mediastreaminterface.h"
15#include "api/notifier.h"
Niels Möllerc6ce9c52018-05-11 09:15:3016#include "api/video/video_sink_interface.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3117#include "media/base/mediachannel.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3118#include "rtc_base/thread_checker.h"
ossu7bb87ee2017-01-23 12:56:2519
ossu7bb87ee2017-01-23 12:56:2520namespace webrtc {
21
Niels Möller5d67f822018-05-23 14:28:1722// VideoTrackSource is a convenience base class for implementations of
23// VideoTrackSourceInterface.
ossu7bb87ee2017-01-23 12:56:2524class VideoTrackSource : public Notifier<VideoTrackSourceInterface> {
25 public:
Niels Möller5d67f822018-05-23 14:28:1726 explicit VideoTrackSource(bool remote);
ossu7bb87ee2017-01-23 12:56:2527 void SetState(SourceState new_state);
ossu7bb87ee2017-01-23 12:56:2528
29 SourceState state() const override { return state_; }
30 bool remote() const override { return remote_; }
31
32 bool is_screencast() const override { return false; }
Danil Chapovalov66cadcc2018-06-19 14:47:4333 absl::optional<bool> needs_denoising() const override {
34 return absl::nullopt;
35 }
ossu7bb87ee2017-01-23 12:56:2536
37 bool GetStats(Stats* stats) override { return false; }
38
39 void AddOrUpdateSink(rtc::VideoSinkInterface<VideoFrame>* sink,
40 const rtc::VideoSinkWants& wants) override;
41 void RemoveSink(rtc::VideoSinkInterface<VideoFrame>* sink) override;
42
Niels Möller5d67f822018-05-23 14:28:1743 protected:
Niels Möllerc17ca532018-05-31 13:36:4944 virtual rtc::VideoSourceInterface<VideoFrame>* source() = 0;
Niels Möller5d67f822018-05-23 14:28:1745
ossu7bb87ee2017-01-23 12:56:2546 private:
47 rtc::ThreadChecker worker_thread_checker_;
ossu7bb87ee2017-01-23 12:56:2548 SourceState state_;
49 const bool remote_;
50};
51
52} // namespace webrtc
53
Mirko Bonadei92ea95e2017-09-15 04:47:3154#endif // PC_VIDEOTRACKSOURCE_H_