
webrtc
文章平均质量分 68
调琴
这个作者很懒,什么都没留下…
展开
-
webrtc日志调试
日志机制调试:rtc_base/logging.h// Note that the non-standard LoggingSeverity aliases exist because they are // still in broad use. The meanings of the levels are: // LS_VERBOSE: This level is for data which we do not want to appear in the // normal debug ...原创 2021-11-15 16:02:04 · 802 阅读 · 0 评论 -
webrtc调试RtpEncodingParameters类中的network_priority和bitrate_priority参数,作用在音频RTP发送包中。
参数分析:network_priority:此编码的相对区分服务代码点优先级,允许在不影响带宽分配的情况下将数据包标记为相对较高或较低。在webrtc_voice_engine.cc的WebRtcAudioSendStream类中可以观察到config_.has_dscp = rtp_parameters_.encodings[0].network_priority != webrtc::Priority::kLow;说明此参数影响到dscp,通过SetRtpSendPar...原创 2021-10-12 19:14:32 · 853 阅读 · 0 评论