Include files from webrtc/.. paths in tools/

BUG=1662
R=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1547004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4166 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-06-04 08:14:10 +00:00
parent 5156c94f89
commit ba7f6a8614
11 changed files with 18 additions and 24 deletions

View File

@ -14,7 +14,7 @@
#include <iomanip>
#include <sstream>
#include "tools/converter/converter.h"
#include "webrtc/tools/converter/converter.h"
#ifdef WIN32
#define SEPARATOR '\\'
@ -170,5 +170,3 @@ std::string Converter::FormFrameName(int width, int number) {
} // namespace test
} // namespace webrtc

View File

@ -13,8 +13,8 @@
#include <string>
#include "libyuv/convert.h"
#include "libyuv/compare.h"
#include "third_party/libyuv/include/libyuv/compare.h"
#include "third_party/libyuv/include/libyuv/convert.h"
namespace webrtc {
namespace test {

View File

@ -14,8 +14,8 @@
#include <string>
#include <vector>
#include "tools/converter/converter.h"
#include "tools/simple_command_line_parser.h"
#include "webrtc/tools/converter/converter.h"
#include "webrtc/tools/simple_command_line_parser.h"
/*
* A command-line tool based on libyuv to convert a set of RGBA files to a YUV
@ -86,4 +86,3 @@ int main(int argc, char** argv) {
return -1;
}
}

View File

@ -10,12 +10,12 @@
#include <cstdio>
#include <cstdlib>
#include <string>
#include <map>
#include <string>
#include <vector>
#include "tools/frame_analyzer/video_quality_analysis.h"
#include "tools/simple_command_line_parser.h"
#include "webrtc/tools/frame_analyzer/video_quality_analysis.h"
#include "webrtc/tools/simple_command_line_parser.h"
/*
* A command line tool running PSNR and SSIM on a reference video and a test

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "tools/frame_analyzer/video_quality_analysis.h"
#include "webrtc/tools/frame_analyzer/video_quality_analysis.h"
#include <cassert>
#include <cstdio>

View File

@ -14,8 +14,8 @@
#include <string>
#include <vector>
#include "libyuv/convert.h"
#include "libyuv/compare.h"
#include "third_party/libyuv/include/libyuv/compare.h"
#include "third_party/libyuv/include/libyuv/convert.h"
namespace webrtc {
namespace test {

View File

@ -106,4 +106,3 @@ int main(int argc, char** argv) {
return webrtc::EditFrames(in_path, width, height, first_frame_to_cut,
interval, last_frame_to_cut, out_path);
}

View File

@ -13,7 +13,7 @@
#include <cstdlib>
#include <fstream>
#include "gtest/gtest.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
#include "webrtc/test/testsupport/fileutils.h"
@ -211,4 +211,3 @@ TEST_F(FrameEditingTest, RepeatFrames) {
}
} // namespace test
} // namespace webrtc

View File

@ -14,8 +14,8 @@
#include <string>
#include <vector>
#include "tools/frame_analyzer/video_quality_analysis.h"
#include "tools/simple_command_line_parser.h"
#include "webrtc/tools/frame_analyzer/video_quality_analysis.h"
#include "webrtc/tools/simple_command_line_parser.h"
void CompareFiles(const char* reference_file_name, const char* test_file_name,
const char* results_file_name, int width, int height) {

View File

@ -11,12 +11,12 @@
#ifndef WEBRTC_TOOLS_SIMPLE_COMMAND_LINE_PARSER_H_
#define WEBRTC_TOOLS_SIMPLE_COMMAND_LINE_PARSER_H_
#include <string>
#include <map>
#include <string>
#include <vector>
#include "system_wrappers/interface/constructor_magic.h"
#include "test/testsupport/gtest_prod_util.h"
#include "webrtc/system_wrappers/interface/constructor_magic.h"
#include "webrtc/test/testsupport/gtest_prod_util.h"
// This is a very basic command line parsing class. We pass the command line
// arguments and their number and the class forms a vector out of these. Than we

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "gtest/gtest.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/tools/simple_command_line_parser.h"
namespace webrtc {
@ -84,4 +84,3 @@ TEST_F(CommandLineParserTest, GetCommandLineFlagValue) {
} // namespace test
} // namespace webrtc