Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java

Issue 24072012: Hold video frame in Bitmap instead of keeping a ByteBuffer reference. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Keep track of buffers in JniFrameConsumer Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/android/java/src/org/chromium/chromoting/DesktopView.java ('k') | remoting/client/jni/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java b/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
index 98169703d0080c961925d9db59dce9183f6a8be7..fb9110d4830776ae0143aeb86f07e6f521f8daf9 100644
--- a/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
+++ b/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
@@ -115,6 +115,11 @@ public class JniInterface {
disconnectNative();
sSuccessCallback = null;
sConnected = false;
+
+ // Drop the reference to free the Bitmap for GC.
+ synchronized (sFrameLock) {
+ sFrameBitmap = null;
+ }
}
/** Performs the native portion of the connection. */
@@ -136,17 +141,11 @@ public class JniInterface {
/** Callback to signal whenever we need to redraw. */
private static Runnable sRedrawCallback = null;
- /** Screen width of the video feed. */
- private static int sWidth = 0;
-
- /** Screen height of the video feed. */
- private static int sHeight = 0;
-
- /** Bitmap holding the latest screen image. */
- private static Bitmap sBitmap = null;
+ /** Bitmap holding a copy of the latest video frame. */
+ private static Bitmap sFrameBitmap = null;
- /** Buffer holding the video feed. */
- private static ByteBuffer sBuffer = null;
+ /** Lock to protect the frame bitmap reference. */
+ private static final Object sFrameLock = new Object();
/** Position of cursor hot-spot. */
private static Point sCursorHotspot = new Point();
@@ -301,10 +300,10 @@ public class JniInterface {
}
/**
- * Obtains the image buffer.
- * This should not be called from the UI thread. (We prefer the native graphics thread.)
+ * Returns a bitmap of the latest video frame. Called on the native graphics thread when
+ * DesktopView is repainted.
*/
- public static Bitmap retrieveVideoFrame() {
+ public static Bitmap getVideoFrame() {
if (Looper.myLooper() == Looper.getMainLooper()) {
Log.w("jniiface", "Canvas being redrawn on UI thread");
}
@@ -313,19 +312,31 @@ public class JniInterface {
return null;
}
- // This is synchronized only to silence a findbugs warning about incorrect initialization of
- // |sBitmap|.
- // TODO(lambroslambrou): Annotate this class as @NotThreadSafe to prevent similar warnings
- // in future.
- synchronized (JniInterface.class) {
- if (sBitmap == null || sBitmap.getWidth() != sWidth || sBitmap.getHeight() != sHeight) {
- sBitmap = Bitmap.createBitmap(sWidth, sHeight, Bitmap.Config.ARGB_8888);
- }
+ synchronized (sFrameLock) {
+ return sFrameBitmap;
+ }
+ }
+
+ /**
+ * Sets a new video frame. Called from native code on the native graphics thread when a new
+ * frame is allocated.
+ */
+ private static void setVideoFrame(Bitmap bitmap) {
+ if (Looper.myLooper() == Looper.getMainLooper()) {
+ Log.w("jniiface", "Video frame updated on UI thread");
+ }
+
+ synchronized (sFrameLock) {
+ sFrameBitmap = bitmap;
}
+ }
- sBuffer.rewind();
- sBitmap.copyPixelsFromBuffer(sBuffer);
- return sBitmap;
+ /**
+ * Creates a new Bitmap to hold video frame pixels. Called by native code which stores a global
+ * reference to the Bitmap and writes the decoded frame pixels to it.
+ */
+ private static Bitmap newBitmap(int width, int height) {
+ return Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
}
/**
« no previous file with comments | « remoting/android/java/src/org/chromium/chromoting/DesktopView.java ('k') | remoting/client/jni/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698