Move BitrateAllocator from BitrateController logic to Call.
This is a step on the way to have variable bitrate for audio and is
intended to be as much of a no-op as possible.
BUG=webrtc:5079
Review URL: https://codereview.webrtc.org/1441673002
Cr-Original-Commit-Position: refs/heads/master@{#10630}
Cr-Mirrored-From: https://chromium.googlesource.com/external/webrtc
Cr-Mirrored-Commit: 0e7e259ebd69993bb5670a991f43aa1b06c9bf9e
diff --git a/video_engine/vie_encoder.h b/video_engine/vie_encoder.h
index 6421504..96889a2 100644
--- a/video_engine/vie_encoder.h
+++ b/video_engine/vie_encoder.h
@@ -19,7 +19,6 @@
#include "webrtc/base/thread_annotations.h"
#include "webrtc/common_types.h"
#include "webrtc/frame_callback.h"
-#include "webrtc/modules/bitrate_controller/include/bitrate_allocator.h"
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
#include "webrtc/modules/video_coding/main/interface/video_coding_defines.h"
#include "webrtc/modules/video_processing/main/interface/video_processing.h"
@@ -28,6 +27,8 @@
namespace webrtc {
+class BitrateAllocator;
+class BitrateObserver;
class Config;
class CriticalSectionWrapper;
class EncodedImageCallback;