From 6f3d8fcfc08686a9e8852ad225d54cca6e197875 Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Mon, 27 May 2013 14:12:16 +0000 Subject: [PATCH] Include files from webrtc/.. paths in video_processing/ BUG=1662 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1558004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4109 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../main/interface/video_processing.h | 8 ++++---- .../main/interface/video_processing_defines.h | 2 +- .../video_processing/main/source/brighten.cc | 4 ++-- .../video_processing/main/source/brighten.h | 4 ++-- .../main/source/brightness_detection.cc | 6 +++--- .../main/source/brightness_detection.h | 4 ++-- .../main/source/color_enhancement.cc | 6 +++--- .../main/source/color_enhancement.h | 4 ++-- .../main/source/color_enhancement_private.h | 2 +- .../main/source/content_analysis.cc | 7 ++++--- .../main/source/content_analysis.h | 8 ++++---- .../main/source/content_analysis_sse2.cc | 2 +- .../video_processing/main/source/deflickering.cc | 8 ++++---- .../video_processing/main/source/deflickering.h | 5 ++--- .../video_processing/main/source/denoising.cc | 4 ++-- .../video_processing/main/source/denoising.h | 4 ++-- .../main/source/frame_preprocessor.cc | 4 ++-- .../main/source/frame_preprocessor.h | 10 +++++----- .../main/source/spatial_resampler.cc | 2 +- .../main/source/spatial_resampler.h | 10 +++++----- .../main/source/video_decimator.cc | 6 +++--- .../video_processing/main/source/video_decimator.h | 4 ++-- .../main/source/video_processing_impl.cc | 6 +++--- .../main/source/video_processing_impl.h | 14 +++++++------- .../main/test/unit_test/color_enhancement_test.cc | 10 +++++----- .../main/test/unit_test/content_metrics_test.cc | 6 +++--- .../main/test/unit_test/denoising_test.cc | 10 +++++----- .../main/test/unit_test/unit_test.cc | 8 ++++---- .../main/test/unit_test/unit_test.h | 8 ++++---- 29 files changed, 88 insertions(+), 88 deletions(-) diff --git a/webrtc/modules/video_processing/main/interface/video_processing.h b/webrtc/modules/video_processing/main/interface/video_processing.h index 9effc33614..09a4b2e890 100644 --- a/webrtc/modules/video_processing/main/interface/video_processing.h +++ b/webrtc/modules/video_processing/main/interface/video_processing.h @@ -18,10 +18,10 @@ #ifndef WEBRTC_MODULES_INTERFACE_VIDEO_PROCESSING_H #define WEBRTC_MODULES_INTERFACE_VIDEO_PROCESSING_H -#include "common_video/interface/i420_video_frame.h" -#include "module.h" -#include "module_common_types.h" -#include "video_processing_defines.h" +#include "webrtc/common_video/interface/i420_video_frame.h" +#include "webrtc/modules/interface/module.h" +#include "webrtc/modules/interface/module_common_types.h" +#include "webrtc/modules/video_processing/main/interface/video_processing_defines.h" /** The module is largely intended to process video streams, except functionality diff --git a/webrtc/modules/video_processing/main/interface/video_processing_defines.h b/webrtc/modules/video_processing/main/interface/video_processing_defines.h index d9bebd4c23..fd47979a52 100644 --- a/webrtc/modules/video_processing/main/interface/video_processing_defines.h +++ b/webrtc/modules/video_processing/main/interface/video_processing_defines.h @@ -16,7 +16,7 @@ #ifndef WEBRTC_MODULES_INTERFACE_VIDEO_PROCESSING_DEFINES_H #define WEBRTC_MODULES_INTERFACE_VIDEO_PROCESSING_DEFINES_H -#include "typedefs.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/brighten.cc b/webrtc/modules/video_processing/main/source/brighten.cc index dd3d70178e..12da5746fd 100644 --- a/webrtc/modules/video_processing/main/source/brighten.cc +++ b/webrtc/modules/video_processing/main/source/brighten.cc @@ -8,11 +8,11 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "modules/video_processing/main/source/brighten.h" +#include "webrtc/modules/video_processing/main/source/brighten.h" #include -#include "system_wrappers/interface/trace.h" +#include "webrtc/system_wrappers/interface/trace.h" namespace webrtc { namespace VideoProcessing { diff --git a/webrtc/modules/video_processing/main/source/brighten.h b/webrtc/modules/video_processing/main/source/brighten.h index 5dfb4072a8..4d4c0f6dfd 100644 --- a/webrtc/modules/video_processing/main/source/brighten.h +++ b/webrtc/modules/video_processing/main/source/brighten.h @@ -11,8 +11,8 @@ #ifndef MODULES_VIDEO_PROCESSING_MAIN_SOURCE_BRIGHTEN_H_ #define MODULES_VIDEO_PROCESSING_MAIN_SOURCE_BRIGHTEN_H_ -#include "typedefs.h" -#include "modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/typedefs.h" namespace webrtc { namespace VideoProcessing { diff --git a/webrtc/modules/video_processing/main/source/brightness_detection.cc b/webrtc/modules/video_processing/main/source/brightness_detection.cc index fc4a4bab5b..5f44f09c7b 100644 --- a/webrtc/modules/video_processing/main/source/brightness_detection.cc +++ b/webrtc/modules/video_processing/main/source/brightness_detection.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "video_processing.h" -#include "brightness_detection.h" -#include "trace.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/source/brightness_detection.h" +#include "webrtc/system_wrappers/interface/trace.h" #include diff --git a/webrtc/modules/video_processing/main/source/brightness_detection.h b/webrtc/modules/video_processing/main/source/brightness_detection.h index 4d0f3a7ca5..506e26dfe3 100644 --- a/webrtc/modules/video_processing/main/source/brightness_detection.h +++ b/webrtc/modules/video_processing/main/source/brightness_detection.h @@ -14,8 +14,8 @@ #ifndef VPM_BRIGHTNESS_DETECTION_H #define VPM_BRIGHTNESS_DETECTION_H -#include "typedefs.h" -#include "video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/color_enhancement.cc b/webrtc/modules/video_processing/main/source/color_enhancement.cc index 918fec7698..ed568faa1f 100644 --- a/webrtc/modules/video_processing/main/source/color_enhancement.cc +++ b/webrtc/modules/video_processing/main/source/color_enhancement.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "color_enhancement.h" -#include "color_enhancement_private.h" -#include "trace.h" #include // NULL +#include "webrtc/modules/video_processing/main/source/color_enhancement.h" +#include "webrtc/modules/video_processing/main/source/color_enhancement_private.h" +#include "webrtc/system_wrappers/interface/trace.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/color_enhancement.h b/webrtc/modules/video_processing/main/source/color_enhancement.h index 33381d0bf6..f720da2b61 100644 --- a/webrtc/modules/video_processing/main/source/color_enhancement.h +++ b/webrtc/modules/video_processing/main/source/color_enhancement.h @@ -14,8 +14,8 @@ #ifndef VPM_COLOR_ENHANCEMENT_H #define VPM_COLOR_ENHANCEMENT_H -#include "typedefs.h" -#include "video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/color_enhancement_private.h b/webrtc/modules/video_processing/main/source/color_enhancement_private.h index 79fde15988..863135c96e 100644 --- a/webrtc/modules/video_processing/main/source/color_enhancement_private.h +++ b/webrtc/modules/video_processing/main/source/color_enhancement_private.h @@ -1,7 +1,7 @@ #ifndef VPM_COLOR_ENHANCEMENT_PRIVATE_H #define VPM_COLOR_ENHANCEMENT_PRIVATE_H -#include "typedefs.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/content_analysis.cc b/webrtc/modules/video_processing/main/source/content_analysis.cc index c8f3c83340..a5b75affba 100644 --- a/webrtc/modules/video_processing/main/source/content_analysis.cc +++ b/webrtc/modules/video_processing/main/source/content_analysis.cc @@ -7,13 +7,14 @@ * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ -#include "content_analysis.h" -#include "tick_util.h" -#include "system_wrappers/interface/cpu_features_wrapper.h" +#include "webrtc/modules/video_processing/main/source/content_analysis.h" #include #include +#include "webrtc/system_wrappers/interface/cpu_features_wrapper.h" +#include "webrtc/system_wrappers/interface/tick_util.h" + namespace webrtc { VPMContentAnalysis::VPMContentAnalysis(bool runtime_cpu_detection): diff --git a/webrtc/modules/video_processing/main/source/content_analysis.h b/webrtc/modules/video_processing/main/source/content_analysis.h index 2322e40766..4cdd185c95 100644 --- a/webrtc/modules/video_processing/main/source/content_analysis.h +++ b/webrtc/modules/video_processing/main/source/content_analysis.h @@ -11,10 +11,10 @@ #ifndef VPM_CONTENT_ANALYSIS_H #define VPM_CONTENT_ANALYSIS_H -#include "common_video/interface/i420_video_frame.h" -#include "typedefs.h" -#include "module_common_types.h" -#include "video_processing_defines.h" +#include "webrtc/common_video/interface/i420_video_frame.h" +#include "webrtc/modules/interface/module_common_types.h" +#include "webrtc/modules/video_processing/main/interface/video_processing_defines.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/content_analysis_sse2.cc b/webrtc/modules/video_processing/main/source/content_analysis_sse2.cc index 8214bf9d78..565312bc08 100644 --- a/webrtc/modules/video_processing/main/source/content_analysis_sse2.cc +++ b/webrtc/modules/video_processing/main/source/content_analysis_sse2.cc @@ -8,7 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "content_analysis.h" +#include "webrtc/modules/video_processing/main/source/content_analysis.h" #include #include diff --git a/webrtc/modules/video_processing/main/source/deflickering.cc b/webrtc/modules/video_processing/main/source/deflickering.cc index 4bd617b96a..74d0e12add 100644 --- a/webrtc/modules/video_processing/main/source/deflickering.cc +++ b/webrtc/modules/video_processing/main/source/deflickering.cc @@ -8,14 +8,14 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "webrtc/modules/video_processing/main/source/deflickering.h" #include #include -#include "deflickering.h" -#include "trace.h" -#include "signal_processing_library.h" -#include "sort.h" +#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" +#include "webrtc/system_wrappers/interface/sort.h" +#include "webrtc/system_wrappers/interface/trace.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/deflickering.h b/webrtc/modules/video_processing/main/source/deflickering.h index 5d4ae2dd22..ae02bfea61 100644 --- a/webrtc/modules/video_processing/main/source/deflickering.h +++ b/webrtc/modules/video_processing/main/source/deflickering.h @@ -15,8 +15,8 @@ #ifndef VPM_DEFLICKERING_H #define VPM_DEFLICKERING_H -#include "typedefs.h" -#include "video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/typedefs.h" #include // NULL @@ -63,4 +63,3 @@ private: } //namespace #endif // VPM_DEFLICKERING_H - diff --git a/webrtc/modules/video_processing/main/source/denoising.cc b/webrtc/modules/video_processing/main/source/denoising.cc index 801a9702a6..c0ea0fbcd7 100644 --- a/webrtc/modules/video_processing/main/source/denoising.cc +++ b/webrtc/modules/video_processing/main/source/denoising.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "denoising.h" -#include "trace.h" +#include "webrtc/modules/video_processing/main/source/denoising.h" +#include "webrtc/system_wrappers/interface/trace.h" #include diff --git a/webrtc/modules/video_processing/main/source/denoising.h b/webrtc/modules/video_processing/main/source/denoising.h index 3e61dcdf26..4b2cb87a32 100644 --- a/webrtc/modules/video_processing/main/source/denoising.h +++ b/webrtc/modules/video_processing/main/source/denoising.h @@ -14,8 +14,8 @@ #ifndef VPM_DENOISING_H #define VPM_DENOISING_H -#include "typedefs.h" -#include "video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/frame_preprocessor.cc b/webrtc/modules/video_processing/main/source/frame_preprocessor.cc index 59221556eb..54eeef27f7 100644 --- a/webrtc/modules/video_processing/main/source/frame_preprocessor.cc +++ b/webrtc/modules/video_processing/main/source/frame_preprocessor.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "frame_preprocessor.h" -#include "trace.h" +#include "webrtc/modules/video_processing/main/source/frame_preprocessor.h" +#include "webrtc/system_wrappers/interface/trace.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/frame_preprocessor.h b/webrtc/modules/video_processing/main/source/frame_preprocessor.h index 03d18ee04d..e3edfc82a5 100644 --- a/webrtc/modules/video_processing/main/source/frame_preprocessor.h +++ b/webrtc/modules/video_processing/main/source/frame_preprocessor.h @@ -14,11 +14,11 @@ #ifndef VPM_FRAME_PREPROCESSOR_H #define VPM_FRAME_PREPROCESSOR_H -#include "typedefs.h" -#include "video_processing.h" -#include "content_analysis.h" -#include "spatial_resampler.h" -#include "video_decimator.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/source/content_analysis.h" +#include "webrtc/modules/video_processing/main/source/spatial_resampler.h" +#include "webrtc/modules/video_processing/main/source/video_decimator.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/spatial_resampler.cc b/webrtc/modules/video_processing/main/source/spatial_resampler.cc index 4dc73e9d5a..89a449a158 100644 --- a/webrtc/modules/video_processing/main/source/spatial_resampler.cc +++ b/webrtc/modules/video_processing/main/source/spatial_resampler.cc @@ -8,7 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "spatial_resampler.h" +#include "webrtc/modules/video_processing/main/source/spatial_resampler.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/spatial_resampler.h b/webrtc/modules/video_processing/main/source/spatial_resampler.h index b8952d1deb..43368d1232 100644 --- a/webrtc/modules/video_processing/main/source/spatial_resampler.h +++ b/webrtc/modules/video_processing/main/source/spatial_resampler.h @@ -15,13 +15,13 @@ #ifndef VPM_SPATIAL_RESAMPLER_H #define VPM_SPATIAL_RESAMPLER_H -#include "typedefs.h" +#include "webrtc/typedefs.h" -#include "module_common_types.h" -#include "video_processing_defines.h" +#include "webrtc/modules/interface/module_common_types.h" +#include "webrtc/modules/video_processing/main/interface/video_processing_defines.h" -#include "common_video/libyuv/include/webrtc_libyuv.h" -#include "common_video/libyuv/include/scaler.h" +#include "webrtc/common_video/libyuv/include/scaler.h" +#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/video_decimator.cc b/webrtc/modules/video_processing/main/source/video_decimator.cc index a50189e1b4..e2d09e3803 100644 --- a/webrtc/modules/video_processing/main/source/video_decimator.cc +++ b/webrtc/modules/video_processing/main/source/video_decimator.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "video_decimator.h" -#include "tick_util.h" -#include "video_processing.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/source/video_decimator.h" +#include "webrtc/system_wrappers/interface/tick_util.h" #define VD_MIN(a, b) ((a) < (b)) ? (a) : (b) diff --git a/webrtc/modules/video_processing/main/source/video_decimator.h b/webrtc/modules/video_processing/main/source/video_decimator.h index f543633d01..0ea0019f91 100644 --- a/webrtc/modules/video_processing/main/source/video_decimator.h +++ b/webrtc/modules/video_processing/main/source/video_decimator.h @@ -14,8 +14,8 @@ #ifndef VPM_VIDEO_DECIMATOR_H #define VPM_VIDEO_DECIMATOR_H -#include "typedefs.h" -#include "module_common_types.h" +#include "webrtc/modules/interface/module_common_types.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/source/video_processing_impl.cc b/webrtc/modules/video_processing/main/source/video_processing_impl.cc index 4f1433d2a1..7fd4f6e52e 100644 --- a/webrtc/modules/video_processing/main/source/video_processing_impl.cc +++ b/webrtc/modules/video_processing/main/source/video_processing_impl.cc @@ -9,9 +9,9 @@ */ -#include "video_processing_impl.h" -#include "critical_section_wrapper.h" -#include "trace.h" +#include "webrtc/modules/video_processing/main/source/video_processing_impl.h" +#include "webrtc/system_wrappers/interface/critical_section_wrapper.h" +#include "webrtc/system_wrappers/interface/trace.h" #include diff --git a/webrtc/modules/video_processing/main/source/video_processing_impl.h b/webrtc/modules/video_processing/main/source/video_processing_impl.h index e622c990ad..57556ec267 100644 --- a/webrtc/modules/video_processing/main/source/video_processing_impl.h +++ b/webrtc/modules/video_processing/main/source/video_processing_impl.h @@ -11,13 +11,13 @@ #ifndef WEBRTC_MODULE_VIDEO_PROCESSING_IMPL_H #define WEBRTC_MODULE_VIDEO_PROCESSING_IMPL_H -#include "video_processing.h" -#include "brighten.h" -#include "brightness_detection.h" -#include "color_enhancement.h" -#include "deflickering.h" -#include "denoising.h" -#include "frame_preprocessor.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/source/brighten.h" +#include "webrtc/modules/video_processing/main/source/brightness_detection.h" +#include "webrtc/modules/video_processing/main/source/color_enhancement.h" +#include "webrtc/modules/video_processing/main/source/deflickering.h" +#include "webrtc/modules/video_processing/main/source/denoising.h" +#include "webrtc/modules/video_processing/main/source/frame_preprocessor.h" namespace webrtc { class CriticalSectionWrapper; diff --git a/webrtc/modules/video_processing/main/test/unit_test/color_enhancement_test.cc b/webrtc/modules/video_processing/main/test/unit_test/color_enhancement_test.cc index 34fd163f4d..f8129e3bdb 100644 --- a/webrtc/modules/video_processing/main/test/unit_test/color_enhancement_test.cc +++ b/webrtc/modules/video_processing/main/test/unit_test/color_enhancement_test.cc @@ -11,11 +11,11 @@ #include #include -#include "common_video/libyuv/include/webrtc_libyuv.h" -#include "modules/video_processing/main/interface/video_processing.h" -#include "modules/video_processing/main/test/unit_test/unit_test.h" -#include "system_wrappers/interface/tick_util.h" -#include "testsupport/fileutils.h" +#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/test/unit_test/unit_test.h" +#include "webrtc/system_wrappers/interface/tick_util.h" +#include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/test/unit_test/content_metrics_test.cc b/webrtc/modules/video_processing/main/test/unit_test/content_metrics_test.cc index 063a7afb3d..e73eaa32c2 100644 --- a/webrtc/modules/video_processing/main/test/unit_test/content_metrics_test.cc +++ b/webrtc/modules/video_processing/main/test/unit_test/content_metrics_test.cc @@ -9,9 +9,9 @@ */ #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" -#include "modules/video_processing/main/interface/video_processing.h" -#include "modules/video_processing/main/source/content_analysis.h" -#include "modules/video_processing/main/test/unit_test/unit_test.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/source/content_analysis.h" +#include "webrtc/modules/video_processing/main/test/unit_test/unit_test.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/test/unit_test/denoising_test.cc b/webrtc/modules/video_processing/main/test/unit_test/denoising_test.cc index fab064eeac..8d6ea477db 100644 --- a/webrtc/modules/video_processing/main/test/unit_test/denoising_test.cc +++ b/webrtc/modules/video_processing/main/test/unit_test/denoising_test.cc @@ -11,11 +11,11 @@ #include #include -#include "common_video/libyuv/include/webrtc_libyuv.h" -#include "modules/video_processing/main/interface/video_processing.h" -#include "modules/video_processing/main/test/unit_test/unit_test.h" -#include "system_wrappers/interface/tick_util.h" -#include "testsupport/fileutils.h" +#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/modules/video_processing/main/test/unit_test/unit_test.h" +#include "webrtc/system_wrappers/interface/tick_util.h" +#include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/test/unit_test/unit_test.cc b/webrtc/modules/video_processing/main/test/unit_test/unit_test.cc index e22d1d04ab..eea8081fd3 100644 --- a/webrtc/modules/video_processing/main/test/unit_test/unit_test.cc +++ b/webrtc/modules/video_processing/main/test/unit_test/unit_test.cc @@ -8,13 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "modules/video_processing/main/test/unit_test/unit_test.h" +#include "webrtc/modules/video_processing/main/test/unit_test/unit_test.h" #include -#include "common_video/libyuv/include/webrtc_libyuv.h" -#include "system_wrappers/interface/tick_util.h" -#include "test/testsupport/fileutils.h" +#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" +#include "webrtc/system_wrappers/interface/tick_util.h" +#include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/main/test/unit_test/unit_test.h b/webrtc/modules/video_processing/main/test/unit_test/unit_test.h index 67496d11c6..62c40398b4 100644 --- a/webrtc/modules/video_processing/main/test/unit_test/unit_test.h +++ b/webrtc/modules/video_processing/main/test/unit_test/unit_test.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_TEST_UNIT_TEST_VPM_UNIT_TEST_H #define WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_TEST_UNIT_TEST_VPM_UNIT_TEST_H -#include "gtest/gtest.h" -#include "modules/video_processing/main/interface/video_processing.h" -#include "system_wrappers/interface/trace.h" -#include "testsupport/fileutils.h" +#include "testing/gtest/include/gtest/gtest.h" +#include "webrtc/modules/video_processing/main/interface/video_processing.h" +#include "webrtc/system_wrappers/interface/trace.h" +#include "webrtc/test/testsupport/fileutils.h" namespace webrtc {