HomeSort by relevance Sort by last modified time
    Searched refs:rtp_payload_type (Results 1 - 15 of 15) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_decoder_database.h 33 int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
36 int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
40 int(uint8_t rtp_payload_type));
42 const DecoderInfo*(uint8_t rtp_payload_type));
46 AudioDecoder*(uint8_t rtp_payload_type));
48 bool(uint8_t rtp_payload_type, NetEqDecoder codec_type));
50 bool(uint8_t rtp_payload_type));
52 bool(uint8_t rtp_payload_type));
54 bool(uint8_t rtp_payload_type));
56 int(uint8_t rtp_payload_type, bool* new_decoder))
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
decoder_database.cc 41 int DecoderDatabase::RegisterPayload(uint8_t rtp_payload_type,
44 if (rtp_payload_type > 0x7F) {
52 auto ret = decoders_.insert(std::make_pair(rtp_payload_type, info));
54 // Database already contains a decoder with type |rtp_payload_type|.
60 int DecoderDatabase::InsertExternal(uint8_t rtp_payload_type,
65 if (rtp_payload_type > 0x7F) {
79 ret = decoders_.insert(std::make_pair(rtp_payload_type, info));
81 // Database already contains a decoder with type |rtp_payload_type|.
87 int DecoderDatabase::Remove(uint8_t rtp_payload_type) {
88 if (decoders_.erase(rtp_payload_type) == 0)
    [all...]
decoder_database.h 83 // Registers |rtp_payload_type| as a decoder of type |codec_type|. The |name|
87 virtual int RegisterPayload(uint8_t rtp_payload_type,
92 // as a decoder of type |codec_type| with |rtp_payload_type|.
93 virtual int InsertExternal(uint8_t rtp_payload_type,
99 // Removes the entry for |rtp_payload_type| from the database.
101 virtual int Remove(uint8_t rtp_payload_type);
103 // Returns a pointer to the DecoderInfo struct for |rtp_payload_type|. If
104 // no decoder is registered with that |rtp_payload_type|, NULL is returned.
105 virtual const DecoderInfo* GetDecoderInfo(uint8_t rtp_payload_type) const;
114 // |rtp_payload_type|, or NULL if none is registered. If the AudioDecode
    [all...]
timestamp_scaler.h 49 // RTP payload type |rtp_payload_type|.
51 uint8_t rtp_payload_type);
timestamp_scaler.cc 39 uint8_t rtp_payload_type) {
41 decoder_database_.GetDecoderInfo(rtp_payload_type);
neteq_impl.h 115 uint8_t rtp_payload_type) override;
120 uint8_t rtp_payload_type,
123 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
125 int RemovePayloadType(uint8_t rtp_payload_type) override;
neteq_impl_unittest.cc 241 uint8_t rtp_payload_type = 0; local
245 RegisterPayload(rtp_payload_type, codec_type, kCodecName));
246 neteq_->RegisterPayloadType(codec_type, kCodecName, rtp_payload_type);
251 uint8_t rtp_payload_type = 0; local
252 EXPECT_CALL(*mock_decoder_database_, Remove(rtp_payload_type))
255 EXPECT_EQ(NetEq::kFail, neteq_->RemovePayloadType(rtp_payload_type));
    [all...]
neteq_impl.cc 179 uint8_t rtp_payload_type) {
182 << static_cast<int>(rtp_payload_type) << " "
184 int ret = decoder_database_->RegisterPayload(rtp_payload_type, codec, name);
207 uint8_t rtp_payload_type,
211 << static_cast<int>(rtp_payload_type) << " "
219 rtp_payload_type, codec, codec_name, sample_rate_hz, decoder);
245 int NetEqImpl::RemovePayloadType(uint8_t rtp_payload_type) {
247 int ret = decoder_database_->Remove(rtp_payload_type);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/include/
neteq.h 177 // Associates |rtp_payload_type| with |codec| and |codec_name|, and stores the
183 uint8_t rtp_payload_type) = 0;
187 // associates it with |rtp_payload_type| and |codec_name|. The decoder will
195 uint8_t rtp_payload_type,
198 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
200 virtual int RemovePayloadType(uint8_t rtp_payload_type) = 0;
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receive_test_oldapi.h 50 int RegisterExternalReceiveCodec(int rtp_payload_type,
acm_receive_test_oldapi.cc 144 int rtp_payload_type,
149 return acm_->RegisterExternalReceiveCodec(rtp_payload_type, external_decoder,
audio_coding_module_impl.cc 623 int rtp_payload_type,
636 if (!RentACodec::IsPayloadTypeValid(rtp_payload_type)) {
637 LOG_F(LS_ERROR) << "Invalid payload-type " << rtp_payload_type
642 return receiver_.AddCodec(-1 /* external */, rtp_payload_type, num_channels,
audio_coding_module_impl.h 124 int RegisterExternalReceiveCodec(int rtp_payload_type,
audio_coding_module_unittest_oldapi.cc 376 void RegisterCngCodec(int rtp_payload_type) {
379 codec.pltype = rtp_payload_type;
891 int rtp_payload_type; member in struct:webrtc::AcmReceiverBitExactnessOldApi::ExternalDecoder
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 478 virtual int RegisterExternalReceiveCodec(int rtp_payload_type,

Completed in 249 milliseconds