2019-02-13 18:10:18 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Media {
|
|
|
|
|
2019-02-17 11:08:29 +00:00
|
|
|
constexpr auto kTimeUnknown = std::numeric_limits<crl::time>::min();
|
2019-03-13 14:58:50 +00:00
|
|
|
constexpr auto kDurationMax = crl::time(std::numeric_limits<int>::max());
|
|
|
|
constexpr auto kDurationUnavailable = std::numeric_limits<crl::time>::max();
|
2019-02-17 06:54:57 +00:00
|
|
|
|
2019-02-21 16:01:55 +00:00
|
|
|
namespace Audio {
|
|
|
|
bool SupportsSpeedControl();
|
|
|
|
} // namespace Audio
|
|
|
|
|
2019-02-21 11:15:44 +00:00
|
|
|
namespace Streaming {
|
|
|
|
|
2019-02-21 16:01:55 +00:00
|
|
|
inline bool SupportsSpeedControl() {
|
|
|
|
return Media::Audio::SupportsSpeedControl();
|
|
|
|
}
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
class VideoTrack;
|
|
|
|
class AudioTrack;
|
|
|
|
|
2019-02-13 18:10:18 +00:00
|
|
|
enum class Mode {
|
|
|
|
Both,
|
|
|
|
Audio,
|
|
|
|
Video,
|
2019-02-17 06:54:57 +00:00
|
|
|
Inspection,
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
|
|
|
|
2019-02-21 09:17:25 +00:00
|
|
|
struct PlaybackOptions {
|
|
|
|
Mode mode = Mode::Both;
|
|
|
|
crl::time position = 0;
|
|
|
|
float64 speed = 1.; // Valid values between 0.5 and 2.
|
2019-02-28 21:03:25 +00:00
|
|
|
AudioMsgId audioId;
|
2019-02-21 13:40:09 +00:00
|
|
|
bool syncVideoByAudio = true;
|
2019-02-27 11:36:19 +00:00
|
|
|
bool dropStaleFrames = true;
|
2019-03-05 07:40:25 +00:00
|
|
|
bool loop = false;
|
2019-02-21 09:17:25 +00:00
|
|
|
};
|
|
|
|
|
2019-02-17 11:08:29 +00:00
|
|
|
struct TrackState {
|
|
|
|
crl::time position = kTimeUnknown;
|
|
|
|
crl::time receivedTill = kTimeUnknown;
|
2019-02-20 13:28:48 +00:00
|
|
|
crl::time duration = kTimeUnknown;
|
2019-02-17 11:08:29 +00:00
|
|
|
};
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
struct VideoInformation {
|
|
|
|
TrackState state;
|
|
|
|
QSize size;
|
|
|
|
QImage cover;
|
|
|
|
int rotation = 0;
|
2019-02-17 11:08:29 +00:00
|
|
|
};
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
struct AudioInformation {
|
|
|
|
TrackState state;
|
|
|
|
};
|
2019-02-13 18:10:18 +00:00
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
struct Information {
|
|
|
|
VideoInformation video;
|
|
|
|
AudioInformation audio;
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
template <typename Track>
|
|
|
|
struct PreloadedUpdate {
|
|
|
|
crl::time till = kTimeUnknown;
|
2019-02-17 11:08:29 +00:00
|
|
|
};
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
template <typename Track>
|
|
|
|
struct PlaybackUpdate {
|
|
|
|
crl::time position = kTimeUnknown;
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
|
|
|
|
2019-02-20 13:28:48 +00:00
|
|
|
using PreloadedVideo = PreloadedUpdate<VideoTrack>;
|
|
|
|
using UpdateVideo = PlaybackUpdate<VideoTrack>;
|
|
|
|
using PreloadedAudio = PreloadedUpdate<AudioTrack>;
|
|
|
|
using UpdateAudio = PlaybackUpdate<AudioTrack>;
|
|
|
|
|
2019-02-17 06:54:57 +00:00
|
|
|
struct WaitingForData {
|
2019-03-01 11:16:55 +00:00
|
|
|
bool waiting = false;
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
|
|
|
|
2019-02-17 06:54:57 +00:00
|
|
|
struct MutedByOther {
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
2019-02-16 10:29:55 +00:00
|
|
|
|
2019-02-22 11:58:26 +00:00
|
|
|
struct Finished {
|
|
|
|
};
|
|
|
|
|
2019-02-17 06:54:57 +00:00
|
|
|
struct Update {
|
|
|
|
base::variant<
|
|
|
|
Information,
|
2019-02-20 13:28:48 +00:00
|
|
|
PreloadedVideo,
|
2019-02-17 11:08:29 +00:00
|
|
|
UpdateVideo,
|
2019-02-20 13:28:48 +00:00
|
|
|
PreloadedAudio,
|
2019-02-17 11:08:29 +00:00
|
|
|
UpdateAudio,
|
2019-02-17 06:54:57 +00:00
|
|
|
WaitingForData,
|
2019-02-22 11:58:26 +00:00
|
|
|
MutedByOther,
|
|
|
|
Finished> data;
|
2019-02-16 10:29:55 +00:00
|
|
|
};
|
|
|
|
|
2019-03-05 13:56:27 +00:00
|
|
|
enum class Error {
|
|
|
|
OpenFailed,
|
|
|
|
LoadFailed,
|
|
|
|
InvalidData,
|
|
|
|
NotStreamable,
|
2019-02-13 18:10:18 +00:00
|
|
|
};
|
|
|
|
|
2019-02-17 11:08:29 +00:00
|
|
|
struct FrameRequest {
|
|
|
|
QSize resize;
|
|
|
|
QSize outer;
|
|
|
|
ImageRoundRadius radius = ImageRoundRadius();
|
|
|
|
RectParts corners = RectPart::AllCorners;
|
2019-03-26 08:54:51 +00:00
|
|
|
bool strict = true;
|
|
|
|
|
|
|
|
static FrameRequest NonStrict() {
|
|
|
|
auto result = FrameRequest();
|
|
|
|
result.strict = false;
|
|
|
|
return result;
|
|
|
|
}
|
2019-02-17 11:08:29 +00:00
|
|
|
|
|
|
|
bool empty() const {
|
|
|
|
return resize.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const FrameRequest &other) const {
|
|
|
|
return (resize == other.resize)
|
|
|
|
&& (outer == other.outer)
|
|
|
|
&& (radius == other.radius)
|
|
|
|
&& (corners == other.corners);
|
|
|
|
}
|
|
|
|
bool operator!=(const FrameRequest &other) const {
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-13 18:10:18 +00:00
|
|
|
} // namespace Streaming
|
|
|
|
} // namespace Media
|