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

Unified Diff: remoting/client/jni/jni_frame_consumer.cc

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: Address comments 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/client/jni/jni_frame_consumer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/jni/jni_frame_consumer.cc
diff --git a/remoting/client/jni/jni_frame_consumer.cc b/remoting/client/jni/jni_frame_consumer.cc
index 36a81841771a0f9d9f4c537b3e653425ecff99db..ef58817e05ed4b28f7706e6fcc00984b1b215560 100644
--- a/remoting/client/jni/jni_frame_consumer.cc
+++ b/remoting/client/jni/jni_frame_consumer.cc
@@ -7,38 +7,12 @@
#include "base/android/jni_android.h"
#include "base/logging.h"
#include "base/synchronization/waitable_event.h"
+#include "remoting/base/util.h"
#include "remoting/client/frame_producer.h"
#include "remoting/client/jni/chromoting_jni_runtime.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_region.h"
-
-namespace {
-
-// Allocates its buffer within a Java direct byte buffer, where it can be
-// accessed by both native and managed code.
-class DirectDesktopFrame : public webrtc::BasicDesktopFrame {
- public:
- DirectDesktopFrame(int width, int height);
-
- virtual ~DirectDesktopFrame();
-
- jobject buffer() const {
- return buffer_;
- }
-
- private:
- jobject buffer_;
-};
-
-DirectDesktopFrame::DirectDesktopFrame(int width, int height)
- : webrtc::BasicDesktopFrame(webrtc::DesktopSize(width, height)) {
- JNIEnv* env = base::android::AttachCurrentThread();
- buffer_ = env->NewDirectByteBuffer(data(), stride()*height);
-}
-
-DirectDesktopFrame::~DirectDesktopFrame() {}
-
-} // namespace
+#include "ui/gfx/android/java_bitmap.h"
namespace remoting {
@@ -70,19 +44,32 @@ void JniFrameConsumer::ApplyBuffer(const webrtc::DesktopSize& view_size,
DCHECK(jni_runtime_->display_task_runner()->BelongsToCurrentThread());
scoped_ptr<webrtc::DesktopFrame> buffer_scoped(buffer);
- jni_runtime_->RedrawCanvas();
- if (view_size.width() > view_size_.width() ||
- view_size.height() > view_size_.height()) {
- LOG(INFO) << "Existing buffer is too small";
- view_size_ = view_size;
+ if (!view_size_.equals(view_size)) {
+ // Drop the frame, since the data belongs to the previous generation,
+ // before SetSourceSize() called SetOutputSizeAndClip().
+ return;
+ }
- // Manually destroy the old buffer before allocating a new one to prevent
- // our memory footprint from temporarily ballooning.
- buffer_scoped.reset();
- AllocateBuffer();
+ // Copy pixels from |buffer| into the Java Bitmap.
+ // TODO(lambroslambrou): Optimize away this copy by having the VideoDecoder
+ // decode directly into the Bitmap's pixel memory. This currently doesn't
+ // work very well because the VideoDecoder writes the decoded data in BGRA,
+ // and then the R/B channels are swapped in place (on the decoding thread).
+ // If a repaint is triggered from a Java event handler, the unswapped pixels
+ // can sometimes appear on the display.
+ uint8* dest_buffer = static_cast<uint8*>(bitmap_->pixels());
+ webrtc::DesktopRect buffer_rect = webrtc::DesktopRect::MakeSize(view_size);
+
+ for (webrtc::DesktopRegion::Iterator i(region); !i.IsAtEnd(); i.Advance()) {
+ webrtc::DesktopRect rect(i.rect());
Sergey Ulanov 2013/10/11 20:32:17 nit: make this a reference.
Lambros 2013/10/15 23:50:33 Done.
+ CopyRGB32Rect(buffer->data(), buffer->stride(), buffer_rect, dest_buffer,
+ bitmap_->stride(), buffer_rect, rect);
}
+ // TODO(lambroslambrou): Optimize this by only repainting the changed pixels.
+ jni_runtime_->RedrawCanvas();
+
// Supply |frame_producer_| with a buffer to render the next frame into.
if (!in_dtor_)
Sergey Ulanov 2013/10/11 20:32:17 Don't need this. This method will not be called fr
Lambros 2013/10/15 23:50:33 Done.
frame_producer_->DrawBuffer(buffer_scoped.release());
@@ -105,8 +92,7 @@ void JniFrameConsumer::SetSourceSize(const webrtc::DesktopSize& source_size,
frame_producer_->SetOutputSizeAndClip(view_size_, clip_area_);
// Unless being destructed, allocate buffer and start drawing frames onto it.
- frame_producer_->RequestReturnBuffers(base::Bind(
- &JniFrameConsumer::AllocateBuffer, base::Unretained(this)));
+ AllocateBuffer();
}
FrameConsumer::PixelFormat JniFrameConsumer::GetPixelFormat() {
@@ -114,25 +100,25 @@ FrameConsumer::PixelFormat JniFrameConsumer::GetPixelFormat() {
}
void JniFrameConsumer::AllocateBuffer() {
+ DCHECK(jni_runtime_->display_task_runner()->BelongsToCurrentThread());
+
// Only do anything if we're not being destructed.
- if (!in_dtor_) {
- if (!jni_runtime_->display_task_runner()->BelongsToCurrentThread()) {
- jni_runtime_->display_task_runner()->PostTask(FROM_HERE,
- base::Bind(&JniFrameConsumer::AllocateBuffer,
- base::Unretained(this)));
- return;
- }
-
- DirectDesktopFrame* buffer = new DirectDesktopFrame(view_size_.width(),
- view_size_.height());
-
- // Update Java's reference to the buffer and record of its dimensions.
- jni_runtime_->UpdateImageBuffer(view_size_.width(),
- view_size_.height(),
- buffer->buffer());
-
- frame_producer_->DrawBuffer(buffer);
- }
+ if (in_dtor_)
Sergey Ulanov 2013/10/11 20:32:17 Don't need this.
Lambros 2013/10/15 23:50:33 Done.
+ return;
+
+ webrtc::DesktopSize size(view_size_.width(), view_size_.height());
+ webrtc::DesktopFrame* buffer = new webrtc::BasicDesktopFrame(size);
Sergey Ulanov 2013/10/11 20:32:17 nit: move this line just before DrawBuffer.
Lambros 2013/10/15 23:50:33 Done.
+
+ // Allocate a new Bitmap, store references here, and pass it to Java.
+ JNIEnv* env = base::android::AttachCurrentThread();
+
+ // |bitmap_| must be deleted before |bitmap_global_ref_| is released.
+ bitmap_.reset();
+ bitmap_global_ref_.Reset(env, jni_runtime_->NewBitmap(size).obj());
+ bitmap_.reset(new gfx::JavaBitmap(bitmap_global_ref_.obj()));
+ jni_runtime_->UpdateFrameBitmap(bitmap_global_ref_.obj());
+
+ frame_producer_->DrawBuffer(buffer);
}
} // namespace remoting
« no previous file with comments | « remoting/client/jni/jni_frame_consumer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698