123456789101112131415161718192021222324252627282930313233 |
- #ifndef TEST_CALL_CONFIG_UTILS_H_
- #define TEST_CALL_CONFIG_UTILS_H_
- #include "call/video_receive_stream.h"
- #include "rtc_base/strings/json.h"
- namespace webrtc {
- namespace test {
- VideoReceiveStream::Config ParseVideoReceiveStreamJsonConfig(
- webrtc::Transport* transport,
- const Json::Value& json);
- Json::Value GenerateVideoReceiveStreamJsonConfig(
- const VideoReceiveStream::Config& config);
- }
- }
- #endif
|