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:
parent
5156c94f89
commit
ba7f6a8614
@ -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
|
||||
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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 {
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user