From 916c76eaadc519b6278899736504cad47c8ab50b Mon Sep 17 00:00:00 2001 From: perkj Date: Fri, 11 Mar 2016 22:54:27 +0100 Subject: [PATCH] Add new files for VideoSourceBase to roll into Chrome in preparation for implementatin. TBR=pthatcher@webrtc.org BUG=webrtc:5426 Review URL: https://codereview.webrtc.org/1794483003 . Cr-Commit-Position: refs/heads/master@{#11959} --- webrtc/media/base/videosourcebase.cc | 13 +++++++++++++ webrtc/media/base/videosourcebase.h | 16 ++++++++++++++++ webrtc/media/media.gyp | 2 ++ 3 files changed, 31 insertions(+) create mode 100644 webrtc/media/base/videosourcebase.cc create mode 100644 webrtc/media/base/videosourcebase.h diff --git a/webrtc/media/base/videosourcebase.cc b/webrtc/media/base/videosourcebase.cc new file mode 100644 index 0000000000..28088ee56d --- /dev/null +++ b/webrtc/media/base/videosourcebase.cc @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#include "webrtc/media/base/videosourcebase.h" + +// TODO(perkj): Add implementation. diff --git a/webrtc/media/base/videosourcebase.h b/webrtc/media/base/videosourcebase.h new file mode 100644 index 0000000000..61dfff3cb4 --- /dev/null +++ b/webrtc/media/base/videosourcebase.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#ifndef WEBRTC_MEDIA_BASE_VIDEOSOURCEBASE_H_ +#define WEBRTC_MEDIA_BASE_VIDEOSOURCEBASE_H_ + +// TODO(perkj): Add implementation. + +#endif // WEBRTC_MEDIA_BASE_VIDEOSOURCEBASE_H_ diff --git a/webrtc/media/media.gyp b/webrtc/media/media.gyp index 5f8e559524..d133448752 100644 --- a/webrtc/media/media.gyp +++ b/webrtc/media/media.gyp @@ -74,6 +74,8 @@ 'base/videoframefactory.cc', 'base/videoframefactory.h', 'base/videorenderer.h', + 'base/videosourcebase.cc', + 'base/videosourcebase.h', 'base/yuvframegenerator.cc', 'base/yuvframegenerator.h', 'devices/deviceinfo.h',