gecko/netwerk/protocol/device/GonkCaptureProvider.h

76 lines
2.0 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef GonkDeviceCaptureProvider_h_
#define GonkDeviceCaptureProvider_h_
#include "nsDeviceCaptureProvider.h"
#include "nsIAsyncInputStream.h"
#include "nsCOMPtr.h"
#include "nsAutoPtr.h"
#include "nsString.h"
#include "nsIEventTarget.h"
#include "nsDeque.h"
#include "mozilla/ReentrantMonitor.h"
#include "binder/IMemory.h"
using namespace android;
class CameraHardwareInterface;
class GonkCaptureProvider : public nsDeviceCaptureProvider {
public:
GonkCaptureProvider();
~GonkCaptureProvider();
NS_DECL_ISUPPORTS
nsresult Init(nsACString& aContentType, nsCaptureParams* aParams, nsIInputStream** aStream);
static GonkCaptureProvider* sInstance;
};
class GonkCameraInputStream : public nsIAsyncInputStream {
public:
GonkCameraInputStream();
~GonkCameraInputStream();
NS_IMETHODIMP Init(nsACString& aContentType, nsCaptureParams* aParams);
NS_DECL_ISUPPORTS
NS_DECL_NSIINPUTSTREAM
NS_DECL_NSIASYNCINPUTSTREAM
void ReceiveFrame(char* frame, PRUint32 length);
static void DataCallback(int32_t aMsgType, const sp<IMemory>& aDataPtr, void *aUser);
2012-02-02 18:54:47 -08:00
static PRUint32 getNumberOfCameras();
protected:
void NotifyListeners();
void doClose();
private:
PRUint32 mAvailable;
nsCString mContentType;
PRUint32 mWidth;
PRUint32 mHeight;
PRUint32 mFps;
PRUint32 mCamera;
bool mHeaderSent;
bool mClosed;
bool mIs420p;
nsDeque mFrameQueue;
PRUint32 mFrameSize;
mozilla::ReentrantMonitor mMonitor;
nsCOMPtr<nsIInputStreamCallback> mCallback;
nsCOMPtr<nsIEventTarget> mCallbackTarget;
CameraHardwareInterface* mHardware;
};
already_AddRefed<GonkCaptureProvider> GetGonkCaptureProvider();
#endif