From 9fb148e34c1324a8d5f816e3bb24c817730729e1 Mon Sep 17 00:00:00 2001 From: sirknightj Date: Thu, 5 Dec 2024 09:56:08 -0800 Subject: [PATCH] Adjust the comment for the rolling buffer configuration for the sample frames --- samples/kvsWebRTCClientMaster.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/kvsWebRTCClientMaster.c b/samples/kvsWebRTCClientMaster.c index bab147df55..b2ddbd214f 100644 --- a/samples/kvsWebRTCClientMaster.c +++ b/samples/kvsWebRTCClientMaster.c @@ -50,7 +50,8 @@ INT32 main(INT32 argc, CHAR* argv[]) pSampleConfiguration->audioCodec = audioCodec; pSampleConfiguration->videoCodec = videoCodec; - // Configure the RTP rolling buffer sizes for the set of pre-canned sample frames (add a bit extra for padding) + // Configure the RTP rolling buffer sizes for the set of sample frames + // to be smaller than the default settings (plus some extra for padding). if (pSampleConfiguration->videoCodec == RTC_CODEC_H264_PROFILE_42E01F_LEVEL_ASYMMETRY_ALLOWED_PACKETIZATION_MODE) { pSampleConfiguration->videoRollingBufferDurationSec = 3; pSampleConfiguration->videoRollingBufferBitratebps = 1.4 * 1024 * 1024;