Index: webrtc/modules/video_coding/codecs/test/videoprocessor.h |
diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
index 0887f4cc68e5b15253badc8ce41c6b229d48c223..dba204f1695125885a0bffc9219eb1c6100e8c97 100644 |
--- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
+++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
@@ -11,6 +11,7 @@ |
#ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_H_ |
#define WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_H_ |
+#include <memory> |
#include <string> |
#include "webrtc/base/checks.h" |
@@ -23,6 +24,9 @@ |
#include "webrtc/video_frame.h" |
namespace webrtc { |
+ |
+class VideoBitrateAllocator; |
+ |
namespace test { |
// Defines which frame types shall be excluded from packet loss and when. |
@@ -191,6 +195,7 @@ class VideoProcessorImpl : public VideoProcessor { |
webrtc::VideoEncoder* encoder_; |
webrtc::VideoDecoder* decoder_; |
+ std::unique_ptr<VideoBitrateAllocator> bitrate_allocator_; |
FrameReader* frame_reader_; |
FrameWriter* frame_writer_; |
PacketManipulator* packet_manipulator_; |