summaryrefslogtreecommitdiff
path: root/ext/qt/qtitem.h
blob: afd2869d820e3364b28ce2b80cab1dda123686f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * GStreamer
 * Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef __QT_ITEM_H__
#define __QT_ITEM_H__

#include <gst/gst.h>
#include <gst/gl/gl.h>
#include <QQuickItem>
#include <QOpenGLContext>
#include <QOpenGLFunctions>

typedef struct _QtGLVideoItemPrivate QtGLVideoItemPrivate;

class QtGLVideoItem : public QQuickItem, protected QOpenGLFunctions
{
    Q_OBJECT
public:
    QtGLVideoItem();
    ~QtGLVideoItem();

    void setDAR(gint, gint);
    void getDAR(gint *, gint *);
    void setForceAspectRatio(bool);
    bool getForceAspectRatio();

    /* private for C interface ... */
    QtGLVideoItemPrivate *priv;

private Q_SLOTS:
    void handleWindowChanged(QQuickWindow * win);
    void onSceneGraphInitialized();
    void onSceneGraphInvalidated();

protected:
    QSGNode * updatePaintNode (QSGNode * oldNode, UpdatePaintNodeData * updatePaintNodeData);

private:
    void setViewportSize(const QSize &size);
    void shareContext();

    QSize m_viewportSize;
};

extern "C"
{
void            qt_item_set_buffer (QtGLVideoItem * widget, GstBuffer * buffer);
gboolean        qt_item_set_caps (QtGLVideoItem * widget, GstCaps * caps);
gboolean        qt_item_init_winsys (QtGLVideoItem * widget);
GstGLContext *  qt_item_get_qt_context (QtGLVideoItem * qt_item);
GstGLContext *  qt_item_get_context (QtGLVideoItem * qt_item);
GstGLDisplay *  qt_item_get_display (QtGLVideoItem * qt_item);
}

#endif /* __QT_ITEM_H__ */