diff options
author | maxd <[email protected]> | 2017-10-09 11:04:01 +0200 |
---|---|---|
committer | Scott <[email protected]> | 2017-10-13 19:40:09 +0100 |
commit | 4821a1ed4091ce69ff3ef2f89060bad5471eccf2 (patch) | |
tree | 8018bc7ad1496a905f01eeb51056ec746237a8a4 /libhb/enc_qsv.c | |
parent | 6368739d77656be1532022a41e0c73ba445858be (diff) |
QSV: Main10 should be default profile
Diffstat (limited to 'libhb/enc_qsv.c')
-rw-r--r-- | libhb/enc_qsv.c | 2 |
1 files changed, 1 insertions, 1 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; |