summaryrefslogtreecommitdiffstats
path: root/src/imports/nativemedia/omxnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/nativemedia/omxnode.h')
-rw-r--r--src/imports/nativemedia/omxnode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imports/nativemedia/omxnode.h b/src/imports/nativemedia/omxnode.h
index 976830c..22bbb4a 100644
--- a/src/imports/nativemedia/omxnode.h
+++ b/src/imports/nativemedia/omxnode.h
@@ -23,7 +23,6 @@ public:
~OmxNode();
void preprocess();
- void updateTexture();
void setRect(const QRectF &rect);
inline void setRect(qreal x, qreal y, qreal w, qreal h) { setRect(QRectF(x, y, w, h)); }
@@ -91,10 +90,12 @@ signals:
protected:
QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *);
+ void itemChange(ItemChange change, const ItemChangeData &);
private slots:
void triggerRender();
void videoSize(int w, int h);
+ void beforeRendering();
private:
OmxPlayer *m_player;