Index: webrtc/modules/audio_coding/main/acm2/codec_owner.h |
diff --git a/webrtc/modules/audio_coding/main/acm2/codec_owner.h b/webrtc/modules/audio_coding/main/acm2/codec_owner.h |
index 3835c2888f05024012129dc425f9b4882c093118..d2d93cf539eed2db5bd32815b13b6dc38728557f 100644 |
--- a/webrtc/modules/audio_coding/main/acm2/codec_owner.h |
+++ b/webrtc/modules/audio_coding/main/acm2/codec_owner.h |
@@ -15,13 +15,19 @@ |
#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/common_types.h" |
#include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
-#include "webrtc/modules/audio_coding/codecs/isac/main/interface/audio_encoder_isac.h" |
+#include "webrtc/modules/audio_coding/codecs/audio_decoder.h" |
#include "webrtc/modules/audio_coding/main/interface/audio_coding_module_typedefs.h" |
+#if defined(WEBRTC_CODEC_ISAC) || defined(WEBRTC_CODEC_ISACFX) |
+#include "webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h" |
+#else |
+// Dummy implementation, for when we don't have iSAC. |
namespace webrtc { |
+class LockedIsacBandwidthInfo {}; |
+} |
+#endif |
-class AudioDecoder; |
- |
+namespace webrtc { |
namespace acm2 { |
class CodecOwner { |