2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-03-01 16:30:40 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_VIDEO_CAPTURE_ANDROID_H_
|
|
|
|
|
#define WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_VIDEO_CAPTURE_ANDROID_H_
|
|
|
|
|
|
|
|
|
|
#include <jni.h>
|
2013-07-12 10:03:52 +00:00
|
|
|
|
|
|
|
|
#include "webrtc/modules/video_capture/android/device_info_android.h"
|
|
|
|
|
#include "webrtc/modules/video_capture/video_capture_impl.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace videocapturemodule {
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
class VideoCaptureAndroid : public VideoCaptureImpl {
|
|
|
|
|
public:
|
2013-04-10 08:23:13 +00:00
|
|
|
VideoCaptureAndroid(const int32_t id);
|
|
|
|
|
virtual int32_t Init(const int32_t id, const char* deviceUniqueIdUTF8);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-10-03 18:23:13 +00:00
|
|
|
virtual int32_t StartCapture(const VideoCaptureCapability& capability);
|
2013-04-10 08:23:13 +00:00
|
|
|
virtual int32_t StopCapture();
|
2012-04-04 17:15:42 +00:00
|
|
|
virtual bool CaptureStarted();
|
2013-04-10 08:23:13 +00:00
|
|
|
virtual int32_t CaptureSettings(VideoCaptureCapability& settings);
|
|
|
|
|
virtual int32_t SetCaptureRotation(VideoCaptureRotation rotation);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-10-03 18:23:13 +00:00
|
|
|
int32_t OnIncomingFrame(uint8_t* videoFrame,
|
|
|
|
|
int32_t videoFrameLength,
|
|
|
|
|
int64_t captureTime = 0);
|
|
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
protected:
|
|
|
|
|
virtual ~VideoCaptureAndroid();
|
|
|
|
|
|
2013-10-03 18:23:13 +00:00
|
|
|
DeviceInfoAndroid _deviceInfo;
|
|
|
|
|
jobject _jCapturer; // Global ref to Java VideoCaptureAndroid object.
|
|
|
|
|
VideoCaptureCapability _captureCapability;
|
|
|
|
|
bool _captureStarted;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
2012-04-04 17:15:42 +00:00
|
|
|
|
|
|
|
|
} // namespace videocapturemodule
|
|
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_VIDEO_CAPTURE_ANDROID_H_
|