Searched refs:rtp_payload_type (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_decoder_database.h31 int(uint8_t rtp_payload_type, NetEqDecoder codec_type));
33 int(uint8_t rtp_payload_type, NetEqDecoder codec_type, int fs_hz,
36 int(uint8_t rtp_payload_type));
38 const DecoderInfo*(uint8_t rtp_payload_type));
42 AudioDecoder*(uint8_t rtp_payload_type));
44 bool(uint8_t rtp_payload_type, NetEqDecoder codec_type));
46 bool(uint8_t rtp_payload_type));
48 bool(uint8_t rtp_payload_type));
50 bool(uint8_t rtp_payload_type));
52 int(uint8_t rtp_payload_type, boo
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
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 Ddecoder_database.h83 // Registers |rtp_payload_type| as a decoder of type |codec_type|. Returns
85 virtual int RegisterPayload(uint8_t rtp_payload_type,
89 // as a decoder of type |codec_type| with |rtp_payload_type|.
90 virtual int InsertExternal(uint8_t rtp_payload_type,
94 // Removes the entry for |rtp_payload_type| from the database.
96 virtual int Remove(uint8_t rtp_payload_type);
98 // Returns a pointer to the DecoderInfo struct for |rtp_payload_type|. If
99 // no decoder is registered with that |rtp_payload_type|, NULL is returned.
100 virtual const DecoderInfo* GetDecoderInfo(uint8_t rtp_payload_type) const;
109 // |rtp_payload_type|, o
[all...]
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 Dtimestamp_scaler.h49 // RTP payload type |rtp_payload_type|.
51 uint8_t rtp_payload_type);
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.h111 // Associates |rtp_payload_type| with |codec| and stores the information in
114 uint8_t rtp_payload_type);
118 // associates it with |rtp_payload_type|. Returns kOK on success, kFail on
122 uint8_t rtp_payload_type);
124 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
126 virtual int RemovePayloadType(uint8_t rtp_payload_type);
H A Dneteq_impl.cc177 uint8_t rtp_payload_type) {
179 LOG_API2(static_cast<int>(rtp_payload_type), codec);
180 int ret = decoder_database_->RegisterPayload(rtp_payload_type, codec);
182 LOG_FERR2(LS_WARNING, RegisterPayload, rtp_payload_type, codec);
203 uint8_t rtp_payload_type) {
205 LOG_API2(static_cast<int>(rtp_payload_type), codec);
212 int ret = decoder_database_->InsertExternal(rtp_payload_type, codec,
215 LOG_FERR2(LS_WARNING, InsertExternal, rtp_payload_type, codec);
240 int NetEqImpl::RemovePayloadType(uint8_t rtp_payload_type) { argument
242 LOG_API1(static_cast<int>(rtp_payload_type));
176 RegisterPayloadType(enum NetEqDecoder codec, uint8_t rtp_payload_type) argument
201 RegisterExternalDecoder(AudioDecoder* decoder, enum NetEqDecoder codec, uint8_t rtp_payload_type) argument
[all...]
/external/chromium_org/media/cast/
H A Dcast_config.cc57 rtp_payload_type(0),
H A Dcast_config.h112 int rtp_payload_type; member in struct:media::cast::FrameReceiverConfig
/external/chromium_org/media/cast/test/utility/
H A Ddefault_config.cc34 config.rtp_payload_type = 127;
48 config.rtp_payload_type = 96;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
H A Dneteq.h158 // Associates |rtp_payload_type| with |codec| and stores the information in
161 uint8_t rtp_payload_type) = 0;
165 // associates it with |rtp_payload_type|. Returns kOK on success,
169 uint8_t rtp_payload_type) = 0;
171 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
173 virtual int RemovePayloadType(uint8_t rtp_payload_type) = 0;
/external/chromium_org/media/cast/test/
H A Dreceiver.cc127 audio_config->rtp_payload_type = input.GetIntInput();
143 video_config->rtp_payload_type = input.GetIntInput();
H A Dcast_benchmarks.cc298 audio_receiver_config_.rtp_payload_type =
332 video_receiver_config_.rtp_payload_type =
H A Dend2end_unittest.cc479 audio_receiver_config_.rtp_payload_type =
510 video_receiver_config_.rtp_payload_type =
/external/chromium_org/media/cast/receiver/
H A Dframe_receiver.cc28 packet_parser_(config.incoming_ssrc, config.rtp_payload_type),

Completed in 292 milliseconds