BUG=314 Review URL: https://webrtc-codereview.appspot.com/1298005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3811 4adac7df-926f-26a2-2b94-8c16560cd09d
66 lines
2.4 KiB
C++
66 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2012 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_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"
|
|
#include "../video_capture_impl.h"
|
|
|
|
#define AndroidJavaCaptureClass "org/webrtc/videoengine/VideoCaptureAndroid"
|
|
|
|
namespace webrtc {
|
|
namespace videocapturemodule {
|
|
|
|
class VideoCaptureAndroid : public VideoCaptureImpl {
|
|
public:
|
|
static int32_t SetAndroidObjects(void* javaVM, void* javaContext);
|
|
static int32_t AttachAndUseAndroidDeviceInfoObjects(
|
|
JNIEnv*& env,
|
|
jclass& javaCmDevInfoClass,
|
|
jobject& javaCmDevInfoObject,
|
|
bool& attached);
|
|
static int32_t ReleaseAndroidDeviceInfoObjects(bool attached);
|
|
|
|
VideoCaptureAndroid(const int32_t id);
|
|
virtual int32_t Init(const int32_t id, const char* deviceUniqueIdUTF8);
|
|
|
|
|
|
virtual int32_t StartCapture(
|
|
const VideoCaptureCapability& capability);
|
|
virtual int32_t StopCapture();
|
|
virtual bool CaptureStarted();
|
|
virtual int32_t CaptureSettings(VideoCaptureCapability& settings);
|
|
virtual int32_t SetCaptureRotation(VideoCaptureRotation rotation);
|
|
|
|
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;
|
|
//Static java object implementing the needed device info functions;
|
|
static jobject g_javaCmDevInfoObject;
|
|
static jobject g_javaContext; // Java Application context
|
|
};
|
|
|
|
} // namespace videocapturemodule
|
|
} // namespace webrtc
|
|
#endif // WEBRTC_MODULES_VIDEO_CAPTURE_MAIN_SOURCE_ANDROID_VIDEO_CAPTURE_ANDROID_H_
|