| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h" | 33 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h" |
| 34 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h" | 34 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h" |
| 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h" | 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h" |
| 36 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rpsi.h" | 36 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rpsi.h" |
| 37 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h" | 37 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h" |
| 38 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.h" | 38 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.h" |
| 39 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sli.h" | 39 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sli.h" |
| 40 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h" | 40 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h" |
| 41 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h" | 41 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h" |
| 42 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" | 42 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" |
| 43 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" |
| 43 #include "webrtc/modules/rtp_rtcp/source/time_util.h" | 44 #include "webrtc/modules/rtp_rtcp/source/time_util.h" |
| 44 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" | 45 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" |
| 45 #include "webrtc/system_wrappers/include/ntp_time.h" | 46 #include "webrtc/system_wrappers/include/ntp_time.h" |
| 46 | 47 |
| 47 namespace webrtc { | 48 namespace webrtc { |
| 48 namespace { | 49 namespace { |
| 49 | 50 |
| 50 using rtcp::CommonHeader; | 51 using rtcp::CommonHeader; |
| 51 using rtcp::ReportBlock; | 52 using rtcp::ReportBlock; |
| 52 | 53 |
| (...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 } else { | 1085 } else { |
| 1085 candidates.push_back(it->second.tmmbr_item); | 1086 candidates.push_back(it->second.tmmbr_item); |
| 1086 ++it; | 1087 ++it; |
| 1087 } | 1088 } |
| 1088 } | 1089 } |
| 1089 } | 1090 } |
| 1090 return candidates; | 1091 return candidates; |
| 1091 } | 1092 } |
| 1092 | 1093 |
| 1093 } // namespace webrtc | 1094 } // namespace webrtc |
| OLD | NEW |