/* -*- 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 mozilla_CamerasParent_h #define mozilla_CamerasParent_h #include "nsIObserver.h" #include "VideoEngine.h" #include "mozilla/dom/ContentParent.h" #include "mozilla/camera/PCamerasParent.h" #include "mozilla/ipc/Shmem.h" #include "mozilla/ShmemPool.h" #include "mozilla/Atomics.h" #include "webrtc/modules/video_capture/video_capture.h" #include "webrtc/modules/video_render/video_render_impl.h" #include "webrtc/modules/video_capture/video_capture_defines.h" #include "webrtc/common_video/include/incoming_video_stream.h" // conflicts with #include of scoped_ptr.h #undef FF #include "webrtc/common.h" #include "CamerasChild.h" #include "base/thread.h" namespace mozilla { namespace camera { class CamerasParent; class CallbackHelper : public webrtc::VideoRenderCallback, public webrtc::VideoCaptureDataCallback { public: CallbackHelper(CaptureEngine aCapEng, uint32_t aStreamId, CamerasParent *aParent) : mCapEngine(aCapEng), mStreamId(aStreamId), mParent(aParent) {}; // ViEExternalRenderer implementation. These callbacks end up // running on the VideoCapture thread. virtual int32_t RenderFrame(const uint32_t aStreamId, const webrtc::VideoFrame& video_frame) override; // From VideoCaptureCallback virtual void OnIncomingCapturedFrame(const int32_t id, const webrtc::VideoFrame& videoFrame) override; virtual void OnCaptureDelayChanged(const int32_t id, const int32_t delay) override; // TODO(@@NG) This is now part of webrtc::VideoRenderer, not in the webrtc::VideoRenderCallback // virtual bool IsTextureSupported() const override { return false; }; // // virtual bool SmoothsRenderedFrames() const override { return false; } friend CamerasParent; private: CaptureEngine mCapEngine; uint32_t mStreamId; CamerasParent *mParent; }; class InputObserver : public webrtc::VideoInputFeedBack { public: NS_INLINE_DECL_THREADSAFE_REFCOUNTING(InputObserver) explicit InputObserver(CamerasParent* aParent) : mParent(aParent) {}; virtual void OnDeviceChange(); friend CamerasParent; private: ~InputObserver() {} RefPtr mParent; }; class CamerasParent : public PCamerasParent, public nsIObserver { NS_DECL_THREADSAFE_ISUPPORTS NS_DECL_NSIOBSERVER public: static already_AddRefed Create(); // Messages received form the child. These run on the IPC/PBackground thread. virtual bool RecvAllocateCaptureDevice(const CaptureEngine&, const nsCString&, const nsCString&) override; virtual bool RecvReleaseCaptureDevice(const CaptureEngine&, const int&) override; virtual bool RecvNumberOfCaptureDevices(const CaptureEngine&) override; virtual bool RecvNumberOfCapabilities(const CaptureEngine&, const nsCString&) override; virtual bool RecvGetCaptureCapability(const CaptureEngine&, const nsCString&, const int&) override; virtual bool RecvGetCaptureDevice(const CaptureEngine&, const int&) override; virtual bool RecvStartCapture(const CaptureEngine&, const int&, const VideoCaptureCapability&) override; virtual bool RecvStopCapture(const CaptureEngine&, const int&) override; virtual bool RecvReleaseFrame(mozilla::ipc::Shmem&&) override; virtual bool RecvAllDone() override; virtual void ActorDestroy(ActorDestroyReason aWhy) override; virtual bool RecvEnsureInitialized(const CaptureEngine&) override; nsIThread* GetBackgroundThread() { return mPBackgroundThread; }; bool IsShuttingDown() { return !mChildIsAlive || mDestroyed || !mWebRTCAlive; }; ShmemBuffer GetBuffer(size_t aSize); // helper to forward to the PBackground thread int DeliverFrameOverIPC(CaptureEngine capEng, uint32_t aStreamId, ShmemBuffer buffer, unsigned char* altbuffer, VideoFrameProperties& aProps); CamerasParent(); protected: virtual ~CamerasParent(); // We use these helpers for shutdown and for the respective IPC commands. void StopCapture(const CaptureEngine& aCapEngine, const int& capnum); int ReleaseCaptureDevice(const CaptureEngine& aCapEngine, const int& capnum); bool SetupEngine(CaptureEngine aCapEngine); VideoEngine* EnsureInitialized(int aEngine); void CloseEngines(); void StopIPC(); void StopVideoCapture(); // Can't take already_AddRefed because it can fail in stupid ways. nsresult DispatchToVideoCaptureThread(Runnable* event); RefPtr mEngines[CaptureEngine::MaxEngine]; nsTArray mCallbacks; // image buffers mozilla::ShmemPool mShmemPool; // PBackground parent thread nsCOMPtr mPBackgroundThread; // Monitors creation of the thread below Monitor mThreadMonitor; // video processing thread - where webrtc.org capturer code runs base::Thread* mVideoCaptureThread; // Shutdown handling bool mChildIsAlive; bool mDestroyed; // Above 2 are PBackground only, but this is potentially // read cross-thread. mozilla::Atomic mWebRTCAlive; nsTArray> mObservers; }; PCamerasParent* CreateCamerasParent(); } // namespace camera } // namespace mozilla #endif // mozilla_CameraParent_h