Home | History | Annotate | Download | only in video

Lines Matching refs:rtp

53   rtp_rtcp_->SetNACKStatus(channel_, config_.rtp.nack.rtp_history_ms > 0);
55 switch (config_.rtp.rtcp_mode) {
64 assert(config_.rtp.remote_ssrc != 0);
66 assert(config_.rtp.local_ssrc != 0);
67 assert(config_.rtp.remote_ssrc != config_.rtp.local_ssrc);
69 rtp_rtcp_->SetLocalSSRC(channel_, config_.rtp.local_ssrc);
71 Config::Rtp::RtxMap::const_iterator it = config_.rtp.rtx.begin();
72 if (it != config_.rtp.rtx.end()) {
80 rtp_rtcp_->SetRembStatus(channel_, false, config_.rtp.remb);
82 for (size_t i = 0; i < config_.rtp.extensions.size(); ++i) {
83 const std::string& extension = config_.rtp.extensions[i].name;
84 int id = config_.rtp.extensions[i].id;
103 if (config_.rtp.fec.ulpfec_payload_type != -1) {
105 assert(config_.rtp.fec.red_payload_type != -1);
110 codec.plType = config_.rtp.fec.ulpfec_payload_type;
116 if (config_.rtp.fec.red_payload_type != -1) {
121 codec.plType = config_.rtp.fec.red_payload_type;
138 config_.rtp.local_ssrc, clock_, rtp_rtcp_, codec_, channel_));
182 if (config.rtp.rtcp_xr.receiver_reference_time_report) {