2015-07-06 13:10:51 +00:00
|
|
|
/*
|
|
|
|
* 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 __GST_QSG_TEXTURE_H__
|
|
|
|
#define __GST_QSG_TEXTURE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/video.h>
|
2015-08-08 15:28:03 +00:00
|
|
|
#include <gst/gl/gl.h>
|
2015-07-06 13:10:51 +00:00
|
|
|
|
2015-09-02 13:45:07 +00:00
|
|
|
#include "gstqtgl.h"
|
2015-09-14 17:14:37 +00:00
|
|
|
#include <QtQuick/QSGTexture>
|
|
|
|
#include <QtGui/QOpenGLFunctions>
|
2015-09-02 13:45:07 +00:00
|
|
|
|
2015-07-06 13:10:51 +00:00
|
|
|
class GstQSGTexture : public QSGTexture, protected QOpenGLFunctions
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
GstQSGTexture ();
|
|
|
|
~GstQSGTexture ();
|
|
|
|
|
|
|
|
void setCaps (GstCaps * caps);
|
2015-08-08 15:28:03 +00:00
|
|
|
gboolean setBuffer (GstBuffer * buffer);
|
2020-11-03 13:58:30 +00:00
|
|
|
GstBuffer * getBuffer (gboolean * was_bound);
|
2015-07-06 13:10:51 +00:00
|
|
|
|
|
|
|
/* QSGTexture */
|
|
|
|
void bind ();
|
|
|
|
int textureId () const;
|
|
|
|
QSize textureSize () const;
|
|
|
|
bool hasAlphaChannel () const;
|
|
|
|
bool hasMipmaps () const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
GstBuffer * buffer_;
|
2020-11-03 13:58:30 +00:00
|
|
|
gboolean buffer_was_bound;
|
2015-08-08 15:28:03 +00:00
|
|
|
GstBuffer * sync_buffer_;
|
2021-07-30 09:52:23 +00:00
|
|
|
GWeakRef qt_context_ref_;
|
2015-08-08 15:28:03 +00:00
|
|
|
GstMemory * mem_;
|
2017-05-21 13:26:12 +00:00
|
|
|
GLuint dummy_tex_id_;
|
2015-07-06 13:10:51 +00:00
|
|
|
GstVideoInfo v_info;
|
|
|
|
GstVideoFrame v_frame;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GST_QSG_TEXTURE_H__ */
|