Home
last modified time | relevance | path

Searched refs:IsSupportedDecoder (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/api/audio_codecs/test/
Daudio_decoder_factory_template_unittest.cc84 EXPECT_FALSE(factory->IsSupportedDecoder({"foo", 8000, 1})); in TEST()
94 EXPECT_FALSE(factory->IsSupportedDecoder({"foo", 8000, 1})); in TEST()
95 EXPECT_TRUE(factory->IsSupportedDecoder({"bogus", 8000, 1})); in TEST()
111 EXPECT_FALSE(factory->IsSupportedDecoder({"foo", 8000, 1})); in TEST()
112 EXPECT_TRUE(factory->IsSupportedDecoder({"bogus", 8000, 1})); in TEST()
114 factory->IsSupportedDecoder({"sham", 16000, 2, {{"param", "value"}}})); in TEST()
134 EXPECT_FALSE(factory->IsSupportedDecoder({"G711", 8000, 1})); in TEST()
135 EXPECT_TRUE(factory->IsSupportedDecoder({"PCMU", 8000, 1})); in TEST()
136 EXPECT_TRUE(factory->IsSupportedDecoder({"pcma", 8000, 1})); in TEST()
152 EXPECT_FALSE(factory->IsSupportedDecoder({"foo", 8000, 1})); in TEST()
[all …]
/external/webrtc/api/audio_codecs/
Daudio_decoder_factory_template.h32 static bool IsSupportedDecoder(const SdpAudioFormat& format) { return false; }
48 static bool IsSupportedDecoder(const SdpAudioFormat& format) {
54 return opt_config ? true : Helper<Ts...>::IsSupportedDecoder(format);
74 bool IsSupportedDecoder(const SdpAudioFormat& format) override {
75 return Helper<Ts...>::IsSupportedDecoder(format);
Daudio_decoder_factory.h30 virtual bool IsSupportedDecoder(const SdpAudioFormat& format) = 0;
/external/webrtc/test/
Dmock_audio_decoder_factory.h31 MOCK_METHOD(bool, IsSupportedDecoder, (const SdpAudioFormat&), (override));
59 ON_CALL(*factory, IsSupportedDecoder(_)).WillByDefault(Return(false)); in CreateUnusedFactory()
60 EXPECT_CALL(*factory, IsSupportedDecoder(_)).Times(AnyNumber()); in CreateUnusedFactory()
80 ON_CALL(*factory, IsSupportedDecoder(_)).WillByDefault(Return(false)); in CreateEmptyFactory()
81 EXPECT_CALL(*factory, IsSupportedDecoder(_)).Times(AnyNumber()); in CreateEmptyFactory()
Dfunction_audio_decoder_factory.h48 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function
Daudio_decoder_proxy_factory.h38 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function
/external/webrtc/pc/
Dpeer_connection_end_to_end_unittest.cc265 EXPECT_CALL(*mock_decoder_factory, IsSupportedDecoder(_)) in CreateForwardingMockDecoderFactory()
269 return real_decoder_factory->IsSupportedDecoder(format); in CreateForwardingMockDecoderFactory()
415 bool IsSupportedDecoder(const webrtc::SdpAudioFormat& format) override { in TEST_P() function in TEST_P::IdLoggingAudioDecoderFactory
416 return fact_->IsSupportedDecoder(format); in TEST_P()
/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Danalyze_audio.cc273 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function in webrtc::__anonfee723f60d11::ReplacementAudioDecoderFactory
/external/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_unittest.cc1004 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function in webrtc::ADFactory
1006 : fact_->IsSupportedDecoder(format); in IsSupportedDecoder()
/external/webrtc/media/engine/
Dwebrtc_voice_engine.cc1633 !engine()->decoder_factory_->IsSupportedDecoder(format)) { in SetRecvCodecs()