summaryrefslogtreecommitdiffstats
path: root/src/plugins/android/videonode/videonode.pro
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@digia.com>2013-09-27 11:24:10 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-01 17:26:21 +0200
commitbe7a6241e77f67e4a19c63ac5683dd7fa566e9d2 (patch)
treeab8b66b5124d4a982d7690cf7893a40650bccc8d /src/plugins/android/videonode/videonode.pro
parent329d9d4563445d785284a02983e237ff1a07f5dd (diff)
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>
Diffstat (limited to 'src/plugins/android/videonode/videonode.pro')
-rw-r--r--src/plugins/android/videonode/videonode.pro16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/plugins/android/videonode/videonode.pro b/src/plugins/android/videonode/videonode.pro
new file mode 100644
index 000000000..4ae2dc36e
--- /dev/null
+++ b/src/plugins/android/videonode/videonode.pro
@@ -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