From 32edfb239d195fb68e6d56b478197db978e8182a Mon Sep 17 00:00:00 2001 From: Max Dmytrychenko Date: Sun, 27 Sep 2015 15:57:53 +0200 Subject: fix to prevent lazy compiler assumption and avoid full computation --- libhb/qsv_common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libhb') diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c index c50be8901..075aada0d 100644 --- a/libhb/qsv_common.c +++ b/libhb/qsv_common.c @@ -144,8 +144,9 @@ static int qsv_implementation_is_hardware(mfxIMPL implementation) int hb_qsv_available() { - return (hb_qsv_video_encoder_is_enabled(HB_VCODEC_QSV_H264) ? HB_VCODEC_QSV_H264 : 0 | - hb_qsv_video_encoder_is_enabled(HB_VCODEC_QSV_H265) ? HB_VCODEC_QSV_H265 : 0); + int is_qsv_available = hb_qsv_video_encoder_is_enabled(HB_VCODEC_QSV_H264) ? HB_VCODEC_QSV_H264 : 0; + is_qsv_available |= hb_qsv_video_encoder_is_enabled(HB_VCODEC_QSV_H265) ? HB_VCODEC_QSV_H265 : 0; + return is_qsv_available; } int hb_qsv_video_encoder_is_enabled(int encoder) -- cgit v1.2.3