Include files from webrtc/.. paths in video_capture/.
BUG=1662 R=wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1788004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4337 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
8b06200802
commit
a9b74ad716
@ -8,13 +8,13 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "device_info_android.h"
|
||||
#include "webrtc/modules/video_capture/android/device_info_android.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "ref_count.h"
|
||||
#include "trace.h"
|
||||
#include "video_capture_android.h"
|
||||
#include "webrtc/modules/video_capture/android/video_capture_android.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -12,8 +12,9 @@
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_DEVICE_INFO_ANDROID_H_
|
||||
|
||||
#include <jni.h>
|
||||
#include "../video_capture_impl.h"
|
||||
#include "../device_info_impl.h"
|
||||
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,13 +8,13 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "video_capture_android.h"
|
||||
#include "webrtc/modules/video_capture/android/video_capture_android.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "critical_section_wrapper.h"
|
||||
#include "ref_count.h"
|
||||
#include "trace.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -12,8 +12,9 @@
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_VIDEO_CAPTURE_ANDROID_H_
|
||||
|
||||
#include <jni.h>
|
||||
#include "device_info_android.h"
|
||||
#include "../video_capture_impl.h"
|
||||
|
||||
#include "webrtc/modules/video_capture/android/device_info_android.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
#define AndroidJavaCaptureClass "org/webrtc/videoengine/VideoCaptureAndroid"
|
||||
|
||||
|
@ -8,11 +8,12 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "device_info_impl.h"
|
||||
#include "video_capture_config.h"
|
||||
#include "trace.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
#ifndef abs
|
||||
#define abs(a) (a>=0?a:-a)
|
||||
#endif
|
||||
@ -396,5 +397,3 @@ int32_t DeviceInfoImpl::GetOrientation(const char* deviceUniqueIdUTF8,
|
||||
}
|
||||
} // namespace videocapturemodule
|
||||
} // namespace webrtc
|
||||
|
||||
|
||||
|
@ -11,11 +11,10 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_DEVICE_INFO_IMPL_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_DEVICE_INFO_IMPL_H_
|
||||
|
||||
#include "video_capture.h"
|
||||
|
||||
#include "map_wrapper.h"
|
||||
#include "rw_lock_wrapper.h"
|
||||
#include "video_capture_delay.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_delay.h"
|
||||
#include "webrtc/system_wrappers/interface/map_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "../device_info_impl.h"
|
||||
#include "../video_capture_impl.h"
|
||||
#include "webrtc/modules/video_capture/android/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/android/video_capture_impl.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "../video_capture_impl.h"
|
||||
#include "ref_count.h"
|
||||
#include "webrtc/modules/video_capture/android/video_capture_impl.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -11,9 +11,9 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_INCLUDE_VIDEO_CAPTURE_DEFINES_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_INCLUDE_VIDEO_CAPTURE_DEFINES_H_
|
||||
|
||||
#include "webrtc/typedefs.h"
|
||||
#include "webrtc/modules/interface/module_common_types.h"
|
||||
#include "webrtc/common_video/interface/i420_video_frame.h"
|
||||
#include "webrtc/modules/interface/module_common_types.h"
|
||||
#include "webrtc/typedefs.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,21 +8,20 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "device_info_linux.h"
|
||||
#include "webrtc/modules/video_capture/linux/device_info_linux.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
//v4l includes
|
||||
#include <linux/videodev2.h>
|
||||
|
||||
#include "ref_count.h"
|
||||
#include "trace.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
|
||||
namespace webrtc
|
||||
|
@ -11,8 +11,8 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_
|
||||
|
||||
#include "../video_capture_impl.h"
|
||||
#include "../device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,24 +8,24 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <linux/videodev2.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/mman.h>
|
||||
#include <string.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <new>
|
||||
|
||||
#include "ref_count.h"
|
||||
#include "trace.h"
|
||||
#include "thread_wrapper.h"
|
||||
#include "critical_section_wrapper.h"
|
||||
#include "video_capture_linux.h"
|
||||
#include "webrtc/modules/video_capture/linux/video_capture_linux.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/thread_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -11,8 +11,8 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_VIDEO_CAPTURE_LINUX_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_VIDEO_CAPTURE_LINUX_H_
|
||||
|
||||
#include "common_types.h"
|
||||
#include "../video_capture_impl.h"
|
||||
#include "webrtc/common_types.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -14,9 +14,9 @@
|
||||
#import <QTKit/QTKit.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_utility.h"
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_utility.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
@class VideoCaptureMacQTKitObjC;
|
||||
@class VideoCaptureMacQTKitInfoObjC;
|
||||
|
@ -8,12 +8,12 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "video_capture_qtkit.h"
|
||||
#import "video_capture_qtkit_objc.h"
|
||||
#import "video_capture_qtkit_info_objc.h"
|
||||
#include "trace.h"
|
||||
#include "critical_section_wrapper.h"
|
||||
#include "../../video_capture_config.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit.h"
|
||||
#import "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_info_objc.h"
|
||||
#import "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
@ -209,4 +209,3 @@ struct VideoCaptureCapabilityMacQTKit:public VideoCaptureCapability
|
||||
};
|
||||
} // namespace videocapturemodule
|
||||
} // namespace webrtc
|
||||
|
||||
|
@ -11,11 +11,10 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_INFO_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_INFO_H_
|
||||
|
||||
#include "../../video_capture_impl.h"
|
||||
#include "../../device_info_impl.h"
|
||||
#include "video_capture_qtkit_utility.h"
|
||||
|
||||
#include "map_wrapper.h"
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_utility.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/system_wrappers/interface/map_wrapper.h"
|
||||
|
||||
|
||||
@class VideoCaptureMacQTKitInfoObjC;
|
||||
|
@ -8,11 +8,10 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "trace.h"
|
||||
#include "../../video_capture_config.h"
|
||||
#import "video_capture_qtkit_info_objc.h"
|
||||
|
||||
#include "video_capture.h"
|
||||
#import "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_info_objc.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -16,10 +16,11 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_INFO_OBJC_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_INFO_OBJC_H_
|
||||
|
||||
#import <QTKit/QTKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#include "video_capture_qtkit_utility.h"
|
||||
#include "video_capture_qtkit_info.h"
|
||||
#import <QTKit/QTKit.h>
|
||||
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_info.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_utility.h"
|
||||
|
||||
@interface VideoCaptureMacQTKitInfoObjC : NSObject{
|
||||
bool _OSSupportedInfo;
|
||||
|
@ -10,9 +10,9 @@
|
||||
|
||||
#pragma mark **** imports/includes
|
||||
|
||||
#import "video_capture_qtkit_info_objc.h"
|
||||
#import "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_info_objc.h"
|
||||
|
||||
#include "trace.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
using namespace webrtc;
|
||||
|
||||
|
@ -16,14 +16,14 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_OBJC_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_MAC_QTKIT_VIDEO_CAPTURE_QTKIT_OBJC_H_
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <QTKit/QTKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <CoreData/CoreData.h>
|
||||
#import <CoreFoundation/CoreFoundation.h>
|
||||
#import <CoreVideo/CoreVideo.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <QTKit/QTKit.h>
|
||||
|
||||
#include "video_capture_qtkit.h"
|
||||
#include "webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit.h"
|
||||
|
||||
@interface VideoCaptureMacQTKitObjC : NSObject {
|
||||
bool _capturing;
|
||||
|
@ -13,25 +13,22 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
// super class stuff
|
||||
#include "../video_capture_impl.h"
|
||||
#include "../device_info_impl.h"
|
||||
#include "../video_capture_config.h"
|
||||
#include "ref_count.h"
|
||||
|
||||
#include "trace.h"
|
||||
|
||||
#include <QuickTime/QuickTime.h>
|
||||
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
// 10.4 support must be decided runtime. We will just decide which framework to
|
||||
// use at compile time "work" classes. One for QTKit, one for QuickTime
|
||||
#if __MAC_OS_X_VERSION_MIN_REQUIRED == __MAC_10_4 // QuickTime version
|
||||
#include "QuickTime/video_capture_quick_time.h"
|
||||
#include "QuickTime/video_capture_quick_time_info.h"
|
||||
#include <QuickTime/video_capture_quick_time.h>
|
||||
#include <QuickTime/video_capture_quick_time_info.h>
|
||||
#else
|
||||
#include "QTKit/video_capture_qtkit.h"
|
||||
#include "QTKit/video_capture_qtkit_info.h"
|
||||
#include <QTKit/video_capture_qtkit.h>
|
||||
#include <QTKit/video_capture_qtkit_info.h>
|
||||
#endif
|
||||
|
||||
namespace webrtc
|
||||
@ -272,4 +269,3 @@ VideoCaptureImpl::CreateDeviceInfo(const int32_t id)
|
||||
***************************************************************************/
|
||||
} // namespace videocapturemodule
|
||||
} // namespace webrtc
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "testsupport/mac/run_threaded_main_mac.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
#include "webrtc/test/testsupport/mac/run_threaded_main_mac.h"
|
||||
|
||||
int ImplementThisToRunYourTest(int argc, char** argv) {
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
|
@ -10,17 +10,17 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "modules/utility/interface/process_thread.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/modules/utility/interface/process_thread.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture_factory.h"
|
||||
#include "common_video/interface/i420_video_frame.h"
|
||||
#include "common_video/libyuv/include/webrtc_libyuv.h"
|
||||
#include "system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "system_wrappers/interface/scoped_ptr.h"
|
||||
#include "system_wrappers/interface/scoped_refptr.h"
|
||||
#include "system_wrappers/interface/sleep.h"
|
||||
#include "system_wrappers/interface/tick_util.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
|
||||
#include "webrtc/system_wrappers/interface/scoped_refptr.h"
|
||||
#include "webrtc/system_wrappers/interface/sleep.h"
|
||||
#include "webrtc/system_wrappers/interface/tick_util.h"
|
||||
|
||||
using webrtc::CriticalSectionWrapper;
|
||||
using webrtc::CriticalSectionScoped;
|
||||
@ -639,4 +639,3 @@ TEST_F(VideoCaptureExternalTest, Rotation) {
|
||||
EXPECT_EQ(0, capture_input_interface_->IncomingFrame(test_buffer.get(),
|
||||
length, capture_callback_.capability(), 0));
|
||||
}
|
||||
|
||||
|
@ -8,8 +8,9 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "video_capture_factory.h"
|
||||
#include "video_capture_impl.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture_factory.h"
|
||||
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,20 +8,20 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "video_capture_impl.h"
|
||||
|
||||
#include "common_video/libyuv/include/webrtc_libyuv.h"
|
||||
#include "critical_section_wrapper.h"
|
||||
#include "module_common_types.h"
|
||||
#include "ref_count.h"
|
||||
#include "tick_util.h"
|
||||
#include "trace.h"
|
||||
#include "trace_event.h"
|
||||
#include "video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/clock.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
||||
#include "webrtc/modules/interface/module_common_types.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/clock.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/tick_util.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
#include "webrtc/system_wrappers/interface/trace_event.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
namespace videocapturemodule
|
||||
|
@ -15,11 +15,11 @@
|
||||
* video_capture_impl.h
|
||||
*/
|
||||
|
||||
#include "video_capture.h"
|
||||
#include "video_capture_config.h"
|
||||
#include "tick_util.h"
|
||||
#include "common_video/interface/i420_video_frame.h"
|
||||
#include "common_video/libyuv/include/webrtc_libyuv.h"
|
||||
#include "webrtc/common_video/interface/i420_video_frame.h"
|
||||
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/system_wrappers/interface/tick_util.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,16 +8,16 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "device_info_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/device_info_ds.h"
|
||||
|
||||
#include "../video_capture_config.h"
|
||||
#include "../video_capture_delay.h"
|
||||
#include "help_functions_ds.h"
|
||||
#include "ref_count.h"
|
||||
#include "trace.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_delay.h"
|
||||
#include "webrtc/modules/video_capture/windows/help_functions_ds.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
#include <Streams.h>
|
||||
#include <Dvdmedia.h>
|
||||
#include <Streams.h>
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -11,13 +11,12 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_WINDOWS_DEVICE_INFO_DS_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_WINDOWS_DEVICE_INFO_DS_H_
|
||||
|
||||
#include "../video_capture_impl.h"
|
||||
#include "../device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/system_wrappers/interface/map_wrapper.h"
|
||||
|
||||
#include <Dshow.h>
|
||||
#include "map_wrapper.h"
|
||||
|
||||
// forward declarations
|
||||
namespace webrtc
|
||||
{
|
||||
namespace videocapturemodule
|
||||
|
@ -8,7 +8,7 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "modules/video_capture/windows/device_info_mf.h"
|
||||
#include "webrtc/modules/video_capture/windows/device_info_mf.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace videocapturemodule {
|
||||
|
@ -11,7 +11,7 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_WINDOWS_DEVICE_INFO_MF_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_WINDOWS_DEVICE_INFO_MF_H_
|
||||
|
||||
#include "modules/video_capture/device_info_impl.h"
|
||||
#include "webrtc/modules/video_capture/device_info_impl.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace videocapturemodule {
|
||||
|
@ -12,7 +12,7 @@
|
||||
// that DEFINE_GUID() entries will be defined in this
|
||||
// object file.
|
||||
|
||||
#include "help_functions_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/help_functions_ds.h"
|
||||
|
||||
#include <cguid.h>
|
||||
|
||||
@ -117,4 +117,3 @@ BOOL PinMatchesCategory(IPin *pPin, REFGUID Category)
|
||||
}
|
||||
} // namespace videocapturemodule
|
||||
} // namespace webrtc
|
||||
|
||||
|
@ -8,10 +8,10 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "sink_filter_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/sink_filter_ds.h"
|
||||
|
||||
#include "trace.h"
|
||||
#include "help_functions_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/help_functions_ds.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
#include <Dvdmedia.h> // VIDEOINFOHEADER2
|
||||
#include <initguid.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
#include <Streams.h> // Include base DS filter header files
|
||||
|
||||
#include "video_capture_defines.h"
|
||||
#include "webrtc/modules/video_capture/include/video_capture_defines.h"
|
||||
|
||||
namespace webrtc
|
||||
{
|
||||
|
@ -8,13 +8,13 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "video_capture_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/video_capture_ds.h"
|
||||
|
||||
#include "../video_capture_config.h"
|
||||
#include "critical_section_wrapper.h"
|
||||
#include "help_functions_ds.h"
|
||||
#include "sink_filter_ds.h"
|
||||
#include "trace.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_config.h"
|
||||
#include "webrtc/modules/video_capture/windows/help_functions_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/sink_filter_ds.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/trace.h"
|
||||
|
||||
#include <Dvdmedia.h> // VIDEOINFOHEADER2
|
||||
|
||||
|
@ -11,10 +11,8 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_WINDOWS_VIDEO_CAPTURE_DS_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_WINDOWS_VIDEO_CAPTURE_DS_H_
|
||||
|
||||
#include "../video_capture_impl.h"
|
||||
#include <tchar.h>
|
||||
|
||||
#include "device_info_ds.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/modules/video_capture/windows/device_info_ds.h"
|
||||
|
||||
#define CAPTURE_FILTER_NAME L"VideoCaptureFilter"
|
||||
#define SINK_FILTER_NAME L"SinkFilter"
|
||||
|
@ -8,9 +8,9 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "ref_count.h"
|
||||
#include "video_capture_ds.h"
|
||||
#include "video_capture_mf.h"
|
||||
#include "webrtc/modules/video_capture/windows/video_capture_ds.h"
|
||||
#include "webrtc/modules/video_capture/windows/video_capture_mf.h"
|
||||
#include "webrtc/system_wrappers/interface/ref_count.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace videocapturemodule {
|
||||
|
@ -8,7 +8,7 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "modules/video_capture/windows/video_capture_mf.h"
|
||||
#include "webrtc/modules/video_capture/windows/video_capture_mf.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace videocapturemodule {
|
||||
|
@ -11,7 +11,7 @@
|
||||
#ifndef WEBRTC_MODULES_VIDEO_CAPTURE_WINDOWS_VIDEO_CAPTURE_MF_H_
|
||||
#define WEBRTC_MODULES_VIDEO_CAPTURE_WINDOWS_VIDEO_CAPTURE_MF_H_
|
||||
|
||||
#include "modules/video_capture/video_capture_impl.h"
|
||||
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
||||
|
||||
namespace webrtc {
|
||||
namespace videocapturemodule {
|
||||
|
Loading…
Reference in New Issue
Block a user