diff options
author | sr55 <[email protected]> | 2018-11-23 23:38:53 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-11-23 23:38:53 +0000 |
commit | 34f1355695b4446e65814d9bb704aec5d95bd7c5 (patch) | |
tree | b0a775639487130fa552e2cf9e5fa49b4b1680e2 /libhb | |
parent | eac9872e2584c38c68d38a5cd61333461062cfba (diff) |
WinGui: Get rid of some erroneous logging for NVEnc.
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/encavcodec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index 159421533..d0be88661 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -358,13 +358,12 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) } else { av_dict_set( &av_opts, "spatial-aq", "1", 0 ); // oops, nvenc_h264.c uses a dash } - hb_log( "encavcodec: encoding at rc=vbr CQ %.2f, init_qp 1, rc-lookahead 16, spatial_aq 1, aq-strength default", job->vquality ); + hb_log( "encavcodec: encoding at rc=vbr CQ %.2f", job->vquality ); //This value was chosen to make the bitrate high enough //for nvenc to "turn off" the maximum bitrate feature //that is normally applied to constant quality. context->bit_rate = bit_rate_ceiling; - hb_log( "encavcodec: bit_rate.4 %ld", context->bit_rate); } else if ( job->vcodec == HB_VCODEC_FFMPEG_VCE_H264 || job->vcodec == HB_VCODEC_FFMPEG_VCE_H265 ) { |