diff --git a/modules/audio_coding/acm2/audio_coding_module_unittest.cc b/modules/audio_coding/acm2/audio_coding_module_unittest.cc index a83d9689cb..65e0d6ac22 100644 --- a/modules/audio_coding/acm2/audio_coding_module_unittest.cc +++ b/modules/audio_coding/acm2/audio_coding_module_unittest.cc @@ -1551,7 +1551,9 @@ TEST_F(AcmSenderBitExactnessNewApi, DISABLED_OpusManyChannels) { 50, test::AcmReceiveTestOldApi::kQuadOutput, decoder_factory); } -TEST_F(AcmSenderBitExactnessNewApi, OpusFromFormat_stereo_20ms_voip) { +// TODO(http://bugs.webrtc.org/12518): Enable the test after Opus has been +// updated. +TEST_F(AcmSenderBitExactnessNewApi, DISABLED_OpusFromFormat_stereo_20ms_voip) { auto config = AudioEncoderOpus::SdpToConfig( SdpAudioFormat("opus", 48000, 2, {{"stereo", "1"}})); // If not set, default will be kAudio in case of stereo. diff --git a/modules/audio_coding/neteq/neteq_unittest.cc b/modules/audio_coding/neteq/neteq_unittest.cc index 750de2d272..099127e51e 100644 --- a/modules/audio_coding/neteq/neteq_unittest.cc +++ b/modules/audio_coding/neteq/neteq_unittest.cc @@ -127,13 +127,9 @@ TEST_F(NetEqDecodingTest, MAYBE_TestOpusBitExactness) { absl::GetFlag(FLAGS_gen_ref)); } -#if !defined(WEBRTC_IOS) && defined(WEBRTC_NETEQ_UNITTEST_BITEXACT) && \ - defined(WEBRTC_CODEC_OPUS) -#define MAYBE_TestOpusDtxBitExactness TestOpusDtxBitExactness -#else -#define MAYBE_TestOpusDtxBitExactness DISABLED_TestOpusDtxBitExactness -#endif -TEST_F(NetEqDecodingTest, MAYBE_TestOpusDtxBitExactness) { +// TODO(http://bugs.webrtc.org/12518): Enable the test after Opus has been +// updated. +TEST_F(NetEqDecodingTest, DISABLED_TestOpusDtxBitExactness) { const std::string input_rtp_file = webrtc::test::ResourcePath("audio_coding/neteq_opus_dtx", "rtp");