slackbuilds_ponce/multimedia/olive/olive-0.1.2-cacher.patch
Bloyburt f388a2c154
multimedia/olive: Added (Olive Video Editor)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-08-27 22:50:31 +07:00

24 lines
1.6 KiB
Diff

diff --unified --recursive --text olive-0.1.2-orig/rendering/cacher.cpp olive-0.1.2-new/rendering/cacher.cpp
--- olive-0.1.2-orig/rendering/cacher.cpp 2019-11-11 03:05:02.000000000 -0300
+++ olive-0.1.2-new/rendering/cacher.cpp 2020-06-23 16:08:47.307076532 -0300
@@ -254,7 +254,7 @@
dout << "starting rev_frame";
#endif
rev_frame->nb_samples = 0;
- rev_frame->pts = frame_->pkt_pts;
+ rev_frame->pts = frame_->pts;
}
int offset = rev_frame->nb_samples * av_get_bytes_per_sample(static_cast<AVSampleFormat>(rev_frame->format)) * rev_frame->channels;
#ifdef AUDIOWARNINGS
@@ -277,9 +277,9 @@
/*
#ifdef AUDIOWARNINGS
dout << "time for the end of rev cache" << rev_frame->nb_samples << clip->rev_target << frame_->pts << frame_->pkt_duration << frame_->nb_samples;
- dout << "diff:" << (frame_->pkt_pts + frame_->pkt_duration) - clip->rev_target;
+ dout << "diff:" << (frame_->pts + frame_->pkt_duration) - clip->rev_target;
#endif
- int cutoff = qRound64((((frame_->pkt_pts + frame_->pkt_duration) - reverse_target) * timebase) * audio_output->format().sampleRate());
+ int cutoff = qRound64((((frame_->pts + frame_->pkt_duration) - reverse_target) * timebase) * audio_output->format().sampleRate());
if (cutoff > 0) {
#ifdef AUDIOWARNINGS
dout << "cut off" << cutoff << "samples (rate:" << audio_output->format().sampleRate() << ")";