Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license | |
| 5 * that can be found in the LICENSE file in the root of the source | |
| 6 * tree. An additional intellectual property rights grant can be found | |
| 7 * in the file PATENTS. All contributing project authors may | |
| 8 * be found in the AUTHORS file in the root of the source tree. | |
| 9 */ | |
| 10 | |
| 11 #ifndef TALK_APP_WEBRTC_OBJC_AVFOUNDATION_VIDEO_CAPTURER_H_ | |
|
tkchin_webrtc
2016/01/20 21:51:12
update path
WEBRTC_API_OBJC_AVFOUNDATION_VIDEO_CAP
hjon
2016/01/20 22:25:34
Done.
| |
| 12 #define TALK_APP_WEBRTC_OBJC_AVFOUNDATION_VIDEO_CAPTURER_H_ | |
| 13 | |
| 14 #include "talk/media/base/videocapturer.h" | |
| 15 #include "webrtc/base/scoped_ptr.h" | |
| 16 #include "webrtc/video_frame.h" | |
| 17 | |
| 18 #import <AVFoundation/AVFoundation.h> | |
| 19 | |
| 20 @class RTCAVFoundationVideoCapturerInternal; | |
| 21 | |
| 22 namespace webrtc { | |
| 23 | |
| 24 class AVFoundationVideoCapturer : public cricket::VideoCapturer { | |
| 25 public: | |
| 26 AVFoundationVideoCapturer(); | |
| 27 ~AVFoundationVideoCapturer(); | |
| 28 | |
| 29 cricket::CaptureState Start(const cricket::VideoFormat& format) override; | |
| 30 void Stop() override; | |
| 31 bool IsRunning() override; | |
| 32 bool IsScreencast() const override { | |
| 33 return false; | |
| 34 } | |
| 35 bool GetPreferredFourccs(std::vector<uint32_t> *fourccs) override { | |
| 36 fourccs->push_back(cricket::FOURCC_NV12); | |
| 37 return true; | |
| 38 } | |
| 39 | |
| 40 // Returns the active capture session. | |
| 41 AVCaptureSession* GetCaptureSession(); | |
| 42 | |
| 43 // Switches the camera being used (either front or back). | |
| 44 void SetUseBackCamera(bool useBackCamera); | |
| 45 bool GetUseBackCamera() const; | |
| 46 | |
| 47 // Converts the sample buffer into a cricket::CapturedFrame and signals the | |
| 48 // frame for capture. | |
| 49 void CaptureSampleBuffer(CMSampleBufferRef sampleBuffer); | |
| 50 | |
| 51 private: | |
| 52 // Used to signal frame capture on the thread that capturer was started on. | |
| 53 void SignalFrameCapturedOnStartThread(const cricket::CapturedFrame *frame); | |
| 54 | |
| 55 RTCAVFoundationVideoCapturerInternal *_capturer; | |
| 56 rtc::Thread *_startThread; // Set in Start(), unset in Stop(). | |
| 57 }; // AVFoundationVideoCapturer | |
| 58 | |
| 59 } // namespace webrtc | |
| 60 | |
| 61 #endif // TALK_APP_WEBRTC_OBJC_AVFOUNDATION_CAPTURER_H_ | |
| OLD | NEW |