mirror of
git://nv-tegra.nvidia.com/tegra/gst-src/libgstnvvideosinks.git
synced 2025-12-22 09:22:49 +03:00
cf95aafffccb74b1cef48bfdbe954fb0410dbe77 - nvbufsurface.h 9a172f748a2b8f4d6d15648ea353989ccc7aeba6 - gst-plugins-nv-video-sinks/Makefile 9825d8a113dbf7dd16f791ff1ca66f2de3047b22 - gst-plugins-nv-video-sinks/LICENSE.libgstnvvideosinks 7ef56486c9e6b3e354473a2959d274517dd709da - gst-plugins-nv-video-sinks/gstnvvideosinks.c f96de71f9cbd5c40ed3eb5979f56f9267659c504 - gst-plugins-nv-video-sinks/nv3dsink/gstnv3dsink.c 9b7125a2d7ebe2ea647c43d2eb43e8d04cd16c47 - gst-plugins-nv-video-sinks/nv3dsink/gstnv3dsink.h 835dc89a20f2a95bea9c4033e40bf6787148ab08 - gst-plugins-nv-video-sinks/common/window.c b38008a552820bac7742888cd4bc2610bca722eb - gst-plugins-nv-video-sinks/common/display.c 96b0b4d38692a0aecf70944749684ac938ff192f - gst-plugins-nv-video-sinks/common/display.h 3b014cb69f5042fd9752fd4bf06a5873fe08b41c - gst-plugins-nv-video-sinks/common/renderer.c 6e77d54ffc5d1a49d5bad768cdf5cfadf458f1f7 - gst-plugins-nv-video-sinks/common/window.h de3e1e648709f765fbe78b5c365017f573ca1988 - gst-plugins-nv-video-sinks/common/context.c 72f9a4b823c4162c9f22cedb7c1cb1764d06fcb6 - gst-plugins-nv-video-sinks/common/renderer.h d48e1dae85e3c6a0ba7623be7ee306b8e1ef6695 - gst-plugins-nv-video-sinks/common/gstnvvideofwd.h 5e13200e9cba5f45d74cf6899dd3356d5f5d1c8e - gst-plugins-nv-video-sinks/common/context.h 707a36267f329bb22afdd19b947be5a99478ec7a - gst-plugins-nv-video-sinks/common/renderer/renderer_gl.c f528404a796de5a23dab281588feb72f42343e59 - gst-plugins-nv-video-sinks/common/renderer/renderer_gl.h 35b1e9d33b1f8bb8fc7065ab57696696128e042d - gst-plugins-nv-video-sinks/common/egl/context_egl.c 536a072a8ef84b3c91307777f88121fb88df2c4f - gst-plugins-nv-video-sinks/common/egl/context_egl.h b3f1b67cae0b4643f6a676b362ceaa61abc9c40f - gst-plugins-nv-video-sinks/common/x11/display_x11.c d692399c6d94dbc7814770b08baf9271ed97f8e0 - gst-plugins-nv-video-sinks/common/x11/display_x11.h c98945083e215dff26507c1e10b0ebf62a2c6fb7 - gst-plugins-nv-video-sinks/common/x11/window_x11.c 638b0da4ea65d02818289e89bc1d635ddbcdaec5 - gst-plugins-nv-video-sinks/common/x11/window_x11.h Change-Id: Iba8274ff09ce839ed4284ffbb267e0e10b4ab401
94 lines
3.1 KiB
C
94 lines
3.1 KiB
C
/*
|
|
* Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License, version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GST_NV_VIDEO_RENDERER_GL_H__
|
|
#define __GST_NV_VIDEO_RENDERER_GL_H__
|
|
|
|
#include "context.h"
|
|
|
|
#include <GLES2/gl2.h>
|
|
#include <GLES2/gl2ext.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_NV_VIDEO_RENDERER_GL \
|
|
(gst_nv_video_renderer_gl_get_type())
|
|
#define GST_NV_VIDEO_RENDERER_GL(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_NV_VIDEO_RENDERER_GL, GstNvVideoRendererGl))
|
|
#define GST_NV_VIDEO_RENDERER_GL_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_NV_VIDEO_RENDERER_GL, GstNvVideoRendererGlClass))
|
|
#define GST_IS_NV_VIDEO_RENDERER_GL(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_NV_VIDEO_RENDERER_GL))
|
|
#define GST_IS_NV_VIDEO_RENDERER_GL_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_NV_VIDEO_RENDERER_GL))
|
|
#define GST_NV_VIDEO_RENDERER_GL_CAST(obj) \
|
|
((GstNvVideoRendererGl*)(obj))
|
|
|
|
typedef struct _GstNvVideoRendererGl GstNvVideoRendererGl;
|
|
typedef struct _GstNvVideoRendererGlClass GstNvVideoRendererGlClass;
|
|
|
|
#define RENDERER_NUM_GL_TEXTURES 1
|
|
|
|
struct _GstNvVideoRendererGl
|
|
{
|
|
GstNvVideoRenderer parent;
|
|
|
|
GLuint vert_obj[3]; /* EGL frame, 2D frame, 2D frame border*/
|
|
GLuint frag_obj[3]; /* EGL frame, 2D frame, 2D frame border*/
|
|
GLuint prog_obj[3]; /* EGL frame, 2D frame, 2D frame border*/
|
|
|
|
GLint pos;
|
|
GLint tex_pos;
|
|
GLint tex_sampler;
|
|
GLsizei num_textures;
|
|
GLuint textures[RENDERER_NUM_GL_TEXTURES];
|
|
unsigned int vertex_buffer;
|
|
unsigned int index_buffer;
|
|
|
|
//Defining different attribs and uniforms for 2D textures
|
|
GLuint position_loc[2]; /* Frame and Border */
|
|
GLuint texpos_loc[1]; /* Frame */
|
|
GLuint tex_scale_loc[1][3]; /* [frame] RGB/Y, U/UV, V */
|
|
GLuint tex_loc[1][3]; /* [frame] RGB/Y, U/UV, V */
|
|
unsigned int vertex_buffer_2d;
|
|
unsigned int index_buffer_2d;
|
|
gint num_textures_2d;
|
|
GLuint textures_2d[3];
|
|
GLuint stride[3];
|
|
|
|
PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
|
|
};
|
|
|
|
struct _GstNvVideoRendererGlClass
|
|
{
|
|
GstNvVideoRendererClass parent_class;
|
|
};
|
|
|
|
G_GNUC_INTERNAL
|
|
GstNvVideoRendererGl * gst_nv_video_renderer_gl_new (GstNvVideoContext * context);
|
|
void
|
|
gst_nv_video_renderer_gl_process_shaders (GstNvVideoRenderer * renderer, gchar ** frag_prog, const gchar *texnames[], GstVideoFormat format);
|
|
|
|
gboolean
|
|
gst_nv_video_renderer_gl_cuda_init (GstNvVideoContext * context, GstNvVideoRenderer * renderer);
|
|
|
|
GType gst_nv_video_renderer_gl_get_type (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_NV_VIDEO_RENDERER_GL_H__ */
|