summaryrefslogtreecommitdiff
path: root/common_video
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-06-04 09:02:37 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-06-04 09:02:37 +0000
commit026d1ce6fc5608190aa5fd48f51278c60515c093 (patch)
tree107ab541265601d25123bc8395973304b2d33d89 /common_video
parentcff5c03bbf63004ab85478a5660d341d3366ef63 (diff)
downloadwebrtc-026d1ce6fc5608190aa5fd48f51278c60515c093.tar.gz
Include files from webrtc/.. paths in common_video/
BUG=1662 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1546004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4167 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_video')
-rw-r--r--common_video/i420_video_frame.cc2
-rw-r--r--common_video/i420_video_frame_unittest.cc2
-rw-r--r--common_video/interface/i420_video_frame.h1
-rw-r--r--common_video/interface/video_image.h2
-rw-r--r--common_video/jpeg/data_manager.cc2
-rw-r--r--common_video/jpeg/include/jpeg.h6
-rw-r--r--common_video/jpeg/jpeg.cc10
-rw-r--r--common_video/jpeg/jpeg_unittest.cc12
-rw-r--r--common_video/libyuv/include/scaler.h6
-rw-r--r--common_video/libyuv/include/webrtc_libyuv.h6
-rw-r--r--common_video/libyuv/libyuv_unittest.cc12
-rw-r--r--common_video/libyuv/scaler.cc4
-rw-r--r--common_video/libyuv/scaler_unittest.cc8
-rw-r--r--common_video/libyuv/webrtc_libyuv.cc4
-rw-r--r--common_video/plane.cc2
-rw-r--r--common_video/plane.h4
-rw-r--r--common_video/plane_unittest.cc4
17 files changed, 43 insertions, 44 deletions
diff --git a/common_video/i420_video_frame.cc b/common_video/i420_video_frame.cc
index 25893acd..77b76486 100644
--- a/common_video/i420_video_frame.cc
+++ b/common_video/i420_video_frame.cc
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/interface/i420_video_frame.h"
+#include "webrtc/common_video/interface/i420_video_frame.h"
#include <algorithm> // swap
diff --git a/common_video/i420_video_frame_unittest.cc b/common_video/i420_video_frame_unittest.cc
index 012cf877..5c738bd7 100644
--- a/common_video/i420_video_frame_unittest.cc
+++ b/common_video/i420_video_frame_unittest.cc
@@ -11,7 +11,7 @@
#include <math.h>
#include <string.h>
-#include "gtest/gtest.h"
+#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/common_video/interface/i420_video_frame.h"
#include "webrtc/system_wrappers/interface/ref_count.h"
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
diff --git a/common_video/interface/i420_video_frame.h b/common_video/interface/i420_video_frame.h
index 9ca31004..5aaf8c08 100644
--- a/common_video/interface/i420_video_frame.h
+++ b/common_video/interface/i420_video_frame.h
@@ -134,4 +134,3 @@ class I420VideoFrame {
} // namespace webrtc
#endif // COMMON_VIDEO_INTERFACE_I420_VIDEO_FRAME_H
-
diff --git a/common_video/interface/video_image.h b/common_video/interface/video_image.h
index 3c6592d9..2a7c4459 100644
--- a/common_video/interface/video_image.h
+++ b/common_video/interface/video_image.h
@@ -11,8 +11,8 @@
#ifndef COMMON_VIDEO_INTERFACE_VIDEO_IMAGE_H
#define COMMON_VIDEO_INTERFACE_VIDEO_IMAGE_H
-#include "typedefs.h"
#include <stdlib.h>
+#include "webrtc/typedefs.h"
namespace webrtc
{
diff --git a/common_video/jpeg/data_manager.cc b/common_video/jpeg/data_manager.cc
index a5a7a488..72380e7c 100644
--- a/common_video/jpeg/data_manager.cc
+++ b/common_video/jpeg/data_manager.cc
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/jpeg/data_manager.h"
+#include "webrtc/common_video/jpeg/data_manager.h"
namespace webrtc
{
diff --git a/common_video/jpeg/include/jpeg.h b/common_video/jpeg/include/jpeg.h
index 11e01d36..7c5eec2b 100644
--- a/common_video/jpeg/include/jpeg.h
+++ b/common_video/jpeg/include/jpeg.h
@@ -11,9 +11,9 @@
#ifndef WEBRTC_COMMON_VIDEO_JPEG
#define WEBRTC_COMMON_VIDEO_JPEG
-#include "typedefs.h"
-#include "common_video/interface/i420_video_frame.h"
-#include "common_video/interface/video_image.h" // EncodedImage
+#include "webrtc/common_video/interface/i420_video_frame.h"
+#include "webrtc/common_video/interface/video_image.h" // EncodedImage
+#include "webrtc/typedefs.h"
// jpeg forward declaration
struct jpeg_compress_struct;
diff --git a/common_video/jpeg/jpeg.cc b/common_video/jpeg/jpeg.cc
index bf61dc73..e8a23af5 100644
--- a/common_video/jpeg/jpeg.cc
+++ b/common_video/jpeg/jpeg.cc
@@ -15,11 +15,11 @@
#include <stdio.h>
#include <string.h>
-#include "common_video/jpeg/include/jpeg.h"
-#include "common_video/jpeg/data_manager.h"
-#include "common_video/libyuv/include/webrtc_libyuv.h"
-#include "libyuv.h"
-#include "libyuv/mjpeg_decoder.h"
+#include "third_party/libyuv/include/libyuv.h"
+#include "third_party/libyuv/include/libyuv/mjpeg_decoder.h"
+#include "webrtc/common_video/jpeg/data_manager.h"
+#include "webrtc/common_video/jpeg/include/jpeg.h"
+#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
extern "C" {
#if defined(USE_SYSTEM_LIBJPEG)
diff --git a/common_video/jpeg/jpeg_unittest.cc b/common_video/jpeg/jpeg_unittest.cc
index 479482c5..afe98330 100644
--- a/common_video/jpeg/jpeg_unittest.cc
+++ b/common_video/jpeg/jpeg_unittest.cc
@@ -11,12 +11,12 @@
#include <cstdio>
#include <string>
-#include "common_video/interface/video_image.h"
-#include "common_video/jpeg/include/jpeg.h"
-#include "common_video/libyuv/include/webrtc_libyuv.h"
-#include "gtest/gtest.h"
-#include "testsupport/fileutils.h"
-#include "modules/interface/module_common_types.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "webrtc/common_video/interface/video_image.h"
+#include "webrtc/common_video/jpeg/include/jpeg.h"
+#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
+#include "webrtc/modules/interface/module_common_types.h"
+#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {
diff --git a/common_video/libyuv/include/scaler.h b/common_video/libyuv/include/scaler.h
index 37d44134..ce7462c1 100644
--- a/common_video/libyuv/include/scaler.h
+++ b/common_video/libyuv/include/scaler.h
@@ -15,9 +15,9 @@
#ifndef WEBRTC_COMMON_VIDEO_LIBYUV_INCLUDE_SCALER_H_
#define WEBRTC_COMMON_VIDEO_LIBYUV_INCLUDE_SCALER_H_
-#include "common_video/interface/i420_video_frame.h"
-#include "common_video/libyuv/include/webrtc_libyuv.h"
-#include "typedefs.h"
+#include "webrtc/common_video/interface/i420_video_frame.h"
+#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
+#include "webrtc/typedefs.h"
namespace webrtc {
diff --git a/common_video/libyuv/include/webrtc_libyuv.h b/common_video/libyuv/include/webrtc_libyuv.h
index 1bea4f18..b794679b 100644
--- a/common_video/libyuv/include/webrtc_libyuv.h
+++ b/common_video/libyuv/include/webrtc_libyuv.h
@@ -17,9 +17,9 @@
#include <stdio.h>
-#include "common_types.h" // RawVideoTypes.
-#include "common_video/interface/i420_video_frame.h"
-#include "typedefs.h"
+#include "webrtc/common_types.h" // RawVideoTypes.
+#include "webrtc/common_video/interface/i420_video_frame.h"
+#include "webrtc/typedefs.h"
namespace webrtc {
diff --git a/common_video/libyuv/libyuv_unittest.cc b/common_video/libyuv/libyuv_unittest.cc
index 3ed80be8..8c79816e 100644
--- a/common_video/libyuv/libyuv_unittest.cc
+++ b/common_video/libyuv/libyuv_unittest.cc
@@ -11,12 +11,12 @@
#include <math.h>
#include <string.h>
-#include "common_video/interface/i420_video_frame.h"
-#include "common_video/libyuv/include/webrtc_libyuv.h"
-#include "gtest/gtest.h"
-#include "system_wrappers/interface/tick_util.h"
-#include "system_wrappers/interface/scoped_ptr.h"
-#include "testsupport/fileutils.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "webrtc/common_video/interface/i420_video_frame.h"
+#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
+#include "webrtc/system_wrappers/interface/scoped_ptr.h"
+#include "webrtc/system_wrappers/interface/tick_util.h"
+#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {
diff --git a/common_video/libyuv/scaler.cc b/common_video/libyuv/scaler.cc
index c97b7067..2c2418be 100644
--- a/common_video/libyuv/scaler.cc
+++ b/common_video/libyuv/scaler.cc
@@ -8,9 +8,9 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/libyuv/include/scaler.h"
+#include "webrtc/common_video/libyuv/include/scaler.h"
-#include "libyuv.h"
+#include "third_party/libyuv/include/libyuv.h"
namespace webrtc {
diff --git a/common_video/libyuv/scaler_unittest.cc b/common_video/libyuv/scaler_unittest.cc
index cc86415a..421e06c7 100644
--- a/common_video/libyuv/scaler_unittest.cc
+++ b/common_video/libyuv/scaler_unittest.cc
@@ -11,10 +11,10 @@
#include <math.h>
#include <string.h>
-#include "common_video/libyuv/include/scaler.h"
-#include "gtest/gtest.h"
-#include "system_wrappers/interface/tick_util.h"
-#include "testsupport/fileutils.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "webrtc/common_video/libyuv/include/scaler.h"
+#include "webrtc/system_wrappers/interface/tick_util.h"
+#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {
diff --git a/common_video/libyuv/webrtc_libyuv.cc b/common_video/libyuv/webrtc_libyuv.cc
index 75023552..ba23f9bc 100644
--- a/common_video/libyuv/webrtc_libyuv.cc
+++ b/common_video/libyuv/webrtc_libyuv.cc
@@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/libyuv/include/webrtc_libyuv.h"
+#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
#include <assert.h>
#include <string.h>
-#include "libyuv.h"
+#include "third_party/libyuv/include/libyuv.h"
namespace webrtc {
diff --git a/common_video/plane.cc b/common_video/plane.cc
index 2362c4d8..7d879301 100644
--- a/common_video/plane.cc
+++ b/common_video/plane.cc
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/plane.h"
+#include "webrtc/common_video/plane.h"
#include <algorithm> // swap
#include <cstring> // memcpy
diff --git a/common_video/plane.h b/common_video/plane.h
index 0b94f99d..1b74f37e 100644
--- a/common_video/plane.h
+++ b/common_video/plane.h
@@ -11,8 +11,8 @@
#ifndef COMMON_VIDEO_PLANE_H
#define COMMON_VIDEO_PLANE_H
-#include "system_wrappers/interface/aligned_malloc.h"
-#include "typedefs.h" //NOLINT
+#include "webrtc/system_wrappers/interface/aligned_malloc.h"
+#include "webrtc/typedefs.h"
namespace webrtc {
diff --git a/common_video/plane_unittest.cc b/common_video/plane_unittest.cc
index 19597ce9..d1655982 100644
--- a/common_video/plane_unittest.cc
+++ b/common_video/plane_unittest.cc
@@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "common_video/plane.h"
+#include "webrtc/common_video/plane.h"
#include <math.h>
#include <string.h>
-#include "gtest/gtest.h"
+#include "testing/gtest/include/gtest/gtest.h"
namespace webrtc {