1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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/DialogId.h"
#include "td/telegram/Dimensions.h"
#include "td/telegram/files/FileId.h"
#include "td/telegram/Photo.h"
#include "td/telegram/PhotoSize.h"
#include "td/telegram/SecretInputMedia.h"
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/utils/buffer.h"
#include "td/utils/common.h"
#include "td/utils/WaitFreeHashMap.h"
namespace td {
class Td;
class VideosManager {
public:
explicit VideosManager(Td *td);
VideosManager(const VideosManager &) = delete;
VideosManager &operator=(const VideosManager &) = delete;
VideosManager(VideosManager &&) = delete;
VideosManager &operator=(VideosManager &&) = delete;
~VideosManager();
int32 get_video_duration(FileId file_id) const;
const string &get_video_mime_type(FileId file_id) const;
td_api::object_ptr<td_api::video> get_video_object(FileId file_id,
const vector<FileId> &alternative_file_ids = {}) const;
td_api::object_ptr<td_api::storyVideo> get_story_video_object(FileId file_id) const;
td_api::object_ptr<td_api::alternativeVideo> get_alternative_video_object(FileId file_id,
const vector<FileId> &hls_file_ids) const;
void create_video(FileId file_id, string minithumbnail, PhotoSize thumbnail, AnimationSize animated_thumbnail,
bool has_stickers, vector<FileId> &&sticker_file_ids, string file_name, string mime_type,
int32 duration, double precise_duration, Dimensions dimensions, bool supports_streaming,
bool is_animation, int32 preload_prefix_size, double start_ts, string &&codec, bool replace);
tl_object_ptr<telegram_api::InputMedia> get_input_media(
FileId file_id, telegram_api::object_ptr<telegram_api::InputFile> input_file,
telegram_api::object_ptr<telegram_api::InputFile> input_thumbnail, const Photo &cover, int32 start_timestamp,
int32 ttl, bool has_spoiler) const;
telegram_api::object_ptr<telegram_api::InputMedia> get_story_document_input_media(FileId file_id,
double main_frame_timestamp) const;
SecretInputMedia get_secret_input_media(FileId video_file_id,
telegram_api::object_ptr<telegram_api::InputEncryptedFile> input_file,
const string &caption, BufferSlice thumbnail, int32 layer) const;
telegram_api::object_ptr<telegram_api::InputMedia> get_video_cover_input_media(FileId file_id, bool force,
bool allow_external) const;
FileId get_live_photo_video_file_id(telegram_api::object_ptr<telegram_api::Document> document,
DialogId owner_dialog_id, bool is_self_destructing) const;
FileId get_video_thumbnail_file_id(FileId file_id) const;
FileId get_video_animated_thumbnail_file_id(FileId file_id) const;
void delete_video_thumbnail(FileId file_id);
FileId dup_video(FileId new_id, FileId old_id);
void merge_videos(FileId new_id, FileId old_id);
template <class StorerT>
void store_video(FileId file_id, StorerT &storer) const;
template <class ParserT>
FileId parse_video(ParserT &parser);
string get_video_search_text(FileId file_id) const;
private:
class Video {
public:
string file_name;
string mime_type;
int32 duration = 0;
double precise_duration = 0;
Dimensions dimensions;
string minithumbnail;
PhotoSize thumbnail;
AnimationSize animated_thumbnail;
int32 preload_prefix_size = 0;
double start_ts = 0.0;
string codec;
bool supports_streaming = false;
bool is_animation = false;
bool has_stickers = false;
vector<FileId> sticker_file_ids;
FileId file_id;
};
const Video *get_video(FileId file_id) const;
FileId on_get_video(unique_ptr<Video> new_video, bool replace);
Td *td_;
WaitFreeHashMap<FileId, unique_ptr<Video>, FileIdHash> videos_;
};
} // namespace td
|