chime-sdk-signaling-cpp/src/audio_video/remote_video_source_info.h (12 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#ifndef CHIME_SIGNALING_REMOTE_VIDEO_SOURCE_INFO_H_
#define CHIME_SIGNALING_REMOTE_VIDEO_SOURCE_INFO_H_
#include "utils/attendee.h"
#include <cstdint>
namespace chime {
/**
* Defines remote video configuration, which builders can modify
* some properties and resubscribe by `UpdateRemoteVideoSubscriptions`
*/
struct RemoteVideoSourceInfo {
Attendee attendee;
/* @unstable */
uint32_t max_bitrate_kbps{};
uint32_t stream_id{};
};
} // namespace chime
#endif // CHIME_SIGNALING_REMOTE_VIDEO_SOURCE_INFO_H_