mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
libs: dmabuf: init the GST_CAT_DEFAULT in type define.
To avoid `gst_debug_log_valist: assertion 'category != NULL' failed` if we do not call gst_dmabuf_allocator_new
This commit is contained in:
parent
9a55945c0b
commit
07f459caa4
1 changed files with 6 additions and 3 deletions
|
@ -42,7 +42,12 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (dmabuf_debug);
|
||||
#define GST_CAT_DEFAULT dmabuf_debug
|
||||
|
||||
G_DEFINE_TYPE (GstDmaBufAllocator, gst_dmabuf_allocator, GST_TYPE_FD_ALLOCATOR);
|
||||
#define _do_init \
|
||||
GST_DEBUG_CATEGORY_INIT (dmabuf_debug, \
|
||||
"dmabuf", 0, "dmabuf memory");
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GstDmaBufAllocator, gst_dmabuf_allocator,
|
||||
GST_TYPE_FD_ALLOCATOR, _do_init);
|
||||
|
||||
static gpointer
|
||||
gst_dmabuf_mem_map (GstMemory * gmem, GstMapInfo * info, gsize maxsize)
|
||||
|
@ -127,8 +132,6 @@ gst_dmabuf_allocator_new (void)
|
|||
{
|
||||
GstAllocator *alloc;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (dmabuf_debug, "dmabuf", 0, "dmabuf memory");
|
||||
|
||||
alloc = g_object_new (GST_TYPE_DMABUF_ALLOCATOR, NULL);
|
||||
gst_object_ref_sink (alloc);
|
||||
|
||||
|
|
Loading…
Reference in a new issue