diff options
author | maxd <[email protected]> | 2017-04-07 11:49:32 +0200 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-04-07 14:23:11 -0400 |
commit | a8193892f693aecddbecb1e780d0099d9acdd5ce (patch) | |
tree | 6f6816aaf729445a638b9d9a3019a8b7abee8eb5 /libhb/enc_qsv.c | |
parent | c584f661f0e9aef5c0099af56ede9b029696a487 (diff) |
qsv: hevc10 fix for correct declaration of data/zero bits
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 a419767ee..11a3dace9 100644 --- a/libhb/enc_qsv.c +++ b/libhb/enc_qsv.c @@ -881,7 +881,7 @@ int encqsvInit(hb_work_object_t *w, hb_job_t *job) pv->param.videoParam->mfx.FrameInfo.FourCC = MFX_FOURCC_P010; pv->param.videoParam->mfx.FrameInfo.BitDepthLuma = 10; pv->param.videoParam->mfx.FrameInfo.BitDepthChroma = 10; - pv->param.videoParam->mfx.FrameInfo.Shift = 0; + pv->param.videoParam->mfx.FrameInfo.Shift = 1; } // interlaced encoding is not always possible |