summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-06-27 07:39:37 -0700
committerJohn Stebbins <[email protected]>2019-06-27 07:39:37 -0700
commit24c5d9dc6e06d2c4695776f31923231ed1b1ea9d (patch)
treec3efc21a3ee6e4df8a9e0dc3f9e33c915b387ab7 /libhb
parent187e2fc41037e764d5726ddf0c0df8e17252c670 (diff)
reader: update hb_status_t eta_seconds during FAS
Diffstat (limited to 'libhb')
-rw-r--r--libhb/reader.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/reader.c b/libhb/reader.c
index f200152bb..c4487a5be 100644
--- a/libhb/reader.c
+++ b/libhb/reader.c
@@ -636,6 +636,7 @@ static void UpdateState( hb_work_private_t * r )
{
eta = 0;
}
+ p.eta_seconds = eta;
p.hours = eta / 3600;
p.minutes = ( eta % 3600 ) / 60;
p.seconds = eta % 60;