mirror of https://github.com/procxx/kepka.git
Pause music only when video playback starts.
This commit is contained in:
parent
feb238c5d9
commit
2b7fb7a9a6
|
@ -811,9 +811,7 @@ void OverlayWidget::step_radial(crl::time ms, bool timer) {
|
||||||
const auto streamVideo = ready && (_doc->isAnimation() || _doc->isVideoFile());
|
const auto streamVideo = ready && (_doc->isAnimation() || _doc->isVideoFile());
|
||||||
const auto tryOpenImage = ready && (_doc->size < App::kImageSizeLimit);
|
const auto tryOpenImage = ready && (_doc->size < App::kImageSizeLimit);
|
||||||
if (ready && ((tryOpenImage && !_radial.animating()) || streamVideo)) {
|
if (ready && ((tryOpenImage && !_radial.animating()) || streamVideo)) {
|
||||||
if (_doc->isVideoFile() || _doc->isVideoMessage()) {
|
_streamingStartPaused = false;
|
||||||
_autoplayVideoDocument = _doc;
|
|
||||||
}
|
|
||||||
if (!_doc->data().isEmpty() && streamVideo) {
|
if (!_doc->data().isEmpty() && streamVideo) {
|
||||||
displayDocument(_doc, App::histItemById(_msgid));
|
displayDocument(_doc, App::histItemById(_msgid));
|
||||||
} else {
|
} else {
|
||||||
|
@ -1686,9 +1684,7 @@ void OverlayWidget::showDocument(not_null<DocumentData*> document, HistoryItem *
|
||||||
}
|
}
|
||||||
if (!_animOpacities.isEmpty()) _animOpacities.clear();
|
if (!_animOpacities.isEmpty()) _animOpacities.clear();
|
||||||
|
|
||||||
if (document->isVideoFile() || document->isVideoMessage()) {
|
_streamingStartPaused = false;
|
||||||
_autoplayVideoDocument = document;
|
|
||||||
}
|
|
||||||
displayDocument(document, context);
|
displayDocument(document, context);
|
||||||
preloadData(0);
|
preloadData(0);
|
||||||
activateControls();
|
activateControls();
|
||||||
|
@ -1701,7 +1697,7 @@ void OverlayWidget::displayPhoto(not_null<PhotoData*> photo, HistoryItem *item)
|
||||||
}
|
}
|
||||||
clearStreaming();
|
clearStreaming();
|
||||||
destroyThemePreview();
|
destroyThemePreview();
|
||||||
_doc = _autoplayVideoDocument = nullptr;
|
_doc = nullptr;
|
||||||
_fullScreenVideo = false;
|
_fullScreenVideo = false;
|
||||||
_photo = photo;
|
_photo = photo;
|
||||||
_radial.stop();
|
_radial.stop();
|
||||||
|
@ -1765,10 +1761,6 @@ void OverlayWidget::displayDocument(DocumentData *doc, HistoryItem *item) {
|
||||||
|
|
||||||
refreshMediaViewer();
|
refreshMediaViewer();
|
||||||
|
|
||||||
if (_autoplayVideoDocument && _doc != _autoplayVideoDocument) {
|
|
||||||
_autoplayVideoDocument = nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (documentChanged) {
|
if (documentChanged) {
|
||||||
refreshCaption(item);
|
refreshCaption(item);
|
||||||
}
|
}
|
||||||
|
@ -2234,10 +2226,12 @@ void OverlayWidget::playbackPauseResume() {
|
||||||
clearStreaming();
|
clearStreaming();
|
||||||
initStreaming();
|
initStreaming();
|
||||||
} else if (_streamed->player.finished()) {
|
} else if (_streamed->player.finished()) {
|
||||||
|
_streamingStartPaused = false;
|
||||||
restartAtSeekPosition(0);
|
restartAtSeekPosition(0);
|
||||||
} else if (_streamed->player.paused()) {
|
} else if (_streamed->player.paused()) {
|
||||||
_streamed->player.resume();
|
_streamed->player.resume();
|
||||||
updatePlaybackState();
|
updatePlaybackState();
|
||||||
|
playbackPauseMusic();
|
||||||
} else {
|
} else {
|
||||||
_streamed->player.pause();
|
_streamed->player.pause();
|
||||||
updatePlaybackState();
|
updatePlaybackState();
|
||||||
|
@ -2252,8 +2246,6 @@ void OverlayWidget::playbackPauseResume() {
|
||||||
void OverlayWidget::restartAtSeekPosition(crl::time position) {
|
void OverlayWidget::restartAtSeekPosition(crl::time position) {
|
||||||
Expects(_streamed != nullptr);
|
Expects(_streamed != nullptr);
|
||||||
|
|
||||||
_autoplayVideoDocument = _doc;
|
|
||||||
|
|
||||||
if (videoShown()) {
|
if (videoShown()) {
|
||||||
_streamed->info.video.cover = videoFrame();
|
_streamed->info.video.cover = videoFrame();
|
||||||
_current = Images::PixmapFast(transformVideoFrame(videoFrame()));
|
_current = Images::PixmapFast(transformVideoFrame(videoFrame()));
|
||||||
|
@ -2266,11 +2258,16 @@ void OverlayWidget::restartAtSeekPosition(crl::time position) {
|
||||||
|| options.audioId.type() == AudioMsgId::Type::Unknown) {
|
|| options.audioId.type() == AudioMsgId::Type::Unknown) {
|
||||||
options.mode = Streaming::Mode::Video;
|
options.mode = Streaming::Mode::Video;
|
||||||
options.loop = true;
|
options.loop = true;
|
||||||
|
_streamingPauseMusic = false;
|
||||||
|
} else {
|
||||||
|
_streamingPauseMusic = true;
|
||||||
}
|
}
|
||||||
_streamed->player.play(options);
|
_streamed->player.play(options);
|
||||||
|
if (_streamingStartPaused) {
|
||||||
Player::instance()->pause(AudioMsgId::Type::Voice);
|
_streamed->player.pause();
|
||||||
Player::instance()->pause(AudioMsgId::Type::Song);
|
} else {
|
||||||
|
playbackPauseMusic();
|
||||||
|
}
|
||||||
|
|
||||||
_streamed->info.audio.state.position
|
_streamed->info.audio.state.position
|
||||||
= _streamed->info.video.state.position
|
= _streamed->info.video.state.position
|
||||||
|
@ -2288,6 +2285,7 @@ void OverlayWidget::playbackControlsSeekProgress(crl::time position) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void OverlayWidget::playbackControlsSeekFinished(crl::time position) {
|
void OverlayWidget::playbackControlsSeekFinished(crl::time position) {
|
||||||
|
_streamingStartPaused = false;
|
||||||
restartAtSeekPosition(position);
|
restartAtSeekPosition(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2340,9 +2338,18 @@ void OverlayWidget::playbackResumeOnCall() {
|
||||||
_streamed->resumeOnCallEnd = false;
|
_streamed->resumeOnCallEnd = false;
|
||||||
_streamed->player.resume();
|
_streamed->player.resume();
|
||||||
updatePlaybackState();
|
updatePlaybackState();
|
||||||
|
playbackPauseMusic();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void OverlayWidget::playbackPauseMusic() {
|
||||||
|
if (!_streamingPauseMusic) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Player::instance()->pause(AudioMsgId::Type::Voice);
|
||||||
|
Player::instance()->pause(AudioMsgId::Type::Song);
|
||||||
|
}
|
||||||
|
|
||||||
void OverlayWidget::updatePlaybackState() {
|
void OverlayWidget::updatePlaybackState() {
|
||||||
Expects(_streamed != nullptr);
|
Expects(_streamed != nullptr);
|
||||||
|
|
||||||
|
@ -3092,6 +3099,7 @@ bool OverlayWidget::moveToEntity(const Entity &entity, int preloadDelta) {
|
||||||
setContext(std::nullopt);
|
setContext(std::nullopt);
|
||||||
}
|
}
|
||||||
clearStreaming();
|
clearStreaming();
|
||||||
|
_streamingStartPaused = true;
|
||||||
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
||||||
displayPhoto(*photo, entity.item);
|
displayPhoto(*photo, entity.item);
|
||||||
} else if (auto document = base::get_if<not_null<DocumentData*>>(&entity.data)) {
|
} else if (auto document = base::get_if<not_null<DocumentData*>>(&entity.data)) {
|
||||||
|
|
|
@ -170,6 +170,7 @@ private:
|
||||||
void playbackToggleFullScreen();
|
void playbackToggleFullScreen();
|
||||||
void playbackPauseOnCall();
|
void playbackPauseOnCall();
|
||||||
void playbackResumeOnCall();
|
void playbackResumeOnCall();
|
||||||
|
void playbackPauseMusic();
|
||||||
void playbackWaitingChange(bool waiting);
|
void playbackWaitingChange(bool waiting);
|
||||||
|
|
||||||
void updateOver(QPoint mpos);
|
void updateOver(QPoint mpos);
|
||||||
|
@ -330,7 +331,8 @@ private:
|
||||||
QString _dateText;
|
QString _dateText;
|
||||||
QString _headerText;
|
QString _headerText;
|
||||||
|
|
||||||
DocumentData *_autoplayVideoDocument = nullptr;
|
bool _streamingStartPaused = false;
|
||||||
|
bool _streamingPauseMusic = false;
|
||||||
bool _fullScreenVideo = false;
|
bool _fullScreenVideo = false;
|
||||||
int _fullScreenZoomCache = 0;
|
int _fullScreenZoomCache = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue