diff options
author | Tim Walker <[email protected]> | 2015-09-20 12:54:01 +0200 |
---|---|---|
committer | Tim Walker <[email protected]> | 2015-09-20 12:54:01 +0200 |
commit | fa6604feffe1d61535ae0093055b5b647a1a4a18 (patch) | |
tree | d9d47f2d1d8aceca0495ac96130b908298608a5f /libhb/common.h | |
parent | 74234342b8ec3aa7fcbd5a3b2cdf3d5e56bd3d99 (diff) |
qsv: HEVC encoding support.
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 9cf51b3e2..a928eb484 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -498,8 +498,10 @@ struct hb_job_s #define HB_VCODEC_FFMPEG_VP8 0x0000040 #define HB_VCODEC_FFMPEG_MASK 0x00000F0 #define HB_VCODEC_QSV_H264 0x0000100 +#define HB_VCODEC_QSV_H265 0x0000200 #define HB_VCODEC_QSV_MASK 0x0000F00 #define HB_VCODEC_H264_MASK (HB_VCODEC_X264|HB_VCODEC_QSV_H264) +#define HB_VCODEC_H265_MASK (HB_VCODEC_X265|HB_VCODEC_QSV_H265) int vcodec; double vquality; |