Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(992)

Unified Diff: webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc

Issue 2710913004: Step #3: Add flag for correctness mode in VideoProcessor integration tests. (Closed)
Patch Set: Nit. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d11398b91146b680f898ea203c2353a4fddf0766..70fadce5b32781cf8f0086e6895747993e77579e 100644
--- a/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
+++ b/webrtc/modules/video_coding/codecs/test/plot_videoprocessor_integrationtest.cc
@@ -26,6 +26,7 @@ const bool kHwCodec = false;
const bool kUseSingleCore = true;
// Test settings.
+const bool kCorrectnessMode = false;
const bool kBatchMode = true;
// Packet loss probability [0.0, 1.0].
@@ -69,7 +70,7 @@ class PlotVideoProcessorIntegrationTest
-1, // key_frame_interval
1, // num_temporal_layers
kErrorConcealmentOn, kDenoisingOn, kFrameDropperOn, kSpatialResizeOn,
- width, height, filename, kVerboseLogging, kBatchMode);
+ width, height, filename, kVerboseLogging, kCorrectnessMode, 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);
åsapersson 2017/03/09 11:48:57 Maybe the thresholds could be configured to some v
brandtr 2017/03/09 12:07:02 Yes, I considered that. But I would still have to
åsapersson 2017/03/09 12:46:47 Sounds good to me.
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698