/external/webrtc/api/audio_codecs/test/ |
D | audio_decoder_factory_template_unittest.cc | 84 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/ |
D | audio_decoder_factory_template.h | 32 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);
|
D | audio_decoder_factory.h | 30 virtual bool IsSupportedDecoder(const SdpAudioFormat& format) = 0;
|
/external/webrtc/test/ |
D | mock_audio_decoder_factory.h | 31 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()
|
D | function_audio_decoder_factory.h | 48 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function
|
D | audio_decoder_proxy_factory.h | 38 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function
|
/external/webrtc/pc/ |
D | peer_connection_end_to_end_unittest.cc | 265 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/ |
D | analyze_audio.cc | 273 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function in webrtc::__anonfee723f60d11::ReplacementAudioDecoderFactory
|
/external/webrtc/modules/audio_coding/acm2/ |
D | audio_coding_module_unittest.cc | 1004 bool IsSupportedDecoder(const SdpAudioFormat& format) override { in IsSupportedDecoder() function in webrtc::ADFactory 1006 : fact_->IsSupportedDecoder(format); in IsSupportedDecoder()
|
/external/webrtc/media/engine/ |
D | webrtc_voice_engine.cc | 1633 !engine()->decoder_factory_->IsSupportedDecoder(format)) { in SetRecvCodecs()
|