diff options
author | John Stebbins <[email protected]> | 2016-12-21 08:23:58 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-12-21 08:23:58 -0800 |
commit | ef3c8e5032937d666bb55f9ee90db18a72ea198b (patch) | |
tree | 529e965c1614e6c6b478a8688483bde04d742273 | |
parent | 034749b12d2031ab8203fd2a6ee0051a043f9e6f (diff) |
fix compiler warning and operator precedence problem
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index e74858e12..c7c5f39df 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -502,7 +502,7 @@ void hb_display_job_info(hb_job_t *job) } if (job->color_matrix_code && - (job->vcodec == HB_VCODEC_X264_MASK) || (job->vcodec == HB_VCODEC_X265_MASK)) + (job->vcodec == HB_VCODEC_X264_MASK || job->vcodec == HB_VCODEC_X265_MASK)) { // color matrix is set: // 1) at the stream level (x264, x265, qsv only), |