mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
149 lines
4.4 KiB
C++
149 lines
4.4 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include <android/log.h>
|
|
#include "AndroidMediaLayer.h"
|
|
#include "AndroidBridge.h"
|
|
|
|
#define LOG(args...) __android_log_print(ANDROID_LOG_INFO, "AndroidMediaLayer" , ## args)
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
AndroidMediaLayer::AndroidMediaLayer()
|
|
: mInverted(false), mVisible(true) {
|
|
}
|
|
|
|
AndroidMediaLayer::~AndroidMediaLayer() {
|
|
if (mContentData.window && AndroidBridge::Bridge()) {
|
|
AndroidBridge::Bridge()->ReleaseNativeWindow(mContentData.window);
|
|
mContentData.window = NULL;
|
|
}
|
|
|
|
if (mContentData.surface && AndroidBridge::Bridge()) {
|
|
AndroidBridge::Bridge()->DestroySurface(mContentData.surface);
|
|
mContentData.surface = NULL;
|
|
}
|
|
|
|
std::map<void*, SurfaceData*>::iterator it;
|
|
|
|
for (it = mVideoSurfaces.begin(); it != mVideoSurfaces.end(); it++) {
|
|
SurfaceData* data = it->second;
|
|
|
|
if (AndroidBridge::Bridge()) {
|
|
AndroidBridge::Bridge()->ReleaseNativeWindow(data->window);
|
|
AndroidBridge::Bridge()->DestroySurface(data->surface);
|
|
}
|
|
|
|
delete data;
|
|
}
|
|
|
|
mVideoSurfaces.clear();
|
|
}
|
|
|
|
bool AndroidMediaLayer::EnsureContentSurface() {
|
|
if (!mContentData.surface && AndroidBridge::Bridge()) {
|
|
mContentData.surface = AndroidBridge::Bridge()->CreateSurface();
|
|
if (mContentData.surface) {
|
|
mContentData.window = AndroidBridge::Bridge()->AcquireNativeWindow(AndroidBridge::GetJNIEnv(), mContentData.surface);
|
|
AndroidBridge::Bridge()->SetNativeWindowFormat(mContentData.window, 0, 0, AndroidBridge::WINDOW_FORMAT_RGBA_8888);
|
|
}
|
|
}
|
|
|
|
return mContentData.surface && mContentData.window;
|
|
}
|
|
|
|
void* AndroidMediaLayer::GetNativeWindowForContent() {
|
|
if (!EnsureContentSurface())
|
|
return NULL;
|
|
|
|
return mContentData.window;
|
|
}
|
|
|
|
void* AndroidMediaLayer::RequestNativeWindowForVideo() {
|
|
if (!AndroidBridge::Bridge())
|
|
return NULL;
|
|
|
|
jobject surface = AndroidBridge::Bridge()->CreateSurface();
|
|
if (surface) {
|
|
void* window = AndroidBridge::Bridge()->AcquireNativeWindow(AndroidBridge::GetJNIEnv(), surface);
|
|
if (window) {
|
|
AndroidBridge::Bridge()->SetNativeWindowFormat(window, 0, 0, AndroidBridge::WINDOW_FORMAT_RGBA_8888);
|
|
mVideoSurfaces[window] = new SurfaceData(surface, window);
|
|
return window;
|
|
} else {
|
|
LOG("Failed to create native window from surface");
|
|
|
|
// Cleanup
|
|
AndroidBridge::Bridge()->DestroySurface(surface);
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void AndroidMediaLayer::ReleaseNativeWindowForVideo(void* aWindow) {
|
|
if (mVideoSurfaces.find(aWindow) == mVideoSurfaces.end() || !AndroidBridge::Bridge())
|
|
return;
|
|
|
|
SurfaceData* data = mVideoSurfaces[aWindow];
|
|
|
|
AndroidBridge::Bridge()->ReleaseNativeWindow(data->window);
|
|
AndroidBridge::Bridge()->DestroySurface(data->surface);
|
|
|
|
mVideoSurfaces.erase(aWindow);
|
|
delete data;
|
|
}
|
|
|
|
void AndroidMediaLayer::SetNativeWindowDimensions(void* aWindow, const gfxRect& aDimensions) {
|
|
if (mVideoSurfaces.find(aWindow) == mVideoSurfaces.end())
|
|
return;
|
|
|
|
SurfaceData* data = mVideoSurfaces[aWindow];
|
|
data->dimensions = aDimensions;
|
|
}
|
|
|
|
void AndroidMediaLayer::UpdatePosition(const gfxRect& aRect) {
|
|
if (!mVisible || !AndroidBridge::Bridge())
|
|
return;
|
|
|
|
std::map<void*, SurfaceData*>::iterator it;
|
|
|
|
for (it = mVideoSurfaces.begin(); it != mVideoSurfaces.end(); it++) {
|
|
SurfaceData* data = it->second;
|
|
|
|
gfxRect videoRect(aRect.x + data->dimensions.x, aRect.y + data->dimensions.y,
|
|
data->dimensions.width, data->dimensions.height);
|
|
|
|
AndroidBridge::Bridge()->ShowSurface(data->surface, videoRect, mInverted, false);
|
|
}
|
|
|
|
if (EnsureContentSurface()) {
|
|
AndroidBridge::Bridge()->ShowSurface(mContentData.surface, aRect, mInverted, true);
|
|
}
|
|
}
|
|
|
|
void AndroidMediaLayer::SetVisible(bool aVisible) {
|
|
if (aVisible == mVisible || !AndroidBridge::Bridge())
|
|
return;
|
|
|
|
mVisible = aVisible;
|
|
if (mVisible)
|
|
return;
|
|
|
|
// Hide all surfaces
|
|
std::map<void*, SurfaceData*>::iterator it;
|
|
|
|
if (EnsureContentSurface())
|
|
AndroidBridge::Bridge()->HideSurface(mContentData.surface);
|
|
|
|
for (it = mVideoSurfaces.begin(); it != mVideoSurfaces.end(); it++) {
|
|
SurfaceData* data = it->second;
|
|
AndroidBridge::Bridge()->HideSurface(data->surface);
|
|
}
|
|
}
|
|
|
|
} /* mozilla */
|