summaryrefslogtreecommitdiffstats
path: root/libhb/work.c
diff options
context:
space:
mode:
authorTim Walker <[email protected]>2016-03-29 23:22:26 +0200
committerTim Walker <[email protected]>2016-03-31 01:05:16 +0200
commitf62eab7af77982d8a161d2714d237f3b7bda3cf8 (patch)
tree1388fe4e13257e8b503260b4f9e29b9205c7dd13 /libhb/work.c
parent0de684adbc17b445f93ed8e6f52951b44dc12063 (diff)
libhb: fix incorrect assumption that video quality is always positive.
Diffstat (limited to 'libhb/work.c')
-rw-r--r--libhb/work.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c
index 4fca293fb..4b09144b2 100644
--- a/libhb/work.c
+++ b/libhb/work.c
@@ -493,7 +493,7 @@ void hb_display_job_info(hb_job_t *job)
}
}
- if (job->vquality >= 0)
+ if (job->vquality > HB_INVALID_VIDEO_QUALITY)
{
hb_log(" + quality: %.2f (%s)", job->vquality,
hb_video_quality_get_name(job->vcodec));