File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 19
19
20
20
namespace rtc {
21
21
22
- // Paced sending of RTP packets. Takes a stream of RTP packets that can an
23
- // uneven bitrate. It then delivers these packets in a smoother manner by
24
- // sending a fixed size of them on an interval
22
+ // Paced sending of RTP packets. It takes a stream of RTP packets that can have an uneven bitrate
23
+ // and delivers them in a smoother manner by sending a fixed size of them on an interval
25
24
class RTC_CPP_EXPORT PacingHandler : public MediaHandler {
26
25
public:
27
26
PacingHandler (double bitsPerSecond, std::chrono::milliseconds sendInterval);
Original file line number Diff line number Diff line change 18
18
namespace rtc {
19
19
20
20
PacingHandler::PacingHandler (double bitsPerSecond, std::chrono::milliseconds sendInterval)
21
- : mBytesPerSecond (bitsPerSecond / 8 ), mBudget (0 ), mSendInterval (sendInterval){};
21
+ : mBytesPerSecond (bitsPerSecond / 8 ), mBudget (0 . ), mSendInterval (sendInterval){};
22
22
23
23
void PacingHandler::schedule (const message_callback &send) {
24
24
if (!mHaveScheduled .exchange (true )) {
You can’t perform that action at this time.
0 commit comments