mirror of https://github.com/procxx/kepka.git
Use full volume for video messages.
Set video volume to VideoVolume in MediaView and to 1 in HistoryGif.
This commit is contained in:
parent
0ff299758a
commit
7312114b75
|
@ -1773,6 +1773,9 @@ int HistoryGif::resizeGetHeight(int width) {
|
||||||
auto roundCorners = (isRound || inWebPage) ? ImageRoundCorner::All : ((isBubbleTop() ? (ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight) : ImageRoundCorner::None)
|
auto roundCorners = (isRound || inWebPage) ? ImageRoundCorner::All : ((isBubbleTop() ? (ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight) : ImageRoundCorner::None)
|
||||||
| ((isBubbleBottom() && _caption.isEmpty()) ? (ImageRoundCorner::BottomLeft | ImageRoundCorner::BottomRight) : ImageRoundCorner::None));
|
| ((isBubbleBottom() && _caption.isEmpty()) ? (ImageRoundCorner::BottomLeft | ImageRoundCorner::BottomRight) : ImageRoundCorner::None));
|
||||||
_gif->start(_thumbw, _thumbh, _width, _height, roundRadius, roundCorners);
|
_gif->start(_thumbw, _thumbh, _width, _height, roundRadius, roundCorners);
|
||||||
|
if (isRound) {
|
||||||
|
Media::Player::mixer()->setVideoVolume(1.);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_width = qMax(_width, gifMaxStatusWidth(_data) + 2 * int32(st::msgDateImgDelta + st::msgDateImgPadding.x()));
|
_width = qMax(_width, gifMaxStatusWidth(_data) + 2 * int32(st::msgDateImgDelta + st::msgDateImgPadding.x()));
|
||||||
|
|
|
@ -72,6 +72,7 @@ namespace Media {
|
||||||
namespace Player {
|
namespace Player {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
constexpr auto kVideoVolumeRound = 10000;
|
||||||
constexpr auto kPreloadSamples = 2LL * 48000; // preload next part if less than 2 seconds remains
|
constexpr auto kPreloadSamples = 2LL * 48000; // preload next part if less than 2 seconds remains
|
||||||
constexpr auto kFadeDuration = TimeMs(500);
|
constexpr auto kFadeDuration = TimeMs(500);
|
||||||
constexpr auto kCheckPlaybackPositionTimeout = TimeMs(100); // 100ms per check audio position
|
constexpr auto kCheckPlaybackPositionTimeout = TimeMs(100); // 100ms per check audio position
|
||||||
|
@ -394,7 +395,7 @@ float64 ComputeVolume(AudioMsgId::Type type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case AudioMsgId::Type::Voice: return suppressAllGain;
|
case AudioMsgId::Type::Voice: return suppressAllGain;
|
||||||
case AudioMsgId::Type::Song: return suppressSongGain * Global::SongVolume();
|
case AudioMsgId::Type::Song: return suppressSongGain * Global::SongVolume();
|
||||||
case AudioMsgId::Type::Video: return suppressSongGain * Global::VideoVolume();
|
case AudioMsgId::Type::Video: return suppressSongGain * mixer()->getVideoVolume();
|
||||||
}
|
}
|
||||||
return 1.;
|
return 1.;
|
||||||
}
|
}
|
||||||
|
@ -553,7 +554,8 @@ void Mixer::Track::resetStream() {
|
||||||
}
|
}
|
||||||
|
|
||||||
Mixer::Mixer()
|
Mixer::Mixer()
|
||||||
: _fader(new Fader(&_faderThread))
|
: _videoVolume(kVideoVolumeRound)
|
||||||
|
, _fader(new Fader(&_faderThread))
|
||||||
, _loader(new Loaders(&_loaderThread)) {
|
, _loader(new Loaders(&_loaderThread)) {
|
||||||
connect(this, SIGNAL(faderOnTimer()), _fader, SLOT(onTimer()), Qt::QueuedConnection);
|
connect(this, SIGNAL(faderOnTimer()), _fader, SLOT(onTimer()), Qt::QueuedConnection);
|
||||||
connect(this, SIGNAL(suppressSong()), _fader, SLOT(onSuppressSong()));
|
connect(this, SIGNAL(suppressSong()), _fader, SLOT(onSuppressSong()));
|
||||||
|
@ -1234,6 +1236,14 @@ void Mixer::reattachTracks() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Mixer::setVideoVolume(float64 volume) {
|
||||||
|
_videoVolume.storeRelease(qRound(volume * kVideoVolumeRound));
|
||||||
|
}
|
||||||
|
|
||||||
|
float64 Mixer::getVideoVolume() const {
|
||||||
|
return float64(_videoVolume.loadAcquire()) / kVideoVolumeRound;
|
||||||
|
}
|
||||||
|
|
||||||
Fader::Fader(QThread *thread) : QObject()
|
Fader::Fader(QThread *thread) : QObject()
|
||||||
, _timer(this)
|
, _timer(this)
|
||||||
, _suppressAllGain(1., 1.)
|
, _suppressAllGain(1., 1.)
|
||||||
|
|
|
@ -122,6 +122,10 @@ public:
|
||||||
void reattachIfNeeded();
|
void reattachIfNeeded();
|
||||||
void reattachTracks();
|
void reattachTracks();
|
||||||
|
|
||||||
|
// Thread safe.
|
||||||
|
void setVideoVolume(float64 volume);
|
||||||
|
float64 getVideoVolume() const;
|
||||||
|
|
||||||
~Mixer();
|
~Mixer();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
@ -208,6 +212,7 @@ private:
|
||||||
Track _songTracks[kTogetherLimit];
|
Track _songTracks[kTogetherLimit];
|
||||||
|
|
||||||
Track _videoTrack;
|
Track _videoTrack;
|
||||||
|
QAtomicInt _videoVolume;
|
||||||
uint64 _lastVideoPlayId = 0;
|
uint64 _lastVideoPlayId = 0;
|
||||||
TimeMs _lastVideoPlaybackWhen = 0;
|
TimeMs _lastVideoPlaybackWhen = 0;
|
||||||
TimeMs _lastVideoPlaybackCorrectedMs = 0;
|
TimeMs _lastVideoPlaybackCorrectedMs = 0;
|
||||||
|
|
|
@ -229,6 +229,8 @@ bool MediaView::gifShown() const {
|
||||||
auto rounding = (_doc && _doc->isRoundVideo()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
auto rounding = (_doc && _doc->isRoundVideo()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
||||||
_gif->start(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All);
|
_gif->start(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All);
|
||||||
const_cast<MediaView*>(this)->_current = QPixmap();
|
const_cast<MediaView*>(this)->_current = QPixmap();
|
||||||
|
updateMixerVideoVolume();
|
||||||
|
Global::RefVideoVolumeChanged().notify();
|
||||||
}
|
}
|
||||||
return true;// _gif->state() != Media::Clip::State::Error;
|
return true;// _gif->state() != Media::Clip::State::Error;
|
||||||
}
|
}
|
||||||
|
@ -647,6 +649,12 @@ void MediaView::showSaveMsgFile() {
|
||||||
File::ShowInFolder(_saveMsgFilename);
|
File::ShowInFolder(_saveMsgFilename);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MediaView::updateMixerVideoVolume() const {
|
||||||
|
if (_doc && (_doc->isVideo() || _doc->isRoundVideo())) {
|
||||||
|
Media::Player::mixer()->setVideoVolume(Global::VideoVolume());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void MediaView::close() {
|
void MediaView::close() {
|
||||||
if (_menu) _menu->hideMenu(true);
|
if (_menu) _menu->hideMenu(true);
|
||||||
if (App::wnd()) {
|
if (App::wnd()) {
|
||||||
|
@ -1571,6 +1579,7 @@ void MediaView::onVideoSeekFinished(TimeMs positionMs) {
|
||||||
|
|
||||||
void MediaView::onVideoVolumeChanged(float64 volume) {
|
void MediaView::onVideoVolumeChanged(float64 volume) {
|
||||||
Global::SetVideoVolume(volume);
|
Global::SetVideoVolume(volume);
|
||||||
|
updateMixerVideoVolume();
|
||||||
Global::RefVideoVolumeChanged().notify();
|
Global::RefVideoVolumeChanged().notify();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -154,6 +154,7 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
void showSaveMsgFile();
|
void showSaveMsgFile();
|
||||||
|
void updateMixerVideoVolume() const;
|
||||||
|
|
||||||
void dropdownHidden();
|
void dropdownHidden();
|
||||||
void updateDocSize();
|
void updateDocSize();
|
||||||
|
|
Loading…
Reference in New Issue