| Index: webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
 | 
| diff --git a/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc b/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
 | 
| index 668867010a54aed804d9f304ba0dab7b3ecce2d2..d11398b91146b680f898ea203c2353a4fddf0766 100644
 | 
| --- a/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
 | 
| +++ b/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
 | 
| @@ -25,6 +25,9 @@ const VideoCodecType kVideoCodecType[] = {kVideoCodecVP8};
 | 
|  const bool kHwCodec = false;
 | 
|  const bool kUseSingleCore = true;
 | 
|  
 | 
| +// Test settings.
 | 
| +const bool kBatchMode = true;
 | 
| +
 | 
|  // Packet loss probability [0.0, 1.0].
 | 
|  const float kPacketLoss = 0.0f;
 | 
|  
 | 
| @@ -61,12 +64,12 @@ class PlotVideoProcessorIntegrationTest
 | 
|      rate_profile.num_frames = kNumFramesLong;
 | 
|      // Codec/network settings.
 | 
|      CodecParams process_settings;
 | 
| -    SetCodecParams(&process_settings, codec_type_, kHwCodec, kUseSingleCore,
 | 
| -                   kPacketLoss,
 | 
| -                   -1,  // key_frame_interval
 | 
| -                   1,   // num_temporal_layers
 | 
| -                   kErrorConcealmentOn, kDenoisingOn, kFrameDropperOn,
 | 
| -                   kSpatialResizeOn, width, height, filename, kVerboseLogging);
 | 
| +    SetCodecParams(
 | 
| +        &process_settings, codec_type_, kHwCodec, kUseSingleCore, kPacketLoss,
 | 
| +        -1,  // key_frame_interval
 | 
| +        1,   // num_temporal_layers
 | 
| +        kErrorConcealmentOn, kDenoisingOn, kFrameDropperOn, kSpatialResizeOn,
 | 
| +        width, height, filename, kVerboseLogging, kBatchMode);
 | 
|      // Thresholds for expected quality (PSNR avg, PSNR min, SSIM avg, SSIM min).
 | 
|      QualityThresholds quality_thresholds;
 | 
|      SetQualityThresholds(&quality_thresholds, 15.0, 10.0, 0.2, 0.1);
 | 
| 
 |