summaryrefslogtreecommitdiffstats
path: root/multimedia/olive/olive-0.1.2-cacher.patch
blob: e93ed3e52b18094dfcc157055016d1dc09af9afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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() << ")";