commit | 85228d6af6c13c0a63ea11d8fe0bf240b752cfd0 | [log] [tgz] |
---|---|---|
author | ivoc <ivoc@webrtc.org> | Wed Jul 27 04:53:47 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Wed Jul 27 11:53:52 2016 +0000 |
tree | 77792852e7df8b4d77cd6e4ff39ee35b83915683 | |
parent | f22d3c48fa14502cd4c8e0ffc4c1eae4d7116b6f [diff] [blame] |
Regression test for issue where Opus DTX status was being forgotten. BUG=webrtc:6020 Review-Url: https://codereview.webrtc.org/2177263002 Cr-Commit-Position: refs/heads/master@{#13539}
diff --git a/webrtc/modules/audio_coding/codecs/audio_encoder.cc b/webrtc/modules/audio_coding/codecs/audio_encoder.cc index 6b7f5f8..c433dcd 100644 --- a/webrtc/modules/audio_coding/codecs/audio_encoder.cc +++ b/webrtc/modules/audio_coding/codecs/audio_encoder.cc
@@ -50,6 +50,10 @@ return !enable; } +bool AudioEncoder::GetDtx() const { + return false; +} + bool AudioEncoder::SetApplication(Application application) { return false; }