41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/telegram/td_api.h"
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
namespace td {
|
|
|
|
class GroupCallVideoPayload {
|
|
struct GroupCallVideoSourceGroup {
|
|
string semantics_;
|
|
vector<int32> source_ids_;
|
|
};
|
|
|
|
vector<GroupCallVideoSourceGroup> source_groups_;
|
|
string endpoint_;
|
|
bool is_paused_ = false;
|
|
|
|
friend bool operator==(const GroupCallVideoPayload &lhs, const GroupCallVideoPayload &rhs);
|
|
|
|
public:
|
|
GroupCallVideoPayload() = default;
|
|
|
|
explicit GroupCallVideoPayload(const telegram_api::groupCallParticipantVideo *video);
|
|
|
|
bool is_empty() const;
|
|
|
|
td_api::object_ptr<td_api::groupCallParticipantVideoInfo> get_group_call_participant_video_info_object() const;
|
|
};
|
|
|
|
bool operator==(const GroupCallVideoPayload &lhs, const GroupCallVideoPayload &rhs);
|
|
|
|
} // namespace td
|