OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * libjingle | |
3 * Copyright 2015 Google Inc. | |
4 * | |
5 * Redistribution and use in source and binary forms, with or without | |
6 * modification, are permitted provided that the following conditions are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright notice, | |
9 * this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | |
11 * this list of conditions and the following disclaimer in the documentation | |
12 * and/or other materials provided with the distribution. | |
13 * 3. The name of the author may not be used to endorse or promote products | |
14 * derived from this software without specific prior written permission. | |
15 * | |
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | |
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
26 * | |
27 */ | |
28 | |
29 #ifndef TALK_APP_WEBRTC_JAVA_JNI_SURFACETEXTUREHELPER_JNI_H_ | |
30 #define TALK_APP_WEBRTC_JAVA_JNI_SURFACETEXTUREHELPER_JNI_H_ | |
31 | |
32 #include <jni.h> | |
33 | |
34 #include "talk/app/webrtc/java/jni/jni_helpers.h" | |
35 #include "talk/app/webrtc/java/jni/native_handle_impl.h" | |
36 #include "webrtc/base/refcount.h" | |
37 #include "webrtc/base/scoped_ref_ptr.h" | |
38 #include "webrtc/common_video/interface/video_frame_buffer.h" | |
39 | |
40 namespace webrtc_jni { | |
41 | |
42 // Helper class to create and synchronize access to an Android SurfaceTexture. | |
43 // It is used for creating webrtc::VideoFrameBuffers from a SurfaceTexture when | |
44 // the SurfaceTexture has been updated. | |
45 // When the VideoFrameBuffer is released, this class returns the buffer to the | |
46 // java SurfaceTextureHelper so it can be updated safely. The VideoFrameBuffer | |
47 // can be released on an arbitrary thread. | |
48 // SurfaceTextureHelper is reference counted to make sure that it is not | |
49 // destroyed while a VideoFrameBuffer is in use. | |
50 // This class is the C++ counterpart of the java class SurfaceTextureHelper. | |
51 // Usage: | |
52 // 1. Create an instance of this class. | |
53 // 2. Call GetJavaSurfaceTextureHelper to get the Java SurfaceTextureHelper. | |
54 // 3. Register a listener to the Java SurfaceListener and start producing | |
55 // new buffers. | |
56 // 3. Call CreateTextureFrame to wrap the Java texture in a VideoFrameBuffer. | |
57 class SurfaceTextureHelper : public rtc::RefCountInterface { | |
58 public: | |
59 static rtc::scoped_refptr<SurfaceTextureHelper> Create( | |
60 jobject shared_egl_context); | |
61 | |
62 // Returns the Java SurfaceTextureHelper. | |
63 jobject GetJavaSurfaceTextureHelper() const { | |
64 return *j_surface_texture_helper_; | |
65 } | |
66 | |
67 rtc::scoped_refptr<webrtc::VideoFrameBuffer> CreateTextureFrame( | |
68 int width, | |
69 int height, | |
70 const NativeHandleImpl& native_handle); | |
71 | |
72 protected: | |
73 explicit SurfaceTextureHelper(jobject shared_egl_context); | |
74 ~SurfaceTextureHelper(); | |
75 | |
76 private: | |
77 class TextureBuffer; | |
78 // May be called on arbitrary thread. | |
79 void ReturnTextureFrame(); | |
magjed_webrtc
2015/09/27 11:26:41
Can this be made: 'void ReturnTextureFrame() const
perkj_webrtc
2015/09/28 07:22:47
Done.
| |
80 | |
81 const ScopedGlobalRef<jclass> j_surface_texture_helper_class_; | |
magjed_webrtc
2015/09/27 11:26:41
FYI - You don't need to hold the class yourself if
perkj_webrtc
2015/09/28 07:22:47
Acknowledged.
| |
82 const ScopedGlobalRef<jobject> j_surface_texture_helper_; | |
83 const jmethodID j_return_texture_method_; | |
84 }; | |
85 | |
86 } // namespace webrtc_jni | |
87 | |
88 #endif // TALK_APP_WEBRTC_JAVA_JNI_SURFACETEXTUREHELPER_JNI_H_ | |
OLD | NEW |