2018-12-31 20:04:05 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
|
|
|
#include "td/telegram/VideosManager.h"
|
|
|
|
|
2021-05-27 20:15:30 +02:00
|
|
|
#include "td/telegram/AuthManager.h"
|
|
|
|
#include "td/telegram/files/FileManager.h"
|
2022-08-14 14:04:08 +02:00
|
|
|
#include "td/telegram/Global.h"
|
2022-04-09 22:21:07 +02:00
|
|
|
#include "td/telegram/PhotoFormat.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/secret_api.h"
|
2021-05-27 20:15:30 +02:00
|
|
|
#include "td/telegram/Td.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
2022-08-14 14:04:08 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/logging.h"
|
|
|
|
#include "td/utils/misc.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
VideosManager::VideosManager(Td *td) : td_(td) {
|
|
|
|
}
|
|
|
|
|
2022-07-20 12:40:14 +02:00
|
|
|
VideosManager::~VideosManager() {
|
|
|
|
Scheduler::instance()->destroy_on_scheduler(G()->get_gc_scheduler_id(), videos_);
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:14:32 +02:00
|
|
|
int32 VideosManager::get_video_duration(FileId file_id) const {
|
2022-08-03 22:23:32 +02:00
|
|
|
auto video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
return video->duration;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2023-06-05 13:51:32 +02:00
|
|
|
td_api::object_ptr<td_api::video> VideosManager::get_video_object(FileId file_id) const {
|
2018-12-31 20:04:05 +01:00
|
|
|
if (!file_id.is_valid()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-08-03 22:23:32 +02:00
|
|
|
auto video = get_video(file_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
CHECK(video != nullptr);
|
2020-05-31 21:22:15 +02:00
|
|
|
auto thumbnail = video->animated_thumbnail.file_id.is_valid()
|
|
|
|
? get_thumbnail_object(td_->file_manager_.get(), video->animated_thumbnail, PhotoFormat::Mpeg4)
|
|
|
|
: get_thumbnail_object(td_->file_manager_.get(), video->thumbnail, PhotoFormat::Jpeg);
|
2023-06-05 13:51:32 +02:00
|
|
|
return td_api::make_object<td_api::video>(video->duration, video->dimensions.width, video->dimensions.height,
|
|
|
|
video->file_name, video->mime_type, video->has_stickers,
|
|
|
|
video->supports_streaming, get_minithumbnail_object(video->minithumbnail),
|
|
|
|
std::move(thumbnail), td_->file_manager_->get_file_object(file_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::storyVideo> VideosManager::get_story_video_object(FileId file_id) const {
|
|
|
|
if (!file_id.is_valid()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
auto thumbnail = video->animated_thumbnail.file_id.is_valid()
|
|
|
|
? get_thumbnail_object(td_->file_manager_.get(), video->animated_thumbnail, PhotoFormat::Mpeg4)
|
|
|
|
: get_thumbnail_object(td_->file_manager_.get(), video->thumbnail, PhotoFormat::Jpeg);
|
|
|
|
return td_api::make_object<td_api::storyVideo>(
|
|
|
|
video->precise_duration, video->dimensions.width, video->dimensions.height, video->has_stickers,
|
2023-06-23 15:06:02 +02:00
|
|
|
video->is_animation, get_minithumbnail_object(video->minithumbnail), std::move(thumbnail),
|
|
|
|
video->preload_prefix_size, td_->file_manager_->get_file_object(file_id));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
FileId VideosManager::on_get_video(unique_ptr<Video> new_video, bool replace) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto file_id = new_video->file_id;
|
2019-08-01 02:58:49 +02:00
|
|
|
CHECK(file_id.is_valid());
|
2018-01-05 16:50:35 +01:00
|
|
|
LOG(INFO) << "Receive video " << file_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
auto &v = videos_[file_id];
|
|
|
|
if (v == nullptr) {
|
|
|
|
v = std::move(new_video);
|
|
|
|
} else if (replace) {
|
|
|
|
CHECK(v->file_id == new_video->file_id);
|
|
|
|
if (v->mime_type != new_video->mime_type) {
|
|
|
|
LOG(DEBUG) << "Video " << file_id << " MIME type has changed";
|
2022-10-20 00:16:24 +02:00
|
|
|
v->mime_type = std::move(new_video->mime_type);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2023-06-05 13:33:00 +02:00
|
|
|
if (v->duration != new_video->duration || v->precise_duration != new_video->precise_duration ||
|
|
|
|
v->dimensions != new_video->dimensions || v->supports_streaming != new_video->supports_streaming ||
|
2023-06-23 15:06:02 +02:00
|
|
|
v->is_animation != new_video->is_animation || v->preload_prefix_size != new_video->preload_prefix_size) {
|
2018-12-31 20:04:05 +01:00
|
|
|
LOG(DEBUG) << "Video " << file_id << " info has changed";
|
|
|
|
v->duration = new_video->duration;
|
2023-06-05 13:33:00 +02:00
|
|
|
v->precise_duration = new_video->precise_duration;
|
2018-12-31 20:04:05 +01:00
|
|
|
v->dimensions = new_video->dimensions;
|
2018-02-07 00:31:38 +01:00
|
|
|
v->supports_streaming = new_video->supports_streaming;
|
2023-06-23 15:06:02 +02:00
|
|
|
v->is_animation = new_video->is_animation;
|
2023-05-19 13:57:57 +02:00
|
|
|
v->preload_prefix_size = new_video->preload_prefix_size;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (v->file_name != new_video->file_name) {
|
|
|
|
LOG(DEBUG) << "Video " << file_id << " file name has changed";
|
|
|
|
v->file_name = std::move(new_video->file_name);
|
|
|
|
}
|
2019-03-01 20:51:33 +01:00
|
|
|
if (v->minithumbnail != new_video->minithumbnail) {
|
|
|
|
v->minithumbnail = std::move(new_video->minithumbnail);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
if (v->thumbnail != new_video->thumbnail) {
|
|
|
|
if (!v->thumbnail.file_id.is_valid()) {
|
|
|
|
LOG(DEBUG) << "Video " << file_id << " thumbnail has changed";
|
|
|
|
} else {
|
|
|
|
LOG(INFO) << "Video " << file_id << " thumbnail has changed from " << v->thumbnail << " to "
|
|
|
|
<< new_video->thumbnail;
|
|
|
|
}
|
2022-10-20 00:16:24 +02:00
|
|
|
v->thumbnail = std::move(new_video->thumbnail);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2020-05-30 00:48:56 +02:00
|
|
|
if (v->animated_thumbnail != new_video->animated_thumbnail) {
|
|
|
|
if (!v->animated_thumbnail.file_id.is_valid()) {
|
|
|
|
LOG(DEBUG) << "Video " << file_id << " animated thumbnail has changed";
|
|
|
|
} else {
|
|
|
|
LOG(INFO) << "Video " << file_id << " animated thumbnail has changed from " << v->animated_thumbnail << " to "
|
|
|
|
<< new_video->animated_thumbnail;
|
|
|
|
}
|
2022-10-20 00:16:24 +02:00
|
|
|
v->animated_thumbnail = std::move(new_video->animated_thumbnail);
|
2020-05-30 00:48:56 +02:00
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
if (v->has_stickers != new_video->has_stickers && new_video->has_stickers) {
|
|
|
|
v->has_stickers = new_video->has_stickers;
|
|
|
|
}
|
|
|
|
if (v->sticker_file_ids != new_video->sticker_file_ids && !new_video->sticker_file_ids.empty()) {
|
2020-05-29 10:51:51 +02:00
|
|
|
v->sticker_file_ids = std::move(new_video->sticker_file_ids);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return file_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VideosManager::Video *VideosManager::get_video(FileId file_id) const {
|
2022-08-04 09:50:34 +02:00
|
|
|
return videos_.get_pointer(file_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileId VideosManager::get_video_thumbnail_file_id(FileId file_id) const {
|
|
|
|
auto video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
return video->thumbnail.file_id;
|
|
|
|
}
|
|
|
|
|
2020-05-30 00:48:56 +02:00
|
|
|
FileId VideosManager::get_video_animated_thumbnail_file_id(FileId file_id) const {
|
|
|
|
auto video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
return video->animated_thumbnail.file_id;
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void VideosManager::delete_video_thumbnail(FileId file_id) {
|
|
|
|
auto &video = videos_[file_id];
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
video->thumbnail = PhotoSize();
|
2020-07-07 10:41:01 +02:00
|
|
|
video->animated_thumbnail = AnimationSize();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileId VideosManager::dup_video(FileId new_id, FileId old_id) {
|
|
|
|
const Video *old_video = get_video(old_id);
|
|
|
|
CHECK(old_video != nullptr);
|
|
|
|
auto &new_video = videos_[new_id];
|
2022-02-09 22:59:52 +01:00
|
|
|
CHECK(new_video == nullptr);
|
2018-09-27 03:19:03 +02:00
|
|
|
new_video = make_unique<Video>(*old_video);
|
2018-12-31 20:04:05 +01:00
|
|
|
new_video->file_id = new_id;
|
2022-11-21 09:40:43 +01:00
|
|
|
new_video->thumbnail.file_id = td_->file_manager_->dup_file_id(new_video->thumbnail.file_id, "dup_video");
|
|
|
|
new_video->animated_thumbnail.file_id =
|
|
|
|
td_->file_manager_->dup_file_id(new_video->animated_thumbnail.file_id, "dup_video");
|
2018-12-31 20:04:05 +01:00
|
|
|
return new_id;
|
|
|
|
}
|
|
|
|
|
2022-08-03 20:38:03 +02:00
|
|
|
void VideosManager::merge_videos(FileId new_id, FileId old_id) {
|
2021-08-26 17:50:28 +02:00
|
|
|
CHECK(old_id.is_valid() && new_id.is_valid());
|
|
|
|
CHECK(new_id != old_id);
|
2018-01-05 16:50:35 +01:00
|
|
|
|
|
|
|
LOG(INFO) << "Merge videos " << new_id << " and " << old_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
const Video *old_ = get_video(old_id);
|
|
|
|
CHECK(old_ != nullptr);
|
|
|
|
|
2022-08-03 20:58:07 +02:00
|
|
|
const auto *new_ = get_video(new_id);
|
|
|
|
if (new_ == nullptr) {
|
2022-08-03 20:38:03 +02:00
|
|
|
dup_video(new_id, old_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
} else {
|
|
|
|
if (!old_->mime_type.empty() && old_->mime_type != new_->mime_type) {
|
|
|
|
LOG(INFO) << "Video has changed: mime_type = (" << old_->mime_type << ", " << new_->mime_type << ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_->thumbnail != new_->thumbnail) {
|
|
|
|
// LOG_STATUS(td_->file_manager_->merge(new_->thumbnail.file_id, old_->thumbnail.file_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOG_STATUS(td_->file_manager_->merge(new_id, old_id));
|
|
|
|
}
|
|
|
|
|
2020-05-30 00:48:56 +02:00
|
|
|
void VideosManager::create_video(FileId file_id, string minithumbnail, PhotoSize thumbnail,
|
2020-07-07 10:41:01 +02:00
|
|
|
AnimationSize animated_thumbnail, bool has_stickers, vector<FileId> &&sticker_file_ids,
|
2023-06-05 13:33:00 +02:00
|
|
|
string file_name, string mime_type, int32 duration, double precise_duration,
|
2023-06-23 15:06:02 +02:00
|
|
|
Dimensions dimensions, bool supports_streaming, bool is_animation,
|
|
|
|
int32 preload_prefix_size, bool replace) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto v = make_unique<Video>();
|
|
|
|
v->file_id = file_id;
|
|
|
|
v->file_name = std::move(file_name);
|
|
|
|
v->mime_type = std::move(mime_type);
|
2018-02-12 11:37:54 +01:00
|
|
|
v->duration = max(duration, 0);
|
2023-06-05 13:33:00 +02:00
|
|
|
v->precise_duration = duration == 0 ? 0.0 : clamp(precise_duration, duration - 1.0, duration + 0.0);
|
2018-12-31 20:04:05 +01:00
|
|
|
v->dimensions = dimensions;
|
2021-05-27 20:15:30 +02:00
|
|
|
if (!td_->auth_manager_->is_bot()) {
|
|
|
|
v->minithumbnail = std::move(minithumbnail);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
v->thumbnail = std::move(thumbnail);
|
2020-05-30 00:48:56 +02:00
|
|
|
v->animated_thumbnail = std::move(animated_thumbnail);
|
2018-02-07 00:31:38 +01:00
|
|
|
v->supports_streaming = supports_streaming;
|
2023-06-23 15:06:02 +02:00
|
|
|
v->is_animation = is_animation;
|
2023-05-19 13:57:57 +02:00
|
|
|
v->preload_prefix_size = preload_prefix_size;
|
2018-12-31 20:04:05 +01:00
|
|
|
v->has_stickers = has_stickers;
|
|
|
|
v->sticker_file_ids = std::move(sticker_file_ids);
|
|
|
|
on_get_video(std::move(v), replace);
|
|
|
|
}
|
|
|
|
|
|
|
|
SecretInputMedia VideosManager::get_secret_input_media(FileId video_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file,
|
2022-05-11 06:46:06 +02:00
|
|
|
const string &caption, BufferSlice thumbnail,
|
|
|
|
int32 layer) const {
|
2018-12-31 20:04:05 +01:00
|
|
|
const Video *video = get_video(video_file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
auto file_view = td_->file_manager_->get_file_view(video_file_id);
|
2022-05-11 00:53:18 +02:00
|
|
|
if (!file_view.is_encrypted_secret() || file_view.encryption_key().empty()) {
|
2018-12-31 20:04:05 +01:00
|
|
|
return SecretInputMedia{};
|
|
|
|
}
|
|
|
|
if (file_view.has_remote_location()) {
|
2019-11-17 20:41:28 +01:00
|
|
|
input_file = file_view.main_remote_location().as_input_encrypted_file();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (!input_file) {
|
2022-05-11 06:46:06 +02:00
|
|
|
return {};
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (video->thumbnail.file_id.is_valid() && thumbnail.empty()) {
|
|
|
|
return {};
|
|
|
|
}
|
2022-05-11 00:53:18 +02:00
|
|
|
vector<tl_object_ptr<secret_api::DocumentAttribute>> attributes;
|
2022-09-28 11:17:04 +02:00
|
|
|
attributes.emplace_back(make_tl_object<secret_api::documentAttributeVideo>(
|
|
|
|
0, false, video->duration, video->dimensions.width, video->dimensions.height));
|
2022-05-11 00:53:18 +02:00
|
|
|
|
|
|
|
return {std::move(input_file),
|
|
|
|
std::move(thumbnail),
|
|
|
|
video->thumbnail.dimensions,
|
|
|
|
video->mime_type,
|
|
|
|
file_view,
|
|
|
|
std::move(attributes),
|
2022-05-11 06:46:06 +02:00
|
|
|
caption,
|
|
|
|
layer};
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputMedia> VideosManager::get_input_media(
|
|
|
|
FileId file_id, tl_object_ptr<telegram_api::InputFile> input_file,
|
2022-12-20 16:06:21 +01:00
|
|
|
tl_object_ptr<telegram_api::InputFile> input_thumbnail, int32 ttl, bool has_spoiler) const {
|
2018-12-31 20:04:05 +01:00
|
|
|
if (!file_id.is_valid()) {
|
|
|
|
LOG_IF(ERROR, ttl == 0) << "Video has invalid file_id";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto file_view = td_->file_manager_->get_file_view(file_id);
|
|
|
|
if (file_view.is_encrypted()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2019-11-17 20:41:28 +01:00
|
|
|
if (file_view.has_remote_location() && !file_view.main_remote_location().is_web() && input_file == nullptr) {
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 flags = 0;
|
|
|
|
if (ttl != 0) {
|
|
|
|
flags |= telegram_api::inputMediaDocument::TTL_SECONDS_MASK;
|
|
|
|
}
|
2022-12-23 16:27:38 +01:00
|
|
|
if (has_spoiler) {
|
|
|
|
flags |= telegram_api::inputMediaDocument::SPOILER_MASK;
|
|
|
|
}
|
2022-12-08 18:58:37 +01:00
|
|
|
return make_tl_object<telegram_api::inputMediaDocument>(
|
|
|
|
flags, false /*ignored*/, file_view.main_remote_location().as_input_document(), ttl, string());
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (file_view.has_url()) {
|
|
|
|
int32 flags = 0;
|
|
|
|
if (ttl != 0) {
|
|
|
|
flags |= telegram_api::inputMediaDocumentExternal::TTL_SECONDS_MASK;
|
|
|
|
}
|
2022-12-23 16:27:38 +01:00
|
|
|
if (has_spoiler) {
|
|
|
|
flags |= telegram_api::inputMediaDocumentExternal::SPOILER_MASK;
|
|
|
|
}
|
2022-12-08 18:58:37 +01:00
|
|
|
return make_tl_object<telegram_api::inputMediaDocumentExternal>(flags, false /*ignored*/, file_view.url(), ttl);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (input_file != nullptr) {
|
|
|
|
const Video *video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
|
|
|
|
vector<tl_object_ptr<telegram_api::DocumentAttribute>> attributes;
|
2024-01-02 12:51:16 +01:00
|
|
|
{
|
|
|
|
int32 attribute_flags = 0;
|
|
|
|
if (video->supports_streaming) {
|
|
|
|
attribute_flags |= telegram_api::documentAttributeVideo::SUPPORTS_STREAMING_MASK;
|
|
|
|
}
|
|
|
|
if (video->is_animation) {
|
|
|
|
attribute_flags |= telegram_api::documentAttributeVideo::NOSOUND_MASK;
|
|
|
|
}
|
|
|
|
attributes.push_back(make_tl_object<telegram_api::documentAttributeVideo>(
|
|
|
|
attribute_flags, false /*ignored*/, false /*ignored*/, false /*ignored*/, video->precise_duration,
|
|
|
|
video->dimensions.width, video->dimensions.height, 0));
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
if (!video->file_name.empty()) {
|
|
|
|
attributes.push_back(make_tl_object<telegram_api::documentAttributeFilename>(video->file_name));
|
|
|
|
}
|
2020-01-22 22:21:23 +01:00
|
|
|
int32 flags = telegram_api::inputMediaUploadedDocument::NOSOUND_VIDEO_MASK;
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<tl_object_ptr<telegram_api::InputDocument>> added_stickers;
|
|
|
|
if (video->has_stickers) {
|
|
|
|
flags |= telegram_api::inputMediaUploadedDocument::STICKERS_MASK;
|
|
|
|
added_stickers = td_->file_manager_->get_input_documents(video->sticker_file_ids);
|
|
|
|
}
|
|
|
|
string mime_type = video->mime_type;
|
|
|
|
if (!begins_with(mime_type, "video/") || ttl > 0) {
|
|
|
|
mime_type = "video/mp4";
|
|
|
|
}
|
|
|
|
if (ttl != 0) {
|
|
|
|
flags |= telegram_api::inputMediaUploadedDocument::TTL_SECONDS_MASK;
|
|
|
|
}
|
|
|
|
if (input_thumbnail != nullptr) {
|
|
|
|
flags |= telegram_api::inputMediaUploadedDocument::THUMB_MASK;
|
|
|
|
}
|
2022-12-20 16:06:21 +01:00
|
|
|
if (has_spoiler) {
|
2022-12-15 20:41:55 +01:00
|
|
|
flags |= telegram_api::inputMediaUploadedDocument::SPOILER_MASK;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
return make_tl_object<telegram_api::inputMediaUploadedDocument>(
|
2022-12-08 18:58:37 +01:00
|
|
|
flags, false /*ignored*/, false /*ignored*/, false /*ignored*/, std::move(input_file),
|
|
|
|
std::move(input_thumbnail), mime_type, std::move(attributes), std::move(added_stickers), ttl);
|
2019-02-12 02:50:30 +01:00
|
|
|
} else {
|
|
|
|
CHECK(!file_view.has_remote_location());
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
string VideosManager::get_video_search_text(FileId file_id) const {
|
|
|
|
auto *video = get_video(file_id);
|
|
|
|
CHECK(video != nullptr);
|
|
|
|
return video->file_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|