SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
i420_capturer_video_source.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_MEDIA_INTERFACE_I420_CAPTURER_VIDEO_SOURCE_HPP_
6#define SKYWAY_MEDIA_INTERFACE_I420_CAPTURER_VIDEO_SOURCE_HPP_
7
8#include <mutex>
9#include <unordered_set>
10
11#include "skyway/core/stream/remote/video_stream.hpp"
12#include "skyway/media/interface/capturer_video_source.hpp"
13
14namespace skyway {
15namespace media {
16namespace interface {
17
19public:
20 virtual bool Render(int width,
21 int height,
22 const uint8_t* y,
23 const uint8_t* u,
24 const uint8_t* v,
25 int stride_y,
26 int stride_u,
27 int stride_v) = 0;
28};
29
30} // namespace interface
31} // namespace media
32} // namespace skyway
33
34#endif /* SKYWAY_MEDIA_INTERFACE_I420_CAPTURER_VIDEO_SOURCE_HPP_ */
Definition i420_capturer_video_source.hpp:18
Definition capturer_video_source.hpp:14