SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
util.hpp
1//
2// util.hpp
3// skyway
4//
5// Created by Muranaka Kei on 2024/09/18.
6// Copyright © 2024 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_
10#define SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_
11
12#include <api/stats/rtc_stats_report.h>
13
14#include <json.hpp>
15
16namespace skyway {
17namespace plugin {
18namespace remote_person {
19namespace connection {
20namespace util {
21
22const std::optional<nlohmann::json> StatsToJson(
23 const rtc::scoped_refptr<const webrtc::RTCStatsReport>& report);
24
25} // namespace util
26} // namespace connection
27} // namespace remote_person
28} // namespace plugin
29} // namespace skyway
30
31#endif /* SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_ */