summaryrefslogtreecommitdiffstats
path: root/libhb/qsv_common.h
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-09-24 11:53:29 +0000
committerRodeo <[email protected]>2013-09-24 11:53:29 +0000
commit84c6ccec2bb77d3cbc9440191fd24c1e858d99f9 (patch)
tree0a9e1c0ca8032c59c4a3cb235f0125c76f27efbf /libhb/qsv_common.h
parent102c5428b559d967ea6531e9202b5931401679bd (diff)
QSV: MBBRC is actually Haswell-only.
This is confirmed by marketing material and testing with the 3257 driver on Ivy Bridge hardware. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5802 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/qsv_common.h')
-rw-r--r--libhb/qsv_common.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libhb/qsv_common.h b/libhb/qsv_common.h
index d27e7241a..796d791b5 100644
--- a/libhb/qsv_common.h
+++ b/libhb/qsv_common.h
@@ -32,9 +32,10 @@ typedef struct hb_qsv_info_s
int capabilities;
#define HB_QSV_CAP_H264_BPYRAMID (1 << 0) // H.264: reference B-frames
#define HB_QSV_CAP_MSDK_API_1_6 (1 << 1) // Support for API 1.6 or later
-#define HB_QSV_CAP_OPTION2_BRC (1 << 2) // mfxExtCodingOption2: MBBRC/ExtBRC
-#define HB_QSV_CAP_OPTION2_LOOKAHEAD (1 << 3) // mfxExtCodingOption2: LookAhead
-#define HB_QSV_CAP_OPTION2_TRELLIS (1 << 4) // mfxExtCodingOption2: Trellis
+#define HB_QSV_CAP_OPTION2_EXTBRC (1 << 2) // mfxExtCodingOption2: ExtBRC
+#define HB_QSV_CAP_OPTION2_MBBRC (1 << 3) // mfxExtCodingOption2: MBBRC
+#define HB_QSV_CAP_OPTION2_LOOKAHEAD (1 << 4) // mfxExtCodingOption2: LookAhead
+#define HB_QSV_CAP_OPTION2_TRELLIS (1 << 5) // mfxExtCodingOption2: Trellis
// TODO: add available decoders, filters, encoders,
// maximum decode and encode resolution, etc.