From: handbrake Date: Tue, 4 Jun 2013 10:59:02 +0000 (+0000) Subject: QSV: TargetKbps is not used when CQP X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5993e7b5f17e1fcd8b45b8450509f443d66b7d75;p=handbrake QSV: TargetKbps is not used when CQP git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/qsv@5551 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/libhb/enc_qsv.c b/libhb/enc_qsv.c index 1a474f16c..76f434e1b 100644 --- a/libhb/enc_qsv.c +++ b/libhb/enc_qsv.c @@ -386,9 +386,8 @@ int qsv_enc_init( av_qsv_context* qsv, hb_work_private_t * pv ){ }; if( qsv_encode->m_mfxVideoParam.mfx.RateControlMethod == MFX_RATECONTROL_CQP ) - hb_log("qsv: RateControlMethod:%s(I:%d/P:%d/B:%d) TargetKbps:%d",rc_method, - qsv_encode->m_mfxVideoParam.mfx.QPI, qsv_encode->m_mfxVideoParam.mfx.QPP, qsv_encode->m_mfxVideoParam.mfx.QPB, - qsv_encode->m_mfxVideoParam.mfx.TargetKbps ); + hb_log("qsv: RateControlMethod:%s(I:%d/P:%d/B:%d)",rc_method, + qsv_encode->m_mfxVideoParam.mfx.QPI, qsv_encode->m_mfxVideoParam.mfx.QPP, qsv_encode->m_mfxVideoParam.mfx.QPB ); else hb_log("qsv: RateControlMethod:%s TargetKbps:%d",rc_method , qsv_encode->m_mfxVideoParam.mfx.TargetKbps );