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