diff options
author | Rodeo <[email protected]> | 2015-02-01 01:21:05 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2015-02-01 01:21:05 +0000 |
commit | d75dadf6d4816c87753d5e4b0cf765109ff68cd5 (patch) | |
tree | 7849a1488f62a34450d78d14583a629813544595 /libhb/qsv_common.h | |
parent | d686e599cf02651d884d73c2691503fbee583c14 (diff) |
QSV: refactor logging of encoder capabilities
Only log H.265/HEVC information with verbosity 2, as encoding is not supported yet.
Log H.264 capabilities with verbosity 1, as this may be useful and doesn't take up that much space. Shorten the string as much as possible.
Also rename NMBSLICE capability to NMPSLICE (Num Mb Per Slice) for consistency.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6846 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/qsv_common.h')
-rw-r--r-- | libhb/qsv_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/qsv_common.h b/libhb/qsv_common.h index dad517f4d..4b2630f39 100644 --- a/libhb/qsv_common.h +++ b/libhb/qsv_common.h @@ -53,7 +53,7 @@ typedef struct hb_qsv_info_s #define HB_QSV_CAP_OPTION2_BREFTYPE (1LL << 23) #define HB_QSV_CAP_OPTION2_IB_ADAPT (1LL << 24) #define HB_QSV_CAP_OPTION2_LA_DOWNS (1LL << 25) -#define HB_QSV_CAP_OPTION2_NMBSLICE (1LL << 26) +#define HB_QSV_CAP_OPTION2_NMPSLICE (1LL << 26) // TODO: add maximum encode resolution, etc. } hb_qsv_info_t; |