Searched defs:rtp_payload_type (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dtimestamp_scaler.cc35 uint8_t rtp_payload_type) {
37 decoder_database_.GetDecoderInfo(rtp_payload_type);
34 ToInternal(uint32_t external_timestamp, uint8_t rtp_payload_type) argument
H A Ddecoder_database.cc39 int DecoderDatabase::RegisterPayload(uint8_t rtp_payload_type, argument
41 if (rtp_payload_type > kMaxRtpPayloadType) {
50 ret = decoders_.insert(std::make_pair(rtp_payload_type, info));
52 // Database already contains a decoder with type |rtp_payload_type|.
58 int DecoderDatabase::InsertExternal(uint8_t rtp_payload_type, argument
62 if (rtp_payload_type > 0x7F) {
78 std::pair<uint8_t, DecoderInfo>(rtp_payload_type, info));
80 // Database already contains a decoder with type |rtp_payload_type|.
86 int DecoderDatabase::Remove(uint8_t rtp_payload_type) { argument
87 if (decoders_.erase(rtp_payload_type)
123 GetDecoder(uint8_t rtp_payload_type) argument
144 IsType(uint8_t rtp_payload_type, NetEqDecoder codec_type) const argument
173 SetActiveDecoder(uint8_t rtp_payload_type, bool* new_decoder) argument
214 SetActiveCngDecoder(uint8_t rtp_payload_type) argument
[all...]
H A Dneteq_impl_unittest.cc236 uint8_t rtp_payload_type = 0; local
239 RegisterPayload(rtp_payload_type, codec_type));
240 neteq_->RegisterPayloadType(codec_type, rtp_payload_type);
245 uint8_t rtp_payload_type = 0; local
246 EXPECT_CALL(*mock_decoder_database_, Remove(rtp_payload_type))
249 EXPECT_EQ(NetEq::kFail, neteq_->RemovePayloadType(rtp_payload_type));
H A Dneteq_impl.cc179 uint8_t rtp_payload_type) {
181 LOG_API2(static_cast<int>(rtp_payload_type), codec);
182 int ret = decoder_database_->RegisterPayload(rtp_payload_type, codec);
184 LOG_FERR2(LS_WARNING, RegisterPayload, rtp_payload_type, codec);
205 uint8_t rtp_payload_type) {
207 LOG_API2(static_cast<int>(rtp_payload_type), codec);
214 int ret = decoder_database_->InsertExternal(rtp_payload_type, codec,
217 LOG_FERR2(LS_WARNING, InsertExternal, rtp_payload_type, codec);
242 int NetEqImpl::RemovePayloadType(uint8_t rtp_payload_type) { argument
244 LOG_API1(static_cast<int>(rtp_payload_type));
178 RegisterPayloadType(enum NetEqDecoder codec, uint8_t rtp_payload_type) argument
203 RegisterExternalDecoder(AudioDecoder* decoder, enum NetEqDecoder codec, uint8_t rtp_payload_type) argument
[all...]
/external/chromium_org/media/cast/
H A Dcast_config.h50 int rtp_payload_type; member in struct:media::cast::AudioSenderConfig
87 int rtp_payload_type; member in struct:media::cast::VideoSenderConfig
135 int rtp_payload_type; member in struct:media::cast::FrameReceiverConfig
/external/chromium_org/media/cast/net/
H A Dcast_transport_config.h42 int rtp_payload_type; member in struct:media::cast::CastTransportRtpConfig

Completed in 157 milliseconds