Searched refs:RtcpFB (Results 1 - 3 of 3) sorted by relevance
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtcp/src/ |
H A D | rtcp.cpp | 269 //------------------------------ RtcpFB ------------------------------// 271 std::shared_ptr<RtcpFB> RtcpFB::Create(PsfbType fmt, const void *fci, size_t fciLen) 273 return RtcpFB::CreateInner(RtcpType::RTCP_PSFB, (int32_t)fmt, fci, fciLen); 276 std::shared_ptr<RtcpFB> RtcpFB::Create(RtpfbType fmt, const void *fci, size_t fciLen) 278 return RtcpFB::CreateInner(RtcpType::RTCP_RTPFB, (int32_t)fmt, fci, fciLen); 281 const uint8_t *RtcpFB::GetFciPtr() const 286 int32_t RtcpFB::GetFciSize() const 288 return GetSize() - GetPaddingSize() - sizeof(RtcpFB); [all...] |
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtcp/include/ |
H A D | rtcp.h | 251 //------------------------------ RtcpFB ------------------------------// 271 // RtcpFB: Rtpfb or Psfb 272 struct RtcpFB : public RtcpHeader { struct 277 static std::shared_ptr<RtcpFB> Create(PsfbType fmt, const void *fci = nullptr, size_t fci_len = 0); 279 static std::shared_ptr<RtcpFB> Create(RtpfbType fmt, const void *fci = nullptr, size_t fci_len = 0); 282 static std::shared_ptr<RtcpFB> CreateInner(RtcpType type, int32_t fmt, const void *fci, size_t fci_len);
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/protocol/rtcp/ |
H A D | rtcp_unit_test.cpp | 329 auto fb = std::make_shared<RtcpFB>(); in HWTEST_F() 335 auto fb = std::make_shared<RtcpFB>(); in HWTEST_F() 343 auto fb = std::make_shared<RtcpFB>(); in HWTEST_F() 351 auto ret = RtcpFB::Create(PsfbType::RTCP_PSFB_PLI); in HWTEST_F() 357 auto ret = RtcpFB::Create(RtpfbType::RTCP_RTPFB_NACK); in HWTEST_F() 363 auto ret = RtcpFB::CreateInner(RtcpType::RTCP_FIR, 0, nullptr, 0); in HWTEST_F()
|
Completed in 3 milliseconds