Home
last modified time | relevance | path

Searched refs:PayloadType (Results 1 – 12 of 12) sorted by relevance

/external/libchrome/base/containers/
Dmru_cache.h45 class PayloadType,
53 typedef std::pair<KeyType, PayloadType> value_type;
212 template <class KeyType, class PayloadType>
213 class MRUCache : public MRUCacheBase<KeyType, PayloadType, std::less<KeyType>> {
215 using ParentType = MRUCacheBase<KeyType, PayloadType, std::less<KeyType>>;
237 template <class KeyType, class PayloadType, class HashType = std::hash<KeyType>>
239 : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> {
242 MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
/external/webrtc/webrtc/modules/video_coding/
Dencoded_frame.h90 uint8_t PayloadType() const { return _payloadType; } in PayloadType() function
Dcodec_database.cc481 uint8_t payload_type = frame.PayloadType(); in GetDecoder()
532 uint8_t payload_type = frame.PayloadType(); in CreateAndInitDecoder()
/external/webrtc/webrtc/video/
Dreplay.cc47 static int PayloadType() { return static_cast<int>(FLAGS_payload_type); } in PayloadType() function
238 encoder_settings.payload_type = flags::PayloadType(); in RtpReplay()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h292 struct PayloadType { struct
297 Optional<PayloadType> Payload; argument
309 Payload(PayloadType{std::move(End), std::move(Pred)}) { in filter_iterator()
/external/webrtc/webrtc/test/
Drtcp_packet_parser.h188 uint8_t PayloadType() const { return rpsi_.PayloadType; } in PayloadType() function
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_packet.h287 rpsi_.PayloadType = payload; in WithPayloadType()
Drtcp_utility.h197 uint8_t PayloadType; member
Drtcp_packet.cc203 AssignUWord8(buffer, pos, rpsi.PayloadType); in CreateRpsi()
Drtcp_packet_unittest.cc229 EXPECT_EQ(100, parser.rpsi()->PayloadType()); in TEST()
Drtcp_sender_unittest.cc459 EXPECT_EQ(kPayloadType, parser()->rpsi()->PayloadType()); in TEST_F()
Drtcp_utility.cc1339 _packet.RPSI.PayloadType = *_ptrRTCPData++; in ParseRPSIItem()