Android: refactor video renderer.
Removed the overhead of having to create a shared OpenGL context in the GUI thread and pre-render the frame into a FBO. We now directly render the GL_TEXTURE_EXTERNAL_OES in the QtQuick render thread, using an Android-specific QSGVideoNode. We also use a callback from the render thread to create the texture from there and not have to create a separate shared OpenGL context. Change-Id: I6c8eb94b47d0a03329c912701b8af3fb5ebd1876 Reviewed-by: Christian Stromme <christian.stromme@digia.com>
This commit is contained in:
committed by
The Qt Project
parent
329d9d4563
commit
be7a6241e7
@@ -193,6 +193,13 @@ QSGNode *QDeclarativeVideoRendererBackend::updatePaintNode(QSGNode *oldNode,
|
||||
if (!m_glContext) {
|
||||
m_glContext = QOpenGLContext::currentContext();
|
||||
m_surface->scheduleOpenGLContextUpdate();
|
||||
|
||||
// Internal mechanism to call back the surface renderer from the QtQuick render thread
|
||||
QObject *obj = m_surface->property("_q_GLThreadCallback").value<QObject*>();
|
||||
if (obj) {
|
||||
QEvent ev(QEvent::User);
|
||||
obj->event(&ev);
|
||||
}
|
||||
}
|
||||
|
||||
if (m_frameChanged) {
|
||||
|
||||
@@ -62,7 +62,8 @@ ANDROID_BUNDLED_FILES += \
|
||||
lib/libQt5MultimediaQuick_p.so
|
||||
MODULE_PLUGIN_TYPES = \
|
||||
mediaservice \
|
||||
audio
|
||||
audio \
|
||||
video/videonode
|
||||
|
||||
win32:LIBS += -luuid
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ private:
|
||||
int m_orientation;
|
||||
};
|
||||
|
||||
class QSGVideoNodeFactoryInterface
|
||||
class Q_MULTIMEDIAQUICK_EXPORT QSGVideoNodeFactoryInterface
|
||||
{
|
||||
public:
|
||||
virtual QList<QVideoFrame::PixelFormat> supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType) const = 0;
|
||||
@@ -79,7 +79,7 @@ public:
|
||||
#define QSGVideoNodeFactoryInterface_iid "org.qt-project.qt.sgvideonodefactory/5.0"
|
||||
Q_DECLARE_INTERFACE(QSGVideoNodeFactoryInterface, QSGVideoNodeFactoryInterface_iid)
|
||||
|
||||
class QSGVideoNodeFactoryPlugin : public QObject, public QSGVideoNodeFactoryInterface
|
||||
class Q_MULTIMEDIAQUICK_EXPORT QSGVideoNodeFactoryPlugin : public QObject, public QSGVideoNodeFactoryInterface
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QSGVideoNodeFactoryInterface)
|
||||
|
||||
@@ -3,3 +3,6 @@ TEMPLATE = subdirs
|
||||
SUBDIRS += src \
|
||||
jar
|
||||
|
||||
qtHaveModule(quick) {
|
||||
SUBDIRS += videonode
|
||||
}
|
||||
|
||||
@@ -48,26 +48,28 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
typedef void (*TextureReadyCallback)(void*);
|
||||
|
||||
class QAndroidVideoOutput
|
||||
{
|
||||
public:
|
||||
QAndroidVideoOutput() { }
|
||||
virtual ~QAndroidVideoOutput() { }
|
||||
|
||||
virtual jobject surfaceHolder() = 0;
|
||||
virtual jobject surfaceTexture() { return 0; }
|
||||
|
||||
virtual bool isTextureReady() = 0;
|
||||
virtual void setTextureReadyCallback(TextureReadyCallback cb, void *context = 0) = 0;
|
||||
virtual jobject surfaceTexture() = 0;
|
||||
virtual bool isReady() { return true; }
|
||||
|
||||
virtual void setVideoSize(const QSize &size) = 0;
|
||||
virtual void stop() = 0;
|
||||
virtual void setVideoSize(const QSize &) { }
|
||||
virtual void stop() { }
|
||||
|
||||
virtual QImage toImage() = 0;
|
||||
|
||||
// signals:
|
||||
// void readyChanged(bool);
|
||||
};
|
||||
|
||||
#define QAndroidVideoOutput_iid "org.qt-project.qt.qandroidvideooutput/5.0"
|
||||
Q_DECLARE_INTERFACE(QAndroidVideoOutput, QAndroidVideoOutput_iid)
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QANDROIDVIDEOOUTPUT_H
|
||||
|
||||
@@ -44,39 +44,31 @@
|
||||
#include <QtCore/private/qjni_p.h>
|
||||
#include "jsurfacetextureholder.h"
|
||||
#include <QAbstractVideoSurface>
|
||||
#include <QOpenGLContext>
|
||||
#include <QOffscreenSurface>
|
||||
#include <QOpenGLFramebufferObject>
|
||||
#include <QVideoSurfaceFormat>
|
||||
#include <QOpenGLFunctions>
|
||||
#include <QOpenGLShaderProgram>
|
||||
#include <qevent.h>
|
||||
#include <qcoreapplication.h>
|
||||
#include <qopenglcontext.h>
|
||||
#include <qopenglfunctions.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
static const GLfloat g_vertex_data[] = {
|
||||
-1.f, 1.f,
|
||||
1.f, 1.f,
|
||||
1.f, -1.f,
|
||||
-1.f, -1.f
|
||||
};
|
||||
#define ExternalGLTextureHandle QAbstractVideoBuffer::HandleType(QAbstractVideoBuffer::UserHandle + 1)
|
||||
|
||||
static const GLfloat g_texture_data[] = {
|
||||
0.f, 0.f,
|
||||
1.f, 0.f,
|
||||
1.f, 1.f,
|
||||
0.f, 1.f
|
||||
};
|
||||
TextureDeleter::~TextureDeleter()
|
||||
{
|
||||
glDeleteTextures(1, &m_id);
|
||||
}
|
||||
|
||||
class TextureVideoBuffer : public QAbstractVideoBuffer
|
||||
class AndroidTextureVideoBuffer : public QAbstractVideoBuffer
|
||||
{
|
||||
public:
|
||||
TextureVideoBuffer(GLuint textureId)
|
||||
: QAbstractVideoBuffer(GLTextureHandle)
|
||||
, m_textureId(textureId)
|
||||
{}
|
||||
AndroidTextureVideoBuffer(JSurfaceTexture *surface)
|
||||
: QAbstractVideoBuffer(ExternalGLTextureHandle)
|
||||
, m_surfaceTexture(surface)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~TextureVideoBuffer() {}
|
||||
virtual ~AndroidTextureVideoBuffer() {}
|
||||
|
||||
MapMode mapMode() const { return NotMapped; }
|
||||
uchar *map(MapMode, int*, int*) { return 0; }
|
||||
@@ -84,67 +76,33 @@ public:
|
||||
|
||||
QVariant handle() const
|
||||
{
|
||||
return QVariant::fromValue<unsigned int>(m_textureId);
|
||||
}
|
||||
|
||||
private:
|
||||
GLuint m_textureId;
|
||||
};
|
||||
|
||||
class ImageVideoBuffer : public QAbstractVideoBuffer
|
||||
{
|
||||
public:
|
||||
ImageVideoBuffer(const QImage &image)
|
||||
: QAbstractVideoBuffer(NoHandle)
|
||||
, m_image(image)
|
||||
, m_mode(NotMapped)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
MapMode mapMode() const { return m_mode; }
|
||||
uchar *map(MapMode mode, int *, int *)
|
||||
{
|
||||
if (mode != NotMapped && m_mode == NotMapped) {
|
||||
m_mode = mode;
|
||||
return m_image.bits();
|
||||
if (m_data.isEmpty()) {
|
||||
// update the video texture (called from the render thread)
|
||||
m_surfaceTexture->updateTexImage();
|
||||
m_data << (uint)m_surfaceTexture->textureID() << m_surfaceTexture->getTransformMatrix();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void unmap()
|
||||
{
|
||||
m_mode = NotMapped;
|
||||
return m_data;
|
||||
}
|
||||
|
||||
private:
|
||||
QImage m_image;
|
||||
MapMode m_mode;
|
||||
mutable JSurfaceTexture *m_surfaceTexture;
|
||||
mutable QVariantList m_data;
|
||||
};
|
||||
|
||||
QAndroidVideoRendererControl::QAndroidVideoRendererControl(QObject *parent)
|
||||
: QVideoRendererControl(parent)
|
||||
, m_surface(0)
|
||||
, m_offscreenSurface(0)
|
||||
, m_glContext(0)
|
||||
, m_fbo(0)
|
||||
, m_program(0)
|
||||
, m_useImage(false)
|
||||
, m_androidSurface(0)
|
||||
, m_surfaceTexture(0)
|
||||
, m_surfaceHolder(0)
|
||||
, m_externalTex(0)
|
||||
, m_textureReadyCallback(0)
|
||||
, m_textureReadyContext(0)
|
||||
, m_textureDeleter(0)
|
||||
{
|
||||
}
|
||||
|
||||
QAndroidVideoRendererControl::~QAndroidVideoRendererControl()
|
||||
{
|
||||
if (m_glContext)
|
||||
m_glContext->makeCurrent(m_offscreenSurface);
|
||||
|
||||
if (m_surfaceTexture) {
|
||||
m_surfaceTexture->callMethod<void>("release");
|
||||
delete m_surfaceTexture;
|
||||
@@ -159,13 +117,8 @@ QAndroidVideoRendererControl::~QAndroidVideoRendererControl()
|
||||
delete m_surfaceHolder;
|
||||
m_surfaceHolder = 0;
|
||||
}
|
||||
if (m_externalTex)
|
||||
glDeleteTextures(1, &m_externalTex);
|
||||
|
||||
delete m_fbo;
|
||||
delete m_program;
|
||||
delete m_glContext;
|
||||
delete m_offscreenSurface;
|
||||
if (m_textureDeleter)
|
||||
m_textureDeleter->deleteLater();
|
||||
}
|
||||
|
||||
QAbstractVideoSurface *QAndroidVideoRendererControl::surface() const
|
||||
@@ -178,28 +131,23 @@ void QAndroidVideoRendererControl::setSurface(QAbstractVideoSurface *surface)
|
||||
if (surface == m_surface)
|
||||
return;
|
||||
|
||||
if (m_surface && m_surface->isActive()) {
|
||||
m_surface->stop();
|
||||
m_surface->removeEventFilter(this);
|
||||
if (m_surface) {
|
||||
if (m_surface->isActive())
|
||||
m_surface->stop();
|
||||
m_surface->setProperty("_q_GLThreadCallback", QVariant());
|
||||
}
|
||||
|
||||
m_surface = surface;
|
||||
|
||||
if (m_surface) {
|
||||
m_useImage = !m_surface->supportedPixelFormats(QAbstractVideoBuffer::GLTextureHandle).contains(QVideoFrame::Format_BGR32);
|
||||
m_surface->installEventFilter(this);
|
||||
m_surface->setProperty("_q_GLThreadCallback",
|
||||
QVariant::fromValue<QObject*>(this));
|
||||
}
|
||||
}
|
||||
|
||||
bool QAndroidVideoRendererControl::isTextureReady()
|
||||
bool QAndroidVideoRendererControl::isReady()
|
||||
{
|
||||
return QOpenGLContext::currentContext() || (m_surface && m_surface->property("GLContext").isValid());
|
||||
}
|
||||
|
||||
void QAndroidVideoRendererControl::setTextureReadyCallback(TextureReadyCallback cb, void *context)
|
||||
{
|
||||
m_textureReadyCallback = cb;
|
||||
m_textureReadyContext = context;
|
||||
return QOpenGLContext::currentContext() || m_externalTex;
|
||||
}
|
||||
|
||||
bool QAndroidVideoRendererControl::initSurfaceTexture()
|
||||
@@ -210,45 +158,15 @@ bool QAndroidVideoRendererControl::initSurfaceTexture()
|
||||
if (!m_surface)
|
||||
return false;
|
||||
|
||||
QOpenGLContext *currContext = QOpenGLContext::currentContext();
|
||||
|
||||
// If we don't have a GL context in the current thread, create one and share it
|
||||
// with the render thread GL context
|
||||
if (!currContext && !m_glContext) {
|
||||
QOpenGLContext *shareContext = qobject_cast<QOpenGLContext*>(m_surface->property("GLContext").value<QObject*>());
|
||||
if (!shareContext)
|
||||
return false;
|
||||
|
||||
m_offscreenSurface = new QOffscreenSurface;
|
||||
QSurfaceFormat format;
|
||||
format.setSwapBehavior(QSurfaceFormat::SingleBuffer);
|
||||
m_offscreenSurface->setFormat(format);
|
||||
m_offscreenSurface->create();
|
||||
|
||||
m_glContext = new QOpenGLContext;
|
||||
m_glContext->setFormat(m_offscreenSurface->requestedFormat());
|
||||
|
||||
if (shareContext)
|
||||
m_glContext->setShareContext(shareContext);
|
||||
|
||||
if (!m_glContext->create()) {
|
||||
delete m_glContext;
|
||||
m_glContext = 0;
|
||||
delete m_offscreenSurface;
|
||||
m_offscreenSurface = 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
// if sharing contexts is not supported, fallback to image rendering and send the bits
|
||||
// to the video surface
|
||||
if (!m_glContext->shareContext())
|
||||
m_useImage = true;
|
||||
// if we have an OpenGL context in the current thread, create a texture. Otherwise, wait
|
||||
// for the GL render thread to call us back to do it.
|
||||
if (QOpenGLContext::currentContext()) {
|
||||
glGenTextures(1, &m_externalTex);
|
||||
m_textureDeleter = new TextureDeleter(m_externalTex);
|
||||
} else if (!m_externalTex) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (m_glContext)
|
||||
m_glContext->makeCurrent(m_offscreenSurface);
|
||||
|
||||
glGenTextures(1, &m_externalTex);
|
||||
m_surfaceTexture = new JSurfaceTexture(m_externalTex);
|
||||
|
||||
if (m_surfaceTexture->isValid()) {
|
||||
@@ -256,7 +174,9 @@ bool QAndroidVideoRendererControl::initSurfaceTexture()
|
||||
} else {
|
||||
delete m_surfaceTexture;
|
||||
m_surfaceTexture = 0;
|
||||
glDeleteTextures(1, &m_externalTex);
|
||||
m_textureDeleter->deleteLater();
|
||||
m_externalTex = 0;
|
||||
m_textureDeleter = 0;
|
||||
}
|
||||
|
||||
return m_surfaceTexture != 0;
|
||||
@@ -294,9 +214,6 @@ void QAndroidVideoRendererControl::setVideoSize(const QSize &size)
|
||||
stop();
|
||||
|
||||
m_nativeSize = size;
|
||||
|
||||
delete m_fbo;
|
||||
m_fbo = 0;
|
||||
}
|
||||
|
||||
void QAndroidVideoRendererControl::stop()
|
||||
@@ -308,131 +225,45 @@ void QAndroidVideoRendererControl::stop()
|
||||
|
||||
QImage QAndroidVideoRendererControl::toImage()
|
||||
{
|
||||
if (!m_fbo)
|
||||
return QImage();
|
||||
|
||||
return m_fbo->toImage().mirrored();
|
||||
// FIXME!!! Since we are not using a FBO anymore, we can't grab the pixels. And glGetTexImage
|
||||
// doesn't work on GL_TEXTURE_EXTERNAL_OES
|
||||
return QImage();
|
||||
}
|
||||
|
||||
void QAndroidVideoRendererControl::onFrameAvailable()
|
||||
{
|
||||
if (m_glContext)
|
||||
m_glContext->makeCurrent(m_offscreenSurface);
|
||||
|
||||
m_surfaceTexture->updateTexImage();
|
||||
|
||||
if (!m_nativeSize.isValid())
|
||||
if (!m_nativeSize.isValid() || !m_surface)
|
||||
return;
|
||||
|
||||
renderFrameToFbo();
|
||||
QAbstractVideoBuffer *buffer = new AndroidTextureVideoBuffer(m_surfaceTexture);
|
||||
QVideoFrame frame(buffer, m_nativeSize, QVideoFrame::Format_BGR32);
|
||||
|
||||
QAbstractVideoBuffer *buffer = 0;
|
||||
QVideoFrame frame;
|
||||
|
||||
if (m_useImage) {
|
||||
buffer = new ImageVideoBuffer(m_fbo->toImage().mirrored());
|
||||
frame = QVideoFrame(buffer, m_nativeSize, QVideoFrame::Format_RGB32);
|
||||
} else {
|
||||
buffer = new TextureVideoBuffer(m_fbo->texture());
|
||||
frame = QVideoFrame(buffer, m_nativeSize, QVideoFrame::Format_BGR32);
|
||||
if (m_surface->isActive() && (m_surface->surfaceFormat().pixelFormat() != frame.pixelFormat()
|
||||
|| m_surface->nativeResolution() != frame.size())) {
|
||||
m_surface->stop();
|
||||
}
|
||||
|
||||
if (m_surface && frame.isValid()) {
|
||||
if (m_surface->isActive() && (m_surface->surfaceFormat().pixelFormat() != frame.pixelFormat()
|
||||
|| m_surface->nativeResolution() != frame.size())) {
|
||||
m_surface->stop();
|
||||
}
|
||||
if (!m_surface->isActive()) {
|
||||
QVideoSurfaceFormat format(frame.size(), frame.pixelFormat(), ExternalGLTextureHandle);
|
||||
format.setScanLineDirection(QVideoSurfaceFormat::BottomToTop);
|
||||
|
||||
if (!m_surface->isActive()) {
|
||||
QVideoSurfaceFormat format(frame.size(), frame.pixelFormat(),
|
||||
m_useImage ? QAbstractVideoBuffer::NoHandle
|
||||
: QAbstractVideoBuffer::GLTextureHandle);
|
||||
|
||||
m_surface->start(format);
|
||||
}
|
||||
|
||||
if (m_surface->isActive())
|
||||
m_surface->present(frame);
|
||||
m_surface->start(format);
|
||||
}
|
||||
|
||||
if (m_surface->isActive())
|
||||
m_surface->present(frame);
|
||||
}
|
||||
|
||||
void QAndroidVideoRendererControl::renderFrameToFbo()
|
||||
void QAndroidVideoRendererControl::customEvent(QEvent *e)
|
||||
{
|
||||
createGLResources();
|
||||
|
||||
m_fbo->bind();
|
||||
|
||||
glViewport(0, 0, m_nativeSize.width(), m_nativeSize.height());
|
||||
|
||||
m_program->bind();
|
||||
m_program->enableAttributeArray(0);
|
||||
m_program->enableAttributeArray(1);
|
||||
m_program->setUniformValue("frameTexture", GLuint(0));
|
||||
m_program->setUniformValue("texMatrix", m_surfaceTexture->getTransformMatrix());
|
||||
|
||||
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, g_vertex_data);
|
||||
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 0, g_texture_data);
|
||||
|
||||
glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
|
||||
|
||||
m_program->disableAttributeArray(0);
|
||||
m_program->disableAttributeArray(1);
|
||||
m_program->release();
|
||||
|
||||
glBindTexture(GL_TEXTURE_EXTERNAL_OES, 0);
|
||||
m_fbo->release();
|
||||
|
||||
glFinish();
|
||||
}
|
||||
|
||||
void QAndroidVideoRendererControl::createGLResources()
|
||||
{
|
||||
if (!m_fbo)
|
||||
m_fbo = new QOpenGLFramebufferObject(m_nativeSize);
|
||||
|
||||
if (!m_program) {
|
||||
m_program = new QOpenGLShaderProgram;
|
||||
|
||||
QOpenGLShader *vertexShader = new QOpenGLShader(QOpenGLShader::Vertex, m_program);
|
||||
vertexShader->compileSourceCode("attribute highp vec4 vertexCoordsArray; \n" \
|
||||
"attribute highp vec2 textureCoordArray; \n" \
|
||||
"uniform highp mat4 texMatrix; \n" \
|
||||
"varying highp vec2 textureCoords; \n" \
|
||||
"void main(void) \n" \
|
||||
"{ \n" \
|
||||
" gl_Position = vertexCoordsArray; \n" \
|
||||
" textureCoords = (texMatrix * vec4(textureCoordArray, 0.0, 1.0)).xy; \n" \
|
||||
"}\n");
|
||||
m_program->addShader(vertexShader);
|
||||
|
||||
QOpenGLShader *fragmentShader = new QOpenGLShader(QOpenGLShader::Fragment, m_program);
|
||||
fragmentShader->compileSourceCode("#extension GL_OES_EGL_image_external : require \n" \
|
||||
"varying highp vec2 textureCoords; \n" \
|
||||
"uniform samplerExternalOES frameTexture; \n" \
|
||||
"void main() \n" \
|
||||
"{ \n" \
|
||||
" gl_FragColor = texture2D(frameTexture, textureCoords); \n" \
|
||||
"}\n");
|
||||
m_program->addShader(fragmentShader);
|
||||
|
||||
m_program->bindAttributeLocation("vertexCoordsArray", 0);
|
||||
m_program->bindAttributeLocation("textureCoordArray", 1);
|
||||
m_program->link();
|
||||
}
|
||||
}
|
||||
|
||||
bool QAndroidVideoRendererControl::eventFilter(QObject *, QEvent *e)
|
||||
{
|
||||
if (e->type() == QEvent::DynamicPropertyChange) {
|
||||
QDynamicPropertyChangeEvent *event = static_cast<QDynamicPropertyChangeEvent*>(e);
|
||||
if (event->propertyName() == "GLContext" && m_textureReadyCallback) {
|
||||
m_textureReadyCallback(m_textureReadyContext);
|
||||
m_textureReadyCallback = 0;
|
||||
m_textureReadyContext = 0;
|
||||
if (e->type() == QEvent::User) {
|
||||
// This is running in the render thread (OpenGL enabled)
|
||||
if (!m_externalTex) {
|
||||
glGenTextures(1, &m_externalTex);
|
||||
m_textureDeleter = new TextureDeleter(m_externalTex); // will be deleted in the correct thread
|
||||
emit readyChanged(true);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
@@ -48,15 +48,23 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QOpenGLContext;
|
||||
class QOffscreenSurface;
|
||||
class QOpenGLFramebufferObject;
|
||||
class QOpenGLShaderProgram;
|
||||
class JSurfaceTextureHolder;
|
||||
|
||||
class TextureDeleter : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TextureDeleter(uint id) : m_id(id) { }
|
||||
~TextureDeleter();
|
||||
|
||||
private:
|
||||
uint m_id;
|
||||
};
|
||||
|
||||
class QAndroidVideoRendererControl : public QVideoRendererControl, public QAndroidVideoOutput
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QAndroidVideoOutput)
|
||||
public:
|
||||
explicit QAndroidVideoRendererControl(QObject *parent = 0);
|
||||
~QAndroidVideoRendererControl() Q_DECL_OVERRIDE;
|
||||
@@ -65,38 +73,31 @@ public:
|
||||
void setSurface(QAbstractVideoSurface *surface) Q_DECL_OVERRIDE;
|
||||
|
||||
jobject surfaceHolder() Q_DECL_OVERRIDE;
|
||||
bool isTextureReady() Q_DECL_OVERRIDE;
|
||||
void setTextureReadyCallback(TextureReadyCallback cb, void *context = 0) Q_DECL_OVERRIDE;
|
||||
jobject surfaceTexture() Q_DECL_OVERRIDE;
|
||||
bool isReady() Q_DECL_OVERRIDE;
|
||||
void setVideoSize(const QSize &size) Q_DECL_OVERRIDE;
|
||||
void stop() Q_DECL_OVERRIDE;
|
||||
QImage toImage() Q_DECL_OVERRIDE;
|
||||
|
||||
bool eventFilter(QObject *obj, QEvent *event) Q_DECL_OVERRIDE;
|
||||
void customEvent(QEvent *) Q_DECL_OVERRIDE;
|
||||
|
||||
Q_SIGNALS:
|
||||
void readyChanged(bool);
|
||||
|
||||
private Q_SLOTS:
|
||||
void onFrameAvailable();
|
||||
|
||||
private:
|
||||
bool initSurfaceTexture();
|
||||
void renderFrameToFbo();
|
||||
void createGLResources();
|
||||
|
||||
QAbstractVideoSurface *m_surface;
|
||||
QOffscreenSurface *m_offscreenSurface;
|
||||
QOpenGLContext *m_glContext;
|
||||
QOpenGLFramebufferObject *m_fbo;
|
||||
QOpenGLShaderProgram *m_program;
|
||||
bool m_useImage;
|
||||
QSize m_nativeSize;
|
||||
|
||||
QJNIObjectPrivate *m_androidSurface;
|
||||
JSurfaceTexture *m_surfaceTexture;
|
||||
JSurfaceTextureHolder *m_surfaceHolder;
|
||||
uint m_externalTex;
|
||||
|
||||
TextureReadyCallback m_textureReadyCallback;
|
||||
void *m_textureReadyContext;
|
||||
TextureDeleter *m_textureDeleter;
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
@@ -52,12 +52,6 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
static void textureReadyCallback(void *context)
|
||||
{
|
||||
if (context)
|
||||
reinterpret_cast<QAndroidCameraSession *>(context)->onSurfaceTextureReady();
|
||||
}
|
||||
|
||||
QAndroidCameraSession::QAndroidCameraSession(QObject *parent)
|
||||
: QObject(parent)
|
||||
, m_selectedCamera(0)
|
||||
@@ -188,12 +182,17 @@ void QAndroidCameraSession::close()
|
||||
emit statusChanged(m_status);
|
||||
}
|
||||
|
||||
void QAndroidCameraSession::setVideoPreview(QAndroidVideoOutput *videoOutput)
|
||||
void QAndroidCameraSession::setVideoPreview(QObject *videoOutput)
|
||||
{
|
||||
if (m_videoOutput)
|
||||
m_videoOutput->stop();
|
||||
|
||||
m_videoOutput = videoOutput;
|
||||
if (videoOutput) {
|
||||
connect(videoOutput, SIGNAL(readyChanged(bool)), this, SLOT(onVideoOutputReady(bool)));
|
||||
m_videoOutput = qobject_cast<QAndroidVideoOutput *>(videoOutput);
|
||||
} else {
|
||||
m_videoOutput = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void QAndroidCameraSession::adjustViewfinderSize(const QSize &captureSize, bool restartPreview)
|
||||
@@ -243,12 +242,8 @@ void QAndroidCameraSession::startPreview()
|
||||
applyImageSettings();
|
||||
adjustViewfinderSize(m_imageSettings.resolution());
|
||||
|
||||
if (m_videoOutput) {
|
||||
if (m_videoOutput->isTextureReady())
|
||||
m_camera->setPreviewTexture(m_videoOutput->surfaceTexture());
|
||||
else
|
||||
m_videoOutput->setTextureReadyCallback(textureReadyCallback, this);
|
||||
}
|
||||
if (m_videoOutput && m_videoOutput->isReady())
|
||||
onVideoOutputReady(true);
|
||||
|
||||
JMultimediaUtils::enableOrientationListener(true);
|
||||
|
||||
@@ -522,9 +517,9 @@ void QAndroidCameraSession::processCapturedImage(int id,
|
||||
}
|
||||
}
|
||||
|
||||
void QAndroidCameraSession::onSurfaceTextureReady()
|
||||
void QAndroidCameraSession::onVideoOutputReady(bool ready)
|
||||
{
|
||||
if (m_camera && m_videoOutput)
|
||||
if (m_camera && m_videoOutput && ready)
|
||||
m_camera->setPreviewTexture(m_videoOutput->surfaceTexture());
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ public:
|
||||
void setCaptureMode(QCamera::CaptureModes mode);
|
||||
bool isCaptureModeSupported(QCamera::CaptureModes mode) const;
|
||||
|
||||
void setVideoPreview(QAndroidVideoOutput *videoOutput);
|
||||
void setVideoPreview(QObject *videoOutput);
|
||||
void adjustViewfinderSize(const QSize &captureSize, bool restartPreview = true);
|
||||
|
||||
QImageEncoderSettings imageSettings() const { return m_imageSettings; }
|
||||
@@ -88,8 +88,6 @@ public:
|
||||
int capture(const QString &fileName);
|
||||
void cancelCapture();
|
||||
|
||||
void onSurfaceTextureReady();
|
||||
|
||||
int currentCameraRotation() const;
|
||||
|
||||
Q_SIGNALS:
|
||||
@@ -110,6 +108,8 @@ Q_SIGNALS:
|
||||
void imageCaptureError(int id, int error, const QString &errorString);
|
||||
|
||||
private Q_SLOTS:
|
||||
void onVideoOutputReady(bool ready);
|
||||
|
||||
void onApplicationStateChanged(Qt::ApplicationState state);
|
||||
|
||||
void onCameraPictureExposed();
|
||||
|
||||
@@ -88,7 +88,7 @@ private:
|
||||
QAndroidVideoDeviceSelectorControl *m_videoInputControl;
|
||||
QAndroidAudioInputSelectorControl *m_audioInputControl;
|
||||
QAndroidCameraSession *m_cameraSession;
|
||||
QAndroidVideoRendererControl *m_videoRendererControl;
|
||||
QMediaControl *m_videoRendererControl;
|
||||
QAndroidCameraZoomControl *m_cameraZoomControl;
|
||||
QAndroidCameraExposureControl *m_cameraExposureControl;
|
||||
QAndroidCameraFlashControl *m_cameraFlashControl;
|
||||
|
||||
@@ -45,12 +45,6 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
static void textureReadyCallback(void *context)
|
||||
{
|
||||
if (context)
|
||||
reinterpret_cast<QAndroidMediaPlayerControl *>(context)->onSurfaceTextureReady();
|
||||
}
|
||||
|
||||
QAndroidMediaPlayerControl::QAndroidMediaPlayerControl(QObject *parent)
|
||||
: QMediaPlayerControl(parent),
|
||||
mMediaPlayer(new JMediaPlayer),
|
||||
@@ -241,18 +235,18 @@ void QAndroidMediaPlayerControl::setMedia(const QMediaContent &mediaContent,
|
||||
setSeekable(true);
|
||||
}
|
||||
|
||||
void QAndroidMediaPlayerControl::setVideoOutput(QAndroidVideoOutput *videoOutput)
|
||||
void QAndroidMediaPlayerControl::setVideoOutput(QObject *videoOutput)
|
||||
{
|
||||
if (mVideoOutput)
|
||||
mVideoOutput->stop();
|
||||
|
||||
mVideoOutput = videoOutput;
|
||||
mVideoOutput = qobject_cast<QAndroidVideoOutput *>(videoOutput);
|
||||
|
||||
if (mVideoOutput && !mMediaPlayer->display()) {
|
||||
if (mVideoOutput->isTextureReady())
|
||||
if (mVideoOutput->isReady())
|
||||
mMediaPlayer->setDisplay(mVideoOutput->surfaceHolder());
|
||||
else
|
||||
mVideoOutput->setTextureReadyCallback(textureReadyCallback, this);
|
||||
connect(videoOutput, SIGNAL(readyChanged(bool)), this, SLOT(onVideoOutputReady(bool)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -426,9 +420,9 @@ void QAndroidMediaPlayerControl::onVideoSizeChanged(qint32 width, qint32 height)
|
||||
mVideoOutput->setVideoSize(mVideoSize);
|
||||
}
|
||||
|
||||
void QAndroidMediaPlayerControl::onSurfaceTextureReady()
|
||||
void QAndroidMediaPlayerControl::onVideoOutputReady(bool ready)
|
||||
{
|
||||
if (!mMediaPlayer->display() && mVideoOutput) {
|
||||
if (!mMediaPlayer->display() && mVideoOutput && ready) {
|
||||
mMediaPlayer->setDisplay(mVideoOutput->surfaceHolder());
|
||||
flushPendingStates();
|
||||
}
|
||||
|
||||
@@ -75,8 +75,7 @@ public:
|
||||
const QIODevice *mediaStream() const Q_DECL_OVERRIDE;
|
||||
void setMedia(const QMediaContent &mediaContent, QIODevice *stream) Q_DECL_OVERRIDE;
|
||||
|
||||
void setVideoOutput(QAndroidVideoOutput *videoOutput);
|
||||
void onSurfaceTextureReady();
|
||||
void setVideoOutput(QObject *videoOutput);
|
||||
|
||||
Q_SIGNALS:
|
||||
void metaDataUpdated();
|
||||
@@ -90,6 +89,7 @@ public Q_SLOTS:
|
||||
void setMuted(bool muted) Q_DECL_OVERRIDE;
|
||||
|
||||
private Q_SLOTS:
|
||||
void onVideoOutputReady(bool ready);
|
||||
void onError(qint32 what, qint32 extra);
|
||||
void onInfo(qint32 what, qint32 extra);
|
||||
void onMediaPlayerInfo(qint32 what, qint32 extra);
|
||||
|
||||
@@ -48,7 +48,6 @@ QT_BEGIN_NAMESPACE
|
||||
|
||||
class QAndroidMediaPlayerControl;
|
||||
class QAndroidMetaDataReaderControl;
|
||||
class QAndroidVideoRendererControl;
|
||||
|
||||
class QAndroidMediaService : public QMediaService
|
||||
{
|
||||
@@ -63,7 +62,7 @@ public:
|
||||
private:
|
||||
QAndroidMediaPlayerControl *mMediaControl;
|
||||
QAndroidMetaDataReaderControl *mMetadataControl;
|
||||
QAndroidVideoRendererControl *mVideoRendererControl;
|
||||
QMediaControl *mVideoRendererControl;
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
@@ -56,6 +56,7 @@ public:
|
||||
explicit JSurfaceTexture(unsigned int texName);
|
||||
~JSurfaceTexture();
|
||||
|
||||
int textureID() const { return m_texID; }
|
||||
QMatrix4x4 getTransformMatrix();
|
||||
void updateTexImage();
|
||||
|
||||
|
||||
3
src/plugins/android/videonode/android_videonode.json
Normal file
3
src/plugins/android/videonode/android_videonode.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"Keys": ["sgvideonodes"]
|
||||
}
|
||||
204
src/plugins/android/videonode/qandroidsgvideonode.cpp
Normal file
204
src/plugins/android/videonode/qandroidsgvideonode.cpp
Normal file
@@ -0,0 +1,204 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and Digia. For licensing terms and
|
||||
** conditions see http://qt.digia.com/licensing. For further information
|
||||
** use the contact form at http://qt.digia.com/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** In addition, as a special exception, Digia gives you certain additional
|
||||
** rights. These rights are described in the Digia Qt LGPL Exception
|
||||
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.GPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met: http://www.gnu.org/copyleft/gpl.html.
|
||||
**
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qandroidsgvideonode.h"
|
||||
|
||||
#include <qsgmaterial.h>
|
||||
#include <qmutex.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QAndroidSGVideoNodeMaterialShader : public QSGMaterialShader
|
||||
{
|
||||
public:
|
||||
void updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
|
||||
|
||||
char const *const *attributeNames() const {
|
||||
static const char *names[] = {
|
||||
"qt_VertexPosition",
|
||||
"qt_VertexTexCoord",
|
||||
0
|
||||
};
|
||||
return names;
|
||||
}
|
||||
|
||||
protected:
|
||||
const char *vertexShader() const {
|
||||
return
|
||||
"uniform highp mat4 qt_Matrix; \n"
|
||||
"uniform highp mat4 texMatrix; \n"
|
||||
"attribute highp vec4 qt_VertexPosition; \n"
|
||||
"attribute highp vec2 qt_VertexTexCoord; \n"
|
||||
"varying highp vec2 qt_TexCoord; \n"
|
||||
"void main() { \n"
|
||||
" qt_TexCoord = (texMatrix * vec4(qt_VertexTexCoord, 0.0, 1.0)).xy; \n"
|
||||
" gl_Position = qt_Matrix * qt_VertexPosition; \n"
|
||||
"}";
|
||||
}
|
||||
|
||||
const char *fragmentShader() const {
|
||||
return
|
||||
"#extension GL_OES_EGL_image_external : require \n"
|
||||
"uniform samplerExternalOES videoTexture; \n"
|
||||
"uniform lowp float opacity; \n"
|
||||
"varying highp vec2 qt_TexCoord; \n"
|
||||
"void main() \n"
|
||||
"{ \n"
|
||||
" gl_FragColor = texture2D(videoTexture, qt_TexCoord) * opacity; \n"
|
||||
"}";
|
||||
}
|
||||
|
||||
void initialize() {
|
||||
m_id_matrix = program()->uniformLocation("qt_Matrix");
|
||||
m_id_texMatrix = program()->uniformLocation("texMatrix");
|
||||
m_id_texture = program()->uniformLocation("videoTexture");
|
||||
m_id_opacity = program()->uniformLocation("opacity");
|
||||
}
|
||||
|
||||
int m_id_matrix;
|
||||
int m_id_texMatrix;
|
||||
int m_id_texture;
|
||||
int m_id_opacity;
|
||||
};
|
||||
|
||||
class QAndroidSGVideoNodeMaterial : public QSGMaterial
|
||||
{
|
||||
public:
|
||||
QAndroidSGVideoNodeMaterial()
|
||||
: m_textureId(0)
|
||||
{
|
||||
setFlag(Blending, false);
|
||||
}
|
||||
|
||||
~QAndroidSGVideoNodeMaterial()
|
||||
{
|
||||
m_frame = QVideoFrame();
|
||||
}
|
||||
|
||||
QSGMaterialType *type() const {
|
||||
static QSGMaterialType theType;
|
||||
return &theType;
|
||||
}
|
||||
|
||||
QSGMaterialShader *createShader() const {
|
||||
return new QAndroidSGVideoNodeMaterialShader;
|
||||
}
|
||||
|
||||
int compare(const QSGMaterial *other) const {
|
||||
const QAndroidSGVideoNodeMaterial *m = static_cast<const QAndroidSGVideoNodeMaterial *>(other);
|
||||
return m_textureId - m->m_textureId;
|
||||
}
|
||||
|
||||
void setVideoFrame(const QVideoFrame &frame) {
|
||||
QMutexLocker lock(&m_frameMutex);
|
||||
m_frame = frame;
|
||||
}
|
||||
|
||||
bool updateTexture()
|
||||
{
|
||||
QMutexLocker lock(&m_frameMutex);
|
||||
bool texMatrixDirty = false;
|
||||
|
||||
if (m_frame.isValid()) {
|
||||
QVariantList list = m_frame.handle().toList();
|
||||
|
||||
GLuint texId = list.at(0).toUInt();
|
||||
QMatrix4x4 mat = qvariant_cast<QMatrix4x4>(list.at(1));
|
||||
|
||||
texMatrixDirty = texId != m_textureId || mat != m_texMatrix;
|
||||
|
||||
m_textureId = texId;
|
||||
m_texMatrix = mat;
|
||||
|
||||
// the texture is already bound and initialized at this point,
|
||||
// no need to call glTexParams
|
||||
|
||||
} else {
|
||||
m_textureId = 0;
|
||||
}
|
||||
|
||||
return texMatrixDirty;
|
||||
}
|
||||
|
||||
QVideoFrame m_frame;
|
||||
QMutex m_frameMutex;
|
||||
GLuint m_textureId;
|
||||
QMatrix4x4 m_texMatrix;
|
||||
};
|
||||
|
||||
void QAndroidSGVideoNodeMaterialShader::updateState(const RenderState &state,
|
||||
QSGMaterial *newMaterial,
|
||||
QSGMaterial *oldMaterial)
|
||||
{
|
||||
Q_UNUSED(oldMaterial);
|
||||
QAndroidSGVideoNodeMaterial *mat = static_cast<QAndroidSGVideoNodeMaterial *>(newMaterial);
|
||||
program()->setUniformValue(m_id_texture, 0);
|
||||
|
||||
if (mat->updateTexture())
|
||||
program()->setUniformValue(m_id_texMatrix, mat->m_texMatrix);
|
||||
|
||||
if (state.isOpacityDirty())
|
||||
program()->setUniformValue(m_id_opacity, state.opacity());
|
||||
|
||||
if (state.isMatrixDirty())
|
||||
program()->setUniformValue(m_id_matrix, state.combinedMatrix());
|
||||
}
|
||||
|
||||
QAndroidSGVideoNode::QAndroidSGVideoNode(const QVideoSurfaceFormat &format)
|
||||
: m_format(format)
|
||||
{
|
||||
setFlag(QSGNode::OwnsMaterial);
|
||||
m_material = new QAndroidSGVideoNodeMaterial;
|
||||
setMaterial(m_material);
|
||||
}
|
||||
|
||||
void QAndroidSGVideoNode::setCurrentFrame(const QVideoFrame &frame)
|
||||
{
|
||||
m_material->setVideoFrame(frame);
|
||||
markDirty(DirtyMaterial);
|
||||
}
|
||||
|
||||
QVideoFrame::PixelFormat QAndroidSGVideoNode::pixelFormat() const
|
||||
{
|
||||
return m_format.pixelFormat();
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
67
src/plugins/android/videonode/qandroidsgvideonode.h
Normal file
67
src/plugins/android/videonode/qandroidsgvideonode.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and Digia. For licensing terms and
|
||||
** conditions see http://qt.digia.com/licensing. For further information
|
||||
** use the contact form at http://qt.digia.com/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** In addition, as a special exception, Digia gives you certain additional
|
||||
** rights. These rights are described in the Digia Qt LGPL Exception
|
||||
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.GPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met: http://www.gnu.org/copyleft/gpl.html.
|
||||
**
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef QANDROIDSGVIDEONODE_H
|
||||
#define QANDROIDSGVIDEONODE_H
|
||||
|
||||
#include <private/qsgvideonode_p.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QAndroidSGVideoNodeMaterial;
|
||||
|
||||
class QAndroidSGVideoNode : public QSGVideoNode
|
||||
{
|
||||
public:
|
||||
QAndroidSGVideoNode(const QVideoSurfaceFormat &format);
|
||||
|
||||
void setCurrentFrame(const QVideoFrame &frame);
|
||||
QVideoFrame::PixelFormat pixelFormat() const;
|
||||
|
||||
private:
|
||||
QVideoSurfaceFormat m_format;
|
||||
QAndroidSGVideoNodeMaterial *m_material;
|
||||
QVideoFrame m_frame;
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QANDROIDSGVIDEONODE_H
|
||||
69
src/plugins/android/videonode/qandroidsgvideonodeplugin.cpp
Normal file
69
src/plugins/android/videonode/qandroidsgvideonodeplugin.cpp
Normal file
@@ -0,0 +1,69 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and Digia. For licensing terms and
|
||||
** conditions see http://qt.digia.com/licensing. For further information
|
||||
** use the contact form at http://qt.digia.com/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** In addition, as a special exception, Digia gives you certain additional
|
||||
** rights. These rights are described in the Digia Qt LGPL Exception
|
||||
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.GPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met: http://www.gnu.org/copyleft/gpl.html.
|
||||
**
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qandroidsgvideonodeplugin.h"
|
||||
#include "qandroidsgvideonode.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#define ExternalGLTextureHandle (QAbstractVideoBuffer::UserHandle + 1)
|
||||
|
||||
QList<QVideoFrame::PixelFormat> QAndroidSGVideoNodeFactoryPlugin::supportedPixelFormats(
|
||||
QAbstractVideoBuffer::HandleType handleType) const
|
||||
{
|
||||
QList<QVideoFrame::PixelFormat> pixelFormats;
|
||||
|
||||
if (handleType == ExternalGLTextureHandle)
|
||||
pixelFormats.append(QVideoFrame::Format_BGR32);
|
||||
|
||||
return pixelFormats;
|
||||
}
|
||||
|
||||
QSGVideoNode *QAndroidSGVideoNodeFactoryPlugin::createNode(const QVideoSurfaceFormat &format)
|
||||
{
|
||||
if (supportedPixelFormats(format.handleType()).contains(format.pixelFormat()))
|
||||
return new QAndroidSGVideoNode(format);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
QT_END_NAMESPACE
|
||||
62
src/plugins/android/videonode/qandroidsgvideonodeplugin.h
Normal file
62
src/plugins/android/videonode/qandroidsgvideonodeplugin.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and Digia. For licensing terms and
|
||||
** conditions see http://qt.digia.com/licensing. For further information
|
||||
** use the contact form at http://qt.digia.com/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** In addition, as a special exception, Digia gives you certain additional
|
||||
** rights. These rights are described in the Digia Qt LGPL Exception
|
||||
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.GPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met: http://www.gnu.org/copyleft/gpl.html.
|
||||
**
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef QANDROIDSGVIDEONODEPLUGIN_H
|
||||
#define QANDROIDSGVIDEONODEPLUGIN_H
|
||||
|
||||
#include <private/qsgvideonode_p.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QAndroidSGVideoNodeFactoryPlugin : public QSGVideoNodeFactoryPlugin
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PLUGIN_METADATA(IID QSGVideoNodeFactoryInterface_iid
|
||||
FILE "android_videonode.json")
|
||||
|
||||
public:
|
||||
QList<QVideoFrame::PixelFormat> supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType) const;
|
||||
QSGVideoNode *createNode(const QVideoSurfaceFormat &format);
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QANDROIDSGVIDEONODEPLUGIN_H
|
||||
16
src/plugins/android/videonode/videonode.pro
Normal file
16
src/plugins/android/videonode/videonode.pro
Normal file
@@ -0,0 +1,16 @@
|
||||
TARGET = qtsgvideonode_android
|
||||
QT += quick multimedia-private qtmultimediaquicktools-private
|
||||
|
||||
PLUGIN_TYPE = video/videonode
|
||||
PLUGIN_CLASS_NAME = QAndroidSGVideoNodeFactoryPlugin
|
||||
load(qt_plugin)
|
||||
|
||||
HEADERS += \
|
||||
qandroidsgvideonodeplugin.h \
|
||||
qandroidsgvideonode.h
|
||||
|
||||
SOURCES += \
|
||||
qandroidsgvideonodeplugin.cpp \
|
||||
qandroidsgvideonode.cpp
|
||||
|
||||
OTHER_FILES += android_videonode.json
|
||||
Reference in New Issue
Block a user