Fix GIFs freezing playback.

This commit is contained in:
John Preston 2019-12-21 16:57:06 +03:00
parent a4ea4689a2
commit 621a5cc4ab
5 changed files with 5 additions and 8 deletions

View File

@ -317,7 +317,7 @@ void File::Context::readNextPacket() {
}
void File::Context::handleEndOfFile() {
const auto more = _delegate->fileProcessEndOfFile();
_delegate->fileProcessEndOfFile();
if (_delegate->fileReadMore()) {
_readTillEnd = false;
auto error = FFmpeg::AvErrorWrap(av_seek_frame(

View File

@ -27,12 +27,12 @@ public:
virtual void fileWaitingForData() = 0;
virtual void fileFullInCache(bool fullInCache) = 0;
virtual void fileProcessEndOfFile() = 0;
// Return true if reading and processing more packets is desired.
// Return false if sleeping until 'wake()' is called is desired.
[[nodiscard]] virtual bool fileProcessPackets(
base::flat_map<int, std::vector<FFmpeg::Packet>> &packets) = 0;
// Return true if looping is desired.
[[nodiscard]] virtual bool fileProcessEndOfFile() = 0;
// Also returns true after fileProcessEndOfFile() if looping is desired.
[[nodiscard]] virtual bool fileReadMore() = 0;
};

View File

@ -397,7 +397,7 @@ bool Player::fileProcessPackets(
return fileReadMore();
}
bool Player::fileProcessEndOfFile() {
void Player::fileProcessEndOfFile() {
_waitingForData = false;
_readTillEnd = true;
setDurationByPackets();
@ -420,7 +420,6 @@ bool Player::fileProcessEndOfFile() {
});
_video->process(generateEmptyQueue());
}
return fileReadMore();
}
bool Player::fileReadMore() {

View File

@ -99,7 +99,7 @@ private:
void fileFullInCache(bool fullInCache) override;
bool fileProcessPackets(
base::flat_map<int, std::vector<FFmpeg::Packet>> &packets) override;
bool fileProcessEndOfFile() override;
void fileProcessEndOfFile() override;
bool fileReadMore() override;
// Called from the main thread.

View File

@ -564,7 +564,6 @@ void VideoTrackObject::callReady() {
? _stream.duration
: _syncTimePoint.trackTime;
base::take(_ready)({ data });
LOG(("READY CALLED!"));
}
TimePoint VideoTrackObject::trackTime() const {
@ -906,7 +905,6 @@ crl::time VideoTrack::streamDuration() const {
}
void VideoTrack::process(std::vector<FFmpeg::Packet> &&packets) {
LOG(("PACKETS! (%1)").arg(packets.size()));
_wrapped.with([
packets = std::move(packets)
](Implementation &unwrapped) mutable {