| Index: webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc
|
| index 9f8ff49bee6a2450a3ccfa3b394ce87839562fd2..ec9d7567ce9108639ff1d9d686f0c9021bc8d931 100644
|
| --- a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc
|
| +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc
|
| @@ -268,7 +268,7 @@ class VideoProcessorIntegrationTest: public testing::Test {
|
| }
|
|
|
| // For every encoded frame, update the rate control metrics.
|
| - void UpdateRateControlMetrics(int frame_num, VideoFrameType frame_type) {
|
| + void UpdateRateControlMetrics(int frame_num, FrameType frame_type) {
|
| float encoded_size_kbits = processor_->EncodedFrameSize() * 8.0f / 1000.0f;
|
| // Update layer data.
|
| // Update rate mismatch relative to per-frame bandwidth for delta frames.
|
| @@ -450,7 +450,7 @@ class VideoProcessorIntegrationTest: public testing::Test {
|
| ResetRateControlMetrics(
|
| rate_profile.frame_index_rate_update[update_index + 1]);
|
| int frame_number = 0;
|
| - VideoFrameType frame_type = kDeltaFrame;
|
| + FrameType frame_type = kDeltaFrame;
|
| while (processor_->ProcessFrame(frame_number) &&
|
| frame_number < num_frames) {
|
| // Get the layer index for the frame |frame_number|.
|
|
|