SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
capturer_video_source.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_MEDIA_INTERFACE_CAPTURER_VIDEO_SOURCE_HPP_
6#define SKYWAY_MEDIA_INTERFACE_CAPTURER_VIDEO_SOURCE_HPP_
7
8#include <media/base/adapted_video_track_source.h>
9
10namespace skyway {
11namespace media {
12namespace interface {
13
14class InternalCapturerVideoSource : public rtc::AdaptedVideoTrackSource {
15public:
16 virtual ~InternalCapturerVideoSource() = default;
17};
18
20public:
21 virtual ~CapturerVideoSource() = default;
22
23 virtual rtc::scoped_refptr<InternalCapturerVideoSource> GetSource() = 0;
24};
25
26} // namespace interface
27} // namespace media
28} // namespace skyway
29
30#endif /* SKYWAY_MEDIA_INTERFACE_CAPTURER_VIDEO_SOURCE_HPP_ */
Definition capturer_video_source.hpp:19
Definition capturer_video_source.hpp:14