summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2017-10-31 23:18:49 +0100
committerSven Gothel <[email protected]>2017-10-31 23:18:49 +0100
commite7f0555d1ea9570e93316e7e6b66b123e5ee4781 (patch)
treebccd6faa1c4e4b888f9cbca365e6541c93eaa8c1
parent231369ca904cf10d40ea96b42d8265455f774608 (diff)
NVENC: Fix HB_VCODEC_FFMPEG_MASK covered values to lie within mask
-rw-r--r--libhb/common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/common.h b/libhb/common.h
index 039c4d305..a2bfa041b 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -501,10 +501,10 @@ struct hb_job_s
#define HB_VCODEC_FFMPEG_MPEG4 0x0000010
#define HB_VCODEC_FFMPEG_MPEG2 0x0000020
#define HB_VCODEC_FFMPEG_VP8 0x0000040
-#define HB_VCODEC_FFMPEG_VP9 0x0000080
+#define HB_VCODEC_FFMPEG_VP9 0x0000050
+#define HB_VCODEC_FFMPEG_H264 0x0000070
+#define HB_VCODEC_FFMPEG_H265 0x0000080
#define HB_VCODEC_FFMPEG_MASK 0x00000F0
-#define HB_VCODEC_FFMPEG_H264 0x0040000
-#define HB_VCODEC_FFMPEG_H265 0x0050000
#define HB_VCODEC_QSV_H264 0x0000100
#define HB_VCODEC_QSV_H265_8BIT 0x0000200
#define HB_VCODEC_QSV_H265_10BIT 0x0000400