Stopped using the NetEqDecoder enum internally in NetEq.
NetEqDecoder is still used in the external interfaces, but this change
opens up the ability to use SdpAudioFormats directly, once appropriate
interfaces have been added.
BUG=webrtc:5805
Review-Url: https://codereview.webrtc.org/2355503002
Cr-Commit-Position: refs/heads/master@{#14368}
diff --git a/webrtc/modules/audio_coding/neteq/delay_manager.h b/webrtc/modules/audio_coding/neteq/delay_manager.h
index 6f3c14a..2f928f1 100644
--- a/webrtc/modules/audio_coding/neteq/delay_manager.h
+++ b/webrtc/modules/audio_coding/neteq/delay_manager.h
@@ -91,7 +91,9 @@
// includes any extra delay set through the set_extra_delay_ms() method.
virtual int TargetLevel() const;
- virtual void LastDecoderType(NetEqDecoder decoder_type);
+ // Informs the delay manager whether or not the last decoded packet contained
+ // speech.
+ virtual void LastDecodedWasCngOrDtmf(bool it_was);
// Accessors and mutators.
// Assuming |delay| is in valid range.