Skip to content
Snippets Groups Projects
VideoSurface.cc 1.84 KiB
Newer Older
  • Learn to ignore specific revisions
  • /****************************************************************************
     *
     *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
     *
     * QGroundControl is licensed according to the terms in the file
     * COPYING.md in the root of the source code directory.
     *
     ****************************************************************************/
    
    Gus Grubba's avatar
    Gus Grubba committed
    
    
    /**
     * @file
     *   @brief QGC Video Surface
     *   @author Gus Grubba <mavlink@grubba.com>
     */
    
    
    #if defined(QGC_GST_STREAMING)
    
    Gus Grubba's avatar
    Gus Grubba committed
    #include "VideoSurface_p.h"
    
    #endif
    #include "VideoSurface.h"
    
    Gus Grubba's avatar
    Gus Grubba committed
    
    #include <QtCore/QDebug>
    #include <QtQuick/QQuickItem>
    
    VideoSurface::VideoSurface(QObject *parent)
        : QObject(parent)
    
    #if defined(QGC_GST_STREAMING)
    
    Gus Grubba's avatar
    Gus Grubba committed
        , _data(new VideoSurfacePrivate)
    
    dogmaphobic's avatar
    dogmaphobic committed
        , _lastFrame(0)
    
        , _refed(false)
    
    Gus Grubba's avatar
    Gus Grubba committed
    {
    }
    
    VideoSurface::~VideoSurface()
    {
    
    #if defined(QGC_GST_STREAMING)
    
        if (!_refed && _data->videoSink != NULL) {
    
    Gus Grubba's avatar
    Gus Grubba committed
            gst_element_set_state(_data->videoSink, GST_STATE_NULL);
        }
        delete _data;
    
    Gus Grubba's avatar
    Gus Grubba committed
    }
    
    
    #if defined(QGC_GST_STREAMING)
    
    GstElement* VideoSurface::videoSink()
    
    Gus Grubba's avatar
    Gus Grubba committed
    {
        if (_data->videoSink == NULL) {
            if ((_data->videoSink = gst_element_factory_make("qtquick2videosink", NULL)) == NULL) {
                qCritical("Failed to create qtquick2videosink. Make sure it is installed correctly");
                return NULL;
            }
    
            g_object_set(G_OBJECT(_data->videoSink), "sync", gboolean(false), NULL);
    
    Gus Grubba's avatar
    Gus Grubba committed
            g_signal_connect(_data->videoSink, "update", G_CALLBACK(onUpdateThunk), (void* )this);
    
    Gus Grubba's avatar
    Gus Grubba committed
        }
        return _data->videoSink;
    }
    
    void VideoSurface::onUpdate()
    {
    
    dogmaphobic's avatar
    dogmaphobic committed
        _lastFrame = time(0);
    
    Gus Grubba's avatar
    Gus Grubba committed
        Q_FOREACH(QQuickItem *item, _data->items) {
            item->update();
        }
    }
    
    void VideoSurface::onUpdateThunk(GstElement* sink, gpointer data)
    {
        Q_UNUSED(sink);
        VideoSurface* pThis = (VideoSurface* )data;
        pThis->onUpdate();
    }
    
    Gus Grubba's avatar
    Gus Grubba committed