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

Unified Diff: webrtc/modules/video_processing/test/content_metrics_test.cc

Issue 1482913003: Initial VideoProcessing refactoring. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More lint. Created 5 years, 1 month 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
Index: webrtc/modules/video_processing/test/content_metrics_test.cc
diff --git a/webrtc/modules/video_processing/test/content_metrics_test.cc b/webrtc/modules/video_processing/test/content_metrics_test.cc
index 7c727d0745b50cae8b12ba3fb68e00649a3f87e5..7bdf2f11ffa19ec6947c6ab69436d58f89585b7c 100644
--- a/webrtc/modules/video_processing/test/content_metrics_test.cc
+++ b/webrtc/modules/video_processing/test/content_metrics_test.cc
@@ -16,13 +16,14 @@
namespace webrtc {
-TEST_F(VideoProcessingModuleTest, DISABLED_ON_IOS(ContentAnalysis)) {
+TEST_F(VideoProcessingTest, DISABLED_ON_IOS(ContentAnalysis)) {
VPMContentAnalysis ca__c(false);
VPMContentAnalysis ca__sse(true);
- VideoContentMetrics *_cM_c, *_cM_SSE;
+ VideoContentMetrics* _cM_c;
+ VideoContentMetrics* _cM_SSE;
- ca__c.Initialize(width_,height_);
- ca__sse.Initialize(width_,height_);
+ ca__c.Initialize(width_, height_);
+ ca__sse.Initialize(width_, height_);
rtc::scoped_ptr<uint8_t[]> video_buffer(new uint8_t[frame_length_]);
while (fread(video_buffer.get(), 1, frame_length_, source_file_)

Powered by Google App Engine
This is Rietveld 408576698