summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authormaxd <[email protected]>2017-10-09 11:04:01 +0200
committerScott <[email protected]>2017-10-13 19:40:09 +0100
commit4821a1ed4091ce69ff3ef2f89060bad5471eccf2 (patch)
tree8018bc7ad1496a905f01eeb51056ec746237a8a4 /libhb
parent6368739d77656be1532022a41e0c73ba445858be (diff)
QSV: Main10 should be default profile
Diffstat (limited to 'libhb')
-rw-r--r--libhb/enc_qsv.c2
-rw-r--r--libhb/qsv_common.c11
-rw-r--r--libhb/qsv_common.h2
3 files changed, 12 insertions, 3 deletions
diff --git a/libhb/enc_qsv.c b/libhb/enc_qsv.c
index 6e44bf740..765777f7e 100644
--- a/libhb/enc_qsv.c
+++ b/libhb/enc_qsv.c
@@ -864,7 +864,7 @@ int encqsvInit(hb_work_object_t *w, hb_job_t *job)
pv->param.videoParam->mfx.FrameInfo.Height = job->qsv.enc_info.align_height;
// parse user-specified codec profile and level
- if (hb_qsv_profile_parse(&pv->param, pv->qsv_info, job->encoder_profile))
+ if (hb_qsv_profile_parse(&pv->param, pv->qsv_info, job->encoder_profile, job->vcodec))
{
hb_error("encqsvInit: bad profile %s", job->encoder_profile);
return -1;
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c
index cc95e6a2d..97348dd43 100644
--- a/libhb/qsv_common.c
+++ b/libhb/qsv_common.c
@@ -1557,7 +1557,7 @@ int hb_qsv_param_parse(hb_qsv_param_t *param, hb_qsv_info_t *info,
return error ? HB_QSV_PARAM_BAD_VALUE : HB_QSV_PARAM_OK;
}
-int hb_qsv_profile_parse(hb_qsv_param_t *param, hb_qsv_info_t *info, const char *profile_key)
+int hb_qsv_profile_parse(hb_qsv_param_t *param, hb_qsv_info_t *info, const char *profile_key, const int codec)
{
hb_triplet_t *profile = NULL;
if (profile_key != NULL && *profile_key && strcasecmp(profile_key, "auto"))
@@ -1590,6 +1590,15 @@ int hb_qsv_profile_parse(hb_qsv_param_t *param, hb_qsv_info_t *info, const char
}
param->videoParam->mfx.CodecProfile = profile->value;
}
+ /* HEVC 10 bits defautls to Main 10 */
+ else if (((profile_key != NULL && !strcasecmp(profile_key, "auto")) || profile_key == NULL) &&
+ codec == HB_VCODEC_QSV_H265_10BIT &&
+ param->videoParam->mfx.CodecId == MFX_CODEC_HEVC &&
+ qsv_hardware_generation(hb_get_cpu_platform()) >= QSV_G6)
+ {
+ profile = &hb_qsv_h265_profiles[1];
+ param->videoParam->mfx.CodecProfile = profile->value;
+ }
return 0;
}
diff --git a/libhb/qsv_common.h b/libhb/qsv_common.h
index e5964ca9d..620cb1aef 100644
--- a/libhb/qsv_common.h
+++ b/libhb/qsv_common.h
@@ -165,7 +165,7 @@ float hb_qsv_atof (const char *str, int *err);
int hb_qsv_param_default_preset(hb_qsv_param_t *param, mfxVideoParam *videoParam, hb_qsv_info_t *info, const char *preset);
int hb_qsv_param_default (hb_qsv_param_t *param, mfxVideoParam *videoParam, hb_qsv_info_t *info);
int hb_qsv_param_parse (hb_qsv_param_t *param, hb_qsv_info_t *info, const char *key, const char *value);
-int hb_qsv_profile_parse (hb_qsv_param_t *param, hb_qsv_info_t *info, const char *profile_key);
+int hb_qsv_profile_parse (hb_qsv_param_t *param, hb_qsv_info_t *info, const char *profile_key, const int codec);
int hb_qsv_level_parse (hb_qsv_param_t *param, hb_qsv_info_t *info, const char *level_key);
typedef struct