Suppress noisy logging from opus encoder.

Bug: none
Change-Id: Icc3d61f9dfe2582f8ae5de37de7ea148d272876c
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158897
Reviewed-by: Minyue Li <minyue@webrtc.org>
Commit-Queue: Minyue Li <minyue@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29706}
This commit is contained in:
Sergey Silkin 2019-11-06 12:30:52 +01:00 committed by Commit Bot
parent bae12756da
commit bd826152dd

View File

@ -851,7 +851,7 @@ void AudioEncoderOpusImpl::SetTargetBitrate(int bits_per_second) {
RTC_CHECK_EQ(
0, WebRtcOpus_SetBitRate(
inst_, GetMultipliedBitrate(bitrate, bitrate_multipliers_)));
RTC_LOG(LS_INFO) << "Set Opus bitrate to " << bitrate << " bps.";
RTC_LOG(LS_VERBOSE) << "Set Opus bitrate to " << bitrate << " bps.";
bitrate_changed_ = true;
}