summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-11-30 21:10:13 +0100
committerCarl Hetherington <cth@carlh.net>2019-11-30 21:10:13 +0100
commit7c839a2530c910f062f3da8a02b7c70603c1f31b (patch)
treebf5fc1abf0eb8d52221b7d57da577841fb08795b
parent70f5ab36c2b985b8b82aea3187964de41930fc94 (diff)
Cut down the time before fps starts to be reported for export jobs.
-rw-r--r--src/lib/ffmpeg_encoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_encoder.cc b/src/lib/ffmpeg_encoder.cc
index 19ab3b3d7..6b3118537 100644
--- a/src/lib/ffmpeg_encoder.cc
+++ b/src/lib/ffmpeg_encoder.cc
@@ -59,7 +59,7 @@ FFmpegEncoder::FFmpegEncoder (
#endif
)
: Encoder (film, job)
- , _history (1000)
+ , _history (200)
{
int const files = split_reels ? film->reels().size() : 1;
for (int i = 0; i < files; ++i) {