/* * Copyright (c) 2023 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef API_TEST_VIDEO_TEST_VIDEO_TRACK_SOURCE_H_ #define API_TEST_VIDEO_TEST_VIDEO_TRACK_SOURCE_H_ #include #include #include "api/media_stream_interface.h" #include "api/notifier.h" #include "api/sequence_checker.h" #include "api/video/recordable_encoded_frame.h" #include "api/video/video_frame.h" #include "api/video/video_sink_interface.h" #include "api/video/video_source_interface.h" #include "rtc_base/system/no_unique_address.h" #include "rtc_base/thread_annotations.h" namespace webrtc { namespace test { // Video source that can be used as input for tests. class TestVideoTrackSource : public Notifier { public: explicit TestVideoTrackSource( bool remote, std::optional stream_label = std::nullopt); ~TestVideoTrackSource() override = default; void SetState(SourceState new_state); SourceState state() const override; bool remote() const override { return remote_; } bool is_screencast() const override { return false; } std::optional needs_denoising() const override { return std::nullopt; } bool GetStats(Stats* /* stats */) override { return false; } void AddOrUpdateSink(VideoSinkInterface* sink, const VideoSinkWants& wants) override; void RemoveSink(VideoSinkInterface* sink) override; bool SupportsEncodedOutput() const override { return false; } void GenerateKeyFrame() override {} void AddEncodedSink( VideoSinkInterface* /* sink */) override {} void RemoveEncodedSink( VideoSinkInterface* /* sink */) override {} // Starts producing video. virtual void Start() = 0; // Stops producing video. virtual void Stop() = 0; virtual void SetScreencast(bool is_screencast) = 0; // TODO(titovartem): make next 4 methods pure virtual. virtual void SetEnableAdaptation(bool /* enable_adaptation */) {} virtual int GetFrameWidth() const { return 0; } virtual int GetFrameHeight() const { return 0; } virtual void OnOutputFormatRequest(int /* width */, int /* height */, const std::optional& /* max_fps */) {} // Returns stream label for this video source if present. Implementations // may override this method to increase debugability and testability. virtual std::optional GetStreamLabel() { return stream_label_; } protected: virtual VideoSourceInterface* source() = 0; private: const std::optional stream_label_; RTC_NO_UNIQUE_ADDRESS SequenceChecker worker_thread_checker_; RTC_NO_UNIQUE_ADDRESS SequenceChecker signaling_thread_checker_; SourceState state_ RTC_GUARDED_BY(&signaling_thread_checker_); const bool remote_; }; } // namespace test } // namespace webrtc #endif // API_TEST_VIDEO_TEST_VIDEO_TRACK_SOURCE_H_