diff options
author | Zhong Li <zhong.li@intel.com> | 2018-08-27 19:15:46 +0800 |
---|---|---|
committer | Maxym Dmytrychenko <maxim.d33@gmail.com> | 2018-09-02 20:02:02 +0200 |
commit | c8bca9fe466f810fd484e2c6db7ef7bc83b5a943 (patch) | |
tree | 86873941e89ea8b4e38d1ed1559e88c40b840fea | |
parent | e16b20782a597e36a9c7488487c3179375a25b97 (diff) | |
download | ffmpeg-streaming-c8bca9fe466f810fd484e2c6db7ef7bc83b5a943.zip ffmpeg-streaming-c8bca9fe466f810fd484e2c6db7ef7bc83b5a943.tar.gz |
lavc/qsvenc: dump BufferSizeInKB message
Signed-off-by: Zhong Li <zhong.li@intel.com>
Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
-rw-r--r-- | libavcodec/qsvenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c index c2c2911..611449c 100644 --- a/libavcodec/qsvenc.c +++ b/libavcodec/qsvenc.c @@ -160,8 +160,8 @@ static void dump_video_param(AVCodecContext *avctx, QSVEncContext *q, #endif ) { av_log(avctx, AV_LOG_VERBOSE, - "InitialDelayInKB: %"PRIu16"; TargetKbps: %"PRIu16"; MaxKbps: %"PRIu16"\n", - info->InitialDelayInKB, info->TargetKbps, info->MaxKbps); + "BufferSizeInKB: %"PRIu16"; InitialDelayInKB: %"PRIu16"; TargetKbps: %"PRIu16"; MaxKbps: %"PRIu16"\n", + info->BufferSizeInKB, info->InitialDelayInKB, info->TargetKbps, info->MaxKbps); } else if (info->RateControlMethod == MFX_RATECONTROL_CQP) { av_log(avctx, AV_LOG_VERBOSE, "QPI: %"PRIu16"; QPP: %"PRIu16"; QPB: %"PRIu16"\n", info->QPI, info->QPP, info->QPB); |