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>
|
|
|
|
|
#include "device_info_android.h"
|
2012-03-01 16:30:40 +00:00
|
|
|
#include "../video_capture_impl.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
#define AndroidJavaCaptureClass "org/webrtc/videoengine/VideoCaptureAndroid"
|
|
|
|
|
|
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:
|
|
|
|
|
static WebRtc_Word32 SetAndroidObjects(void* javaVM, void* javaContext);
|
|
|
|
|
static WebRtc_Word32 AttachAndUseAndroidDeviceInfoObjects(
|
|
|
|
|
JNIEnv*& env,
|
|
|
|
|
jclass& javaCmDevInfoClass,
|
|
|
|
|
jobject& javaCmDevInfoObject,
|
|
|
|
|
bool& attached);
|
|
|
|
|
static WebRtc_Word32 ReleaseAndroidDeviceInfoObjects(bool attached);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
VideoCaptureAndroid(const WebRtc_Word32 id);
|
|
|
|
|
virtual WebRtc_Word32 Init(const WebRtc_Word32 id,
|
|
|
|
|
const char* deviceUniqueIdUTF8);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
virtual WebRtc_Word32 StartCapture(
|
|
|
|
|
const VideoCaptureCapability& capability);
|
|
|
|
|
virtual WebRtc_Word32 StopCapture();
|
|
|
|
|
virtual bool CaptureStarted();
|
|
|
|
|
virtual WebRtc_Word32 CaptureSettings(VideoCaptureCapability& settings);
|
|
|
|
|
virtual WebRtc_Word32 SetCaptureRotation(VideoCaptureRotation rotation);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-04-04 17:15:42 +00:00
|
|
|
protected:
|
|
|
|
|
virtual ~VideoCaptureAndroid();
|
|
|
|
|
static void JNICALL ProvideCameraFrame (JNIEnv * env,
|
|
|
|
|
jobject,
|
|
|
|
|
jbyteArray javaCameraFrame,
|
|
|
|
|
jint length, jlong context);
|
|
|
|
|
DeviceInfoAndroid _capInfo;
|
|
|
|
|
jobject _javaCaptureObj; // Java Camera object.
|
|
|
|
|
VideoCaptureCapability _frameInfo;
|
|
|
|
|
bool _captureStarted;
|
|
|
|
|
|
|
|
|
|
static JavaVM* g_jvm;
|
|
|
|
|
static jclass g_javaCmClass;
|
|
|
|
|
static jclass g_javaCmDevInfoClass;
|
2012-03-19 21:09:42 +00:00
|
|
|
//Static java object implementing the needed device info functions;
|
2012-04-04 17:15:42 +00:00
|
|
|
static jobject g_javaCmDevInfoObject;
|
|
|
|
|
static jobject g_javaContext; // Java Application context
|
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_
|