SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
video_renderer.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_MEDIA_INTERFACE_VIDEO_RENDERER_HPP_
6#define SKYWAY_MEDIA_INTERFACE_VIDEO_RENDERER_HPP_
7
8#include <api/media_stream_interface.h>
9
10namespace skyway {
11namespace media {
12namespace interface {
13
14class VideoRenderer : public rtc::VideoSinkInterface<webrtc::VideoFrame> {
15public:
16 virtual ~VideoRenderer() = default;
17};
18
19} // namespace interface
20} // namespace media
21} // namespace skyway
22
23#endif /* SKYWAY_MEDIA_INTERFACE_CAPTURER_VIDEO_SOURCE_HPP_ */
Definition video_renderer.hpp:14