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
This commit is contained in:
parent
47ce120efb
commit
6f3d8fcfc0
@ -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
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 <cstdlib>
|
||||
|
||||
#include "system_wrappers/interface/trace.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace VideoProcessing {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 <math.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 {
|
||||
|
||||
|
||||
@ -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 <cstdlib> // 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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#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):
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 <emmintrin.h>
|
||||
#include <math.h>
|
||||
|
||||
@ -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 <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#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 {
|
||||
|
||||
|
||||
@ -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 <cstring> // NULL
|
||||
|
||||
@ -63,4 +63,3 @@ private:
|
||||
} //namespace
|
||||
|
||||
#endif // VPM_DEFLICKERING_H
|
||||
|
||||
|
||||
@ -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 <cstring>
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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)
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -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 <cassert>
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -11,11 +11,11 @@
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
#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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
@ -11,11 +11,11 @@
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
#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 {
|
||||
|
||||
|
||||
@ -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 <string>
|
||||
|
||||
#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 {
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user