OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_CLIENT_JNI_JNI_FRAME_CONSUMER_H_ | 5 #ifndef REMOTING_CLIENT_JNI_JNI_FRAME_CONSUMER_H_ |
6 #define REMOTING_CLIENT_JNI_JNI_FRAME_CONSUMER_H_ | 6 #define REMOTING_CLIENT_JNI_JNI_FRAME_CONSUMER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "remoting/protocol/frame_consumer.h" | 14 #include "remoting/protocol/frame_consumer.h" |
15 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" | 15 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" |
16 | 16 |
17 namespace remoting { | 17 namespace remoting { |
18 | 18 |
19 class ChromotingJniRuntime; | 19 class ChromotingJniRuntime; |
20 class JniClient; | |
21 | 20 |
22 // FrameConsumer implementation that draws onto a JNI direct byte buffer. | 21 // FrameConsumer implementation that draws onto a JNI direct byte buffer. |
23 class JniFrameConsumer : public protocol::FrameConsumer { | 22 class JniFrameConsumer : public protocol::FrameConsumer { |
24 public: | 23 public: |
25 // Does not take ownership of |jni_runtime|. | 24 // Does not take ownership of |jni_runtime|. |
26 JniFrameConsumer(ChromotingJniRuntime* jni_runtime, JniClient* client); | 25 explicit JniFrameConsumer(ChromotingJniRuntime* jni_runtime); |
27 | 26 |
28 ~JniFrameConsumer() override; | 27 ~JniFrameConsumer() override; |
29 | 28 |
30 // FrameConsumer implementation. | 29 // FrameConsumer implementation. |
31 std::unique_ptr<webrtc::DesktopFrame> AllocateFrame( | 30 std::unique_ptr<webrtc::DesktopFrame> AllocateFrame( |
32 const webrtc::DesktopSize& size) override; | 31 const webrtc::DesktopSize& size) override; |
33 void DrawFrame(std::unique_ptr<webrtc::DesktopFrame> frame, | 32 void DrawFrame(std::unique_ptr<webrtc::DesktopFrame> frame, |
34 const base::Closure& done) override; | 33 const base::Closure& done) override; |
35 PixelFormat GetPixelFormat() override; | 34 PixelFormat GetPixelFormat() override; |
36 | 35 |
37 private: | 36 private: |
38 class Renderer; | 37 class Renderer; |
39 | 38 |
40 void OnFrameRendered(const base::Closure& done); | 39 void OnFrameRendered(const base::Closure& done); |
41 | 40 |
42 // Used to obtain task runner references and make calls to Java methods. | 41 // Used to obtain task runner references and make calls to Java methods. |
43 ChromotingJniRuntime* jni_runtime_; | 42 ChromotingJniRuntime* jni_runtime_; |
44 | 43 |
45 // Renderer object used to render the frames on the display thread. | 44 // Renderer object used to render the frames on the display thread. |
46 std::unique_ptr<Renderer> renderer_; | 45 std::unique_ptr<Renderer> renderer_; |
47 | 46 |
48 base::WeakPtrFactory<JniFrameConsumer> weak_factory_; | 47 base::WeakPtrFactory<JniFrameConsumer> weak_factory_; |
49 | 48 |
50 DISALLOW_COPY_AND_ASSIGN(JniFrameConsumer); | 49 DISALLOW_COPY_AND_ASSIGN(JniFrameConsumer); |
51 }; | 50 }; |
52 | 51 |
53 } // namespace remoting | 52 } // namespace remoting |
54 | 53 |
55 #endif | 54 #endif |
OLD | NEW |