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

Unified Diff: webrtc/test/frame_utils.h

Issue 1679323002: Cleanup of webrtc::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 10 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 | « webrtc/test/frame_generator.cc ('k') | webrtc/test/frame_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/frame_utils.h
diff --git a/webrtc/test/statistics.h b/webrtc/test/frame_utils.h
similarity index 55%
copy from webrtc/test/statistics.h
copy to webrtc/test/frame_utils.h
index d4a111e0615e8928305532c0aafbdec3660a875f..42e2cba67e1f6c4e50a6fe7b9aa8bee10c20d200 100644
--- a/webrtc/test/statistics.h
+++ b/webrtc/test/frame_utils.h
@@ -7,30 +7,24 @@
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef WEBRTC_TEST_STATISTICS_H_
-#define WEBRTC_TEST_STATISTICS_H_
+#ifndef WEBRTC_TEST_FRAME_UTILS_H_
+#define WEBRTC_TEST_FRAME_UTILS_H_
-#include "webrtc/typedefs.h"
+#include "webrtc/base/basictypes.h"
namespace webrtc {
+class VideoFrame;
namespace test {
-class Statistics {
- public:
- Statistics();
+bool EqualPlane(const uint8_t* data1,
+ const uint8_t* data2,
+ int stride,
+ int width,
+ int height);
- void AddSample(double sample);
+bool FramesEqual(const webrtc::VideoFrame& f1, const webrtc::VideoFrame& f2);
- double Mean() const;
- double Variance() const;
- double StandardDeviation() const;
-
- private:
- double sum_;
- double sum_squared_;
- uint64_t count_;
-};
} // namespace test
} // namespace webrtc
-#endif // WEBRTC_TEST_STATISTICS_H_
+#endif // WEBRTC_TEST_FRAME_UTILS_H_
« no previous file with comments | « webrtc/test/frame_generator.cc ('k') | webrtc/test/frame_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698