mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
99 lines
2.5 KiB
C++
99 lines
2.5 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "CameraStreamImpl.h"
|
|
#include "nsCRTGlue.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "mozilla/Monitor.h"
|
|
|
|
/**
|
|
* JNI part & helper runnable
|
|
*/
|
|
|
|
extern "C" {
|
|
NS_EXPORT void JNICALL Java_org_mozilla_gecko_GeckoAppShell_cameraCallbackBridge(JNIEnv *, jclass, jbyteArray data);
|
|
}
|
|
|
|
NS_EXPORT void JNICALL
|
|
Java_org_mozilla_gecko_GeckoAppShell_cameraCallbackBridge(JNIEnv *env, jclass, jbyteArray data) {
|
|
mozilla::net::CameraStreamImpl* impl = mozilla::net::CameraStreamImpl::GetInstance(0);
|
|
|
|
impl->transmitFrame(env, &data);
|
|
}
|
|
|
|
using namespace mozilla;
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
static CameraStreamImpl* mCamera0 = NULL;
|
|
static CameraStreamImpl* mCamera1 = NULL;
|
|
|
|
/**
|
|
* CameraStreamImpl
|
|
*/
|
|
|
|
void CameraStreamImpl::transmitFrame(JNIEnv *env, jbyteArray *data) {
|
|
if (!mCallback)
|
|
return;
|
|
jboolean isCopy;
|
|
jbyte* jFrame = env->GetByteArrayElements(*data, &isCopy);
|
|
uint32_t length = env->GetArrayLength(*data);
|
|
if (length > 0) {
|
|
mCallback->ReceiveFrame((char*)jFrame, length);
|
|
}
|
|
env->ReleaseByteArrayElements(*data, jFrame, 0);
|
|
}
|
|
|
|
CameraStreamImpl* CameraStreamImpl::GetInstance(uint32_t aCamera) {
|
|
CameraStreamImpl* res = NULL;
|
|
switch(aCamera) {
|
|
case 0:
|
|
if (mCamera0)
|
|
res = mCamera0;
|
|
else
|
|
res = mCamera0 = new CameraStreamImpl(aCamera);
|
|
break;
|
|
case 1:
|
|
if (mCamera1)
|
|
res = mCamera1;
|
|
else
|
|
res = mCamera1 = new CameraStreamImpl(aCamera);
|
|
break;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
|
|
CameraStreamImpl::CameraStreamImpl(uint32_t aCamera) :
|
|
mInit(false), mCamera(aCamera)
|
|
{
|
|
NS_WARNING("CameraStreamImpl::CameraStreamImpl()");
|
|
mWidth = 0;
|
|
mHeight = 0;
|
|
mFps = 0;
|
|
}
|
|
|
|
CameraStreamImpl::~CameraStreamImpl()
|
|
{
|
|
NS_WARNING("CameraStreamImpl::~CameraStreamImpl()");
|
|
}
|
|
|
|
bool CameraStreamImpl::Init(const nsCString& contentType, const uint32_t& camera, const uint32_t& width, const uint32_t& height, FrameCallback* aCallback)
|
|
{
|
|
mCallback = aCallback;
|
|
mWidth = width;
|
|
mHeight = height;
|
|
return AndroidBridge::Bridge()->InitCamera(contentType, camera, &mWidth, &mHeight, &mFps);
|
|
}
|
|
|
|
void CameraStreamImpl::Close() {
|
|
AndroidBridge::Bridge()->CloseCamera();
|
|
mCallback = NULL;
|
|
}
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|