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

Side by Side Diff: webrtc/rtc_tools/frame_analyzer/video_quality_analysis.h

Issue 2965593002: Move webrtc/{tools => rtc_tools} (Closed)
Patch Set: Adding back root changes Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_ 11 #ifndef WEBRTC_RTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_
12 #define WEBRTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_ 12 #define WEBRTC_RTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_
13 13
14 #include <string> 14 #include <string>
15 #include <vector> 15 #include <vector>
16 #include <utility> 16 #include <utility>
17 17
18 #include "libyuv/compare.h" // NOLINT 18 #include "libyuv/compare.h" // NOLINT
19 #include "libyuv/convert.h" // NOLINT 19 #include "libyuv/convert.h" // NOLINT
20 20
21 namespace webrtc { 21 namespace webrtc {
22 namespace test { 22 namespace test {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 // frame has corresponded |frame_number| 0. 140 // frame has corresponded |frame_number| 0.
141 bool ExtractFrameFromY4mFile(const char* i420_file_name, 141 bool ExtractFrameFromY4mFile(const char* i420_file_name,
142 int width, 142 int width,
143 int height, 143 int height,
144 int frame_number, 144 int frame_number,
145 uint8_t* result_frame); 145 uint8_t* result_frame);
146 146
147 } // namespace test 147 } // namespace test
148 } // namespace webrtc 148 } // namespace webrtc
149 149
150 #endif // WEBRTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_ 150 #endif // WEBRTC_RTC_TOOLS_FRAME_ANALYZER_VIDEO_QUALITY_ANALYSIS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698