Use full volume for video messages.

Set video volume to VideoVolume in MediaView and to 1 in HistoryGif.
This commit is contained in:
John Preston 2017-04-15 22:51:53 +03:00
parent 0ff299758a
commit 7312114b75
5 changed files with 30 additions and 2 deletions

View File

@ -1773,6 +1773,9 @@ int HistoryGif::resizeGetHeight(int width) {
auto roundCorners = (isRound || inWebPage) ? ImageRoundCorner::All : ((isBubbleTop() ? (ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight) : ImageRoundCorner::None)
| ((isBubbleBottom() && _caption.isEmpty()) ? (ImageRoundCorner::BottomLeft | ImageRoundCorner::BottomRight) : ImageRoundCorner::None));
_gif->start(_thumbw, _thumbh, _width, _height, roundRadius, roundCorners);
if (isRound) {
Media::Player::mixer()->setVideoVolume(1.);
}
}
} else {
_width = qMax(_width, gifMaxStatusWidth(_data) + 2 * int32(st::msgDateImgDelta + st::msgDateImgPadding.x()));

View File

@ -72,6 +72,7 @@ namespace Media {
namespace Player {
namespace {
constexpr auto kVideoVolumeRound = 10000;
constexpr auto kPreloadSamples = 2LL * 48000; // preload next part if less than 2 seconds remains
constexpr auto kFadeDuration = TimeMs(500);
constexpr auto kCheckPlaybackPositionTimeout = TimeMs(100); // 100ms per check audio position
@ -394,7 +395,7 @@ float64 ComputeVolume(AudioMsgId::Type type) {
switch (type) {
case AudioMsgId::Type::Voice: return suppressAllGain;
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.;
}
@ -553,7 +554,8 @@ void Mixer::Track::resetStream() {
}
Mixer::Mixer()
: _fader(new Fader(&_faderThread))
: _videoVolume(kVideoVolumeRound)
, _fader(new Fader(&_faderThread))
, _loader(new Loaders(&_loaderThread)) {
connect(this, SIGNAL(faderOnTimer()), _fader, SLOT(onTimer()), Qt::QueuedConnection);
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()
, _timer(this)
, _suppressAllGain(1., 1.)

View File

@ -122,6 +122,10 @@ public:
void reattachIfNeeded();
void reattachTracks();
// Thread safe.
void setVideoVolume(float64 volume);
float64 getVideoVolume() const;
~Mixer();
private slots:
@ -208,6 +212,7 @@ private:
Track _songTracks[kTogetherLimit];
Track _videoTrack;
QAtomicInt _videoVolume;
uint64 _lastVideoPlayId = 0;
TimeMs _lastVideoPlaybackWhen = 0;
TimeMs _lastVideoPlaybackCorrectedMs = 0;

View File

@ -229,6 +229,8 @@ bool MediaView::gifShown() const {
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);
const_cast<MediaView*>(this)->_current = QPixmap();
updateMixerVideoVolume();
Global::RefVideoVolumeChanged().notify();
}
return true;// _gif->state() != Media::Clip::State::Error;
}
@ -647,6 +649,12 @@ void MediaView::showSaveMsgFile() {
File::ShowInFolder(_saveMsgFilename);
}
void MediaView::updateMixerVideoVolume() const {
if (_doc && (_doc->isVideo() || _doc->isRoundVideo())) {
Media::Player::mixer()->setVideoVolume(Global::VideoVolume());
}
}
void MediaView::close() {
if (_menu) _menu->hideMenu(true);
if (App::wnd()) {
@ -1571,6 +1579,7 @@ void MediaView::onVideoSeekFinished(TimeMs positionMs) {
void MediaView::onVideoVolumeChanged(float64 volume) {
Global::SetVideoVolume(volume);
updateMixerVideoVolume();
Global::RefVideoVolumeChanged().notify();
}

View File

@ -154,6 +154,7 @@ private:
};
void showSaveMsgFile();
void updateMixerVideoVolume() const;
void dropdownHidden();
void updateDocSize();