Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / content / renderer / media / webrtc / webrtc_video_capturer_adapter.h
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_CAPTURER_ADAPTER_H_
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_CAPTURER_ADAPTER_H_
7
8 #include <vector>
9
10 #include "base/compiler_specific.h"
11 #include "content/common/content_export.h"
12 #include "media/base/video_frame.h"
13 #include "media/video/capture/video_capture_types.h"
14 #include "third_party/libjingle/source/talk/media/base/videocapturer.h"
15
16 namespace content {
17
18 // WebRtcVideoCapturerAdapter implements a simple cricket::VideoCapturer that is
19 // used for VideoCapturing in libJingle and especially in PeerConnections.
20 // The class is created and destroyed on the main render thread.
21 // PeerConnection access cricket::VideoCapturer from a libJingle worker thread.
22 class CONTENT_EXPORT WebRtcVideoCapturerAdapter
23     : NON_EXPORTED_BASE(public cricket::VideoCapturer) {
24  public:
25   explicit WebRtcVideoCapturerAdapter(bool is_screencast);
26   virtual ~WebRtcVideoCapturerAdapter();
27
28   // Sets the requested format. cricket::VideoCapturer may try to scale or
29   // crop to this format if the frame delivered in OnFrameCaptured is not in
30   // this format.
31   // This method is virtual for testing purposes.
32   virtual void SetRequestedFormat(const media::VideoCaptureFormat& format);
33
34   // This method is virtual for testing purposes.
35   virtual void OnFrameCaptured(const scoped_refptr<media::VideoFrame>& frame);
36
37  private:
38   // cricket::VideoCapturer implementation.
39   // These methods are accessed from a libJingle worker thread.
40   virtual cricket::CaptureState Start(
41       const cricket::VideoFormat& capture_format) OVERRIDE;
42   virtual void Stop() OVERRIDE;
43   virtual bool IsRunning() OVERRIDE;
44   virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
45   virtual bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
46                                     cricket::VideoFormat* best_format) OVERRIDE;
47   virtual bool IsScreencast() const OVERRIDE;
48
49   void UpdateI420Buffer(const scoped_refptr<media::VideoFrame>& src);
50
51  private:
52   const bool is_screencast_;
53   bool running_;
54   base::TimeDelta first_frame_timestamp_;
55   // |buffer_| used if cropping is needed. It is created only if needed and
56   // owned by WebRtcVideoCapturerAdapter. If its created, it exists until
57   // WebRtcVideoCapturerAdapter is destroyed.
58   uint8* buffer_;
59   size_t buffer_size_;
60   scoped_ptr<cricket::CapturedFrame> captured_frame_;
61
62   DISALLOW_COPY_AND_ASSIGN(WebRtcVideoCapturerAdapter);
63 };
64
65 }  // namespace content
66
67 #endif  // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_CAPTURER_ADAPTER_H_