mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
glbasememory: Fix error quark string and move documentation to the right place
This commit is contained in:
parent
6be312a759
commit
fdacdf502b
2 changed files with 7 additions and 7 deletions
|
@ -55,7 +55,7 @@ GST_DEFINE_MINI_OBJECT_TYPE (GstGLBaseMemory, gst_gl_base_memory);
|
|||
GQuark
|
||||
gst_gl_base_memory_error_quark (void)
|
||||
{
|
||||
return g_quark_from_static_string ("gst-gl-base-buffer-error-quark");
|
||||
return g_quark_from_static_string ("gst-gl-base-memory-error-quark");
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
|
@ -29,12 +29,6 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* GST_GL_BASE_MEMORY_ERROR:
|
||||
*
|
||||
* Error domain for GStreamer's GL memory module. Errors in this domain will be
|
||||
* from the #GstGLBaseMemoryError enumeration
|
||||
*/
|
||||
#define GST_TYPE_GL_BASE_MEMORY (gst_gl_base_memory_get_type())
|
||||
GST_GL_API
|
||||
GType gst_gl_base_memory_get_type(void);
|
||||
|
@ -54,6 +48,12 @@ GType gst_gl_base_memory_allocator_get_type(void);
|
|||
|
||||
GST_GL_API
|
||||
GQuark gst_gl_base_memory_error_quark (void);
|
||||
/**
|
||||
* GST_GL_BASE_MEMORY_ERROR:
|
||||
*
|
||||
* Error domain for GStreamer's GL memory module. Errors in this domain will be
|
||||
* from the #GstGLBaseMemoryError enumeration
|
||||
*/
|
||||
#define GST_GL_BASE_MEMORY_ERROR (gst_gl_base_memory_error_quark ())
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue