
Also enables running video_capture_tests_apk on the WebRTC/Chromium APK bots, assuming GYP_DEFINES includes include_tests=1 and include_internal_video_capture=1. This required running VideoCaptureAndroid's camera capture on a dedicated thread, matching other platform's video_capture impls. BUG=2974,3152 R=wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/11359004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5868 4adac7df-926f-26a2-2b94-8c16560cd09d
20 lines
639 B
C++
20 lines
639 B
C++
/*
|
|
* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
namespace webrtc {
|
|
namespace videocapturemodule {
|
|
|
|
// Ensure any necessary initialization of webrtc::videocapturemodule has
|
|
// completed.
|
|
void EnsureInitialized();
|
|
|
|
} // namespace videocapturemodule.
|
|
} // namespace webrtc.
|