diff options
Diffstat (limited to 'libhb/hb_json.c')
-rw-r--r-- | libhb/hb_json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c index 39f7392f3..716ced4ce 100644 --- a/libhb/hb_json.c +++ b/libhb/hb_json.c @@ -497,7 +497,7 @@ hb_dict_t* hb_job_to_dict( const hb_job_t * job ) hb_dict_set(video_dict, "ColorMatrixCode", hb_value_int(job->color_matrix_code)); } - if (job->vquality >= 0) + if (job->vquality > HB_INVALID_VIDEO_QUALITY) { hb_dict_set(video_dict, "Quality", hb_value_double(job->vquality)); } |