HomeSort by relevance Sort by last modified time
    Searched refs:RtpRtcp (Results 1 - 25 of 38) sorted by null

1 2

  /external/webrtc/webrtc/video/
vie_remb.h 27 class RtpRtcp;
35 void AddReceiveChannel(RtpRtcp* rtp_rtcp);
38 void RemoveReceiveChannel(RtpRtcp* rtp_rtcp);
41 void AddRembSender(RtpRtcp* rtp_rtcp);
44 void RemoveRembSender(RtpRtcp* rtp_rtcp);
58 typedef std::list<RtpRtcp*> RtpModules;
67 // All RtpRtcp modules to include in the REMB packet.
vie_sync_module.h 26 class RtpRtcp;
38 RtpRtcp* video_rtcp_module,
51 RtpRtcp* video_rtp_rtcp_;
payload_router.h 27 class RtpRtcp;
40 void SetSendingRtpModules(const std::list<RtpRtcp*>& rtp_modules);
47 // Input parameters according to the signature of RtpRtcp::SendOutgoingData.
75 std::vector<RtpRtcp*> rtp_modules_ GUARDED_BY(crit_.get());
vie_channel.cc 153 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_)
158 std::list<RtpRtcp*> send_rtp_modules(1, rtp_rtcp_modules_[0]);
183 send_payload_router_->SetSendingRtpModules(std::list<RtpRtcp*>());
186 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) {
361 send_payload_router_->SetSendingRtpModules(std::list<RtpRtcp*>());
363 std::vector<RtpRtcp*> registered_modules;
364 std::vector<RtpRtcp*> deregistered_modules;
382 for (RtpRtcp* rtp_rtcp : deregistered_modules) {
388 for (RtpRtcp* rtp_rtcp : registered_modules) {
401 // Update the packet and payload routers with the sending RtpRtcp modules
    [all...]
vie_receiver.h 33 class RtpRtcp;
62 void SetRtpRtcpModule(RtpRtcp* module);
66 void RegisterRtpRtcpModules(const std::vector<RtpRtcp*>& rtp_modules);
114 RtpRtcp* rtp_rtcp_;
115 std::vector<RtpRtcp*> rtp_rtcp_simulcast_;
vie_remb.cc 39 void VieRemb::AddReceiveChannel(RtpRtcp* rtp_rtcp) {
52 void VieRemb::RemoveReceiveChannel(RtpRtcp* rtp_rtcp) {
65 void VieRemb::AddRembSender(RtpRtcp* rtp_rtcp) {
77 void VieRemb::RemoveRembSender(RtpRtcp* rtp_rtcp) {
129 RtpRtcp* sender = NULL;
vie_sync_module.cc 25 const RtpRtcp& rtp_rtcp, const RtpReceiver& receiver) {
67 RtpRtcp* video_rtcp_module,
126 RtpRtcp* voice_rtp_rtcp = NULL;
payload_router_unittest.cc 38 std::list<RtpRtcp*> modules(1, &rtp);
85 std::list<RtpRtcp*> modules;
150 std::list<RtpRtcp*> modules;
178 std::list<RtpRtcp*> modules;
payload_router.cc 32 const std::list<RtpRtcp*>& rtp_modules) {
vie_channel.h 217 RtpRtcp* rtp_rtcp();
289 static std::vector<RtpRtcp*> CreateRtpRtcpModules(
447 // RtpRtcp modules, declared last as they use other members on construction.
448 const std::vector<RtpRtcp*> rtp_rtcp_modules_;
  /external/webrtc/webrtc/modules/pacing/
packet_router.h 26 class RtpRtcp;
39 void AddRtpModule(RtpRtcp* rtp_module);
40 void RemoveRtpModule(RtpRtcp* rtp_module);
59 std::list<RtpRtcp*> rtp_modules_ GUARDED_BY(modules_lock_);
packet_router.cc 28 void PacketRouter::AddRtpModule(RtpRtcp* rtp_module) {
35 void PacketRouter::RemoveRtpModule(RtpRtcp* rtp_module) {
59 for (RtpRtcp* module : rtp_modules_) {
  /external/webrtc/webrtc/voice_engine/include/
voe_video_sync.h 41 class RtpRtcp;
89 RtpRtcp** rtpRtcpModule,
  /external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api.h 26 // This class sends all its packet straight to the provided RtpRtcp module.
36 void SetSendModule(RtpRtcp* rtp_rtcp_module,
52 RtpRtcp* rtp_rtcp_module_;
test_api_rtcp.cc 31 void SetModule(RtpRtcp* module) {
50 RtpRtcp* _rtpRtcpModule;
55 explicit TestRtpFeedback(RtpRtcp* rtp_rtcp) : rtp_rtcp_(rtp_rtcp) {}
63 RtpRtcp* rtp_rtcp_;
87 RtpRtcp::Configuration configuration;
99 module1 = RtpRtcp::CreateRtpRtcp(configuration);
111 module2 = RtpRtcp::CreateRtpRtcp(configuration);
186 RtpRtcp* module1;
187 RtpRtcp* module2;
test_api.cc 20 void LoopBackTransport::SetSendModule(RtpRtcp* rtp_rtcp_module,
92 RtpRtcp::Configuration configuration;
96 module_.reset(RtpRtcp::CreateRtpRtcp(configuration));
105 rtc::scoped_ptr<RtpRtcp> module_;
test_api_audio.cc 104 RtpRtcp::Configuration configuration;
111 module1 = RtpRtcp::CreateRtpRtcp(configuration);
120 module2 = RtpRtcp::CreateRtpRtcp(configuration);
142 RtpRtcp* module1;
143 RtpRtcp* module2;
test_api_video.cc 47 RtpRtcp::Configuration configuration;
52 video_module_ = RtpRtcp::CreateRtpRtcp(configuration);
133 RtpRtcp* video_module_;
  /external/webrtc/webrtc/voice_engine/
voe_video_sync_impl.h 39 RtpRtcp** rtpRtcpModule,
  /external/webrtc/webrtc/call/
congestion_controller.h 32 class RtpRtcp;
52 RtpRtcp* rtp_module);
  /external/webrtc/webrtc/call/mock/
mock_congestion_controller.h 33 void(bool sender, bool receiver, RtpRtcp* rtp_module));
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
nack_rtx_unittest.cc 56 explicit TestRtpFeedback(RtpRtcp* rtp_rtcp) : rtp_rtcp_(rtp_rtcp) {}
64 RtpRtcp* rtp_rtcp_;
80 void SetSendModule(RtpRtcp* rtpRtcpModule,
163 RtpRtcp* module_;
179 RtpRtcp::Configuration configuration;
185 rtp_rtcp_module_ = RtpRtcp::CreateRtpRtcp(configuration);
285 RtpRtcp* rtp_rtcp_module_;
rtcp_format_remb_unittest.cc 87 RtpRtcp::Configuration configuration;
  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp.h 31 class RtpRtcp : public Module {
83 static RtpRtcp* CreateRtpRtcp(const RtpRtcp::Configuration& configuration);
  /external/webrtc/webrtc/modules/rtp_rtcp/mocks/
mock_rtp_rtcp.h 38 class MockRtpRtcp : public RtpRtcp {
41 int32_t(RtpRtcp* module));
49 int32_t(RtpRtcp* module));

Completed in 508 milliseconds

1 2