mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
base: make GstQueueArray private to coreelements for now
Keep it private until we have a reason to make it public.
This commit is contained in:
parent
48d0d28755
commit
94f6ba9c0b
8 changed files with 8 additions and 14 deletions
|
@ -13,8 +13,7 @@ libgstbase_@GST_API_VERSION@_la_SOURCES = \
|
|||
gstbytewriter.c \
|
||||
gstcollectpads.c \
|
||||
gstpushsrc.c \
|
||||
gsttypefindhelper.c \
|
||||
gstqueuearray.c
|
||||
gsttypefindhelper.c
|
||||
|
||||
libgstbase_@GST_API_VERSION@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstbase_@GST_API_VERSION@_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
|
@ -34,8 +33,7 @@ libgstbase_@GST_API_VERSION@include_HEADERS = \
|
|||
gstbytewriter.h \
|
||||
gstcollectpads.h \
|
||||
gstpushsrc.h \
|
||||
gsttypefindhelper.h \
|
||||
gstqueuearray.h
|
||||
gsttypefindhelper.h
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstbytereader-docs.h \
|
||||
|
|
|
@ -17,6 +17,7 @@ libgstcoreelements_la_SOURCES = \
|
|||
gstoutputselector.c \
|
||||
gstdataqueue.c \
|
||||
gstmultiqueue.c \
|
||||
gstqueuearray.c \
|
||||
gstqueue.c \
|
||||
gstqueue2.c \
|
||||
gsttee.c \
|
||||
|
@ -44,6 +45,7 @@ noinst_HEADERS = \
|
|||
gstoutputselector.h \
|
||||
gstdataqueue.h \
|
||||
gstmultiqueue.h \
|
||||
gstqueuearray.h \
|
||||
gstqueue.h \
|
||||
gstqueue2.h \
|
||||
gsttee.h \
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#define __GST_DATA_QUEUE_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstqueuearray.h>
|
||||
#include "gstqueuearray.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
#define GST_TYPE_DATA_QUEUE \
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#define __GST_QUEUE_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstqueuearray.h>
|
||||
#include "gstqueuearray.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/check/gstcheck.h>
|
||||
#include <gst/base/gstqueuearray.h>
|
||||
#include "../../../plugins/elements/gstqueuearray.h"
|
||||
#include "../../../plugins/elements/gstqueuearray.c"
|
||||
|
||||
/* Simplest test
|
||||
* Initial size : 10
|
||||
|
|
|
@ -237,13 +237,6 @@ EXPORTS
|
|||
gst_collect_pads_stop
|
||||
gst_collect_pads_take_buffer
|
||||
gst_push_src_get_type
|
||||
gst_queue_array_drop_element
|
||||
gst_queue_array_find
|
||||
gst_queue_array_free
|
||||
gst_queue_array_is_empty
|
||||
gst_queue_array_new
|
||||
gst_queue_array_pop_head
|
||||
gst_queue_array_push_tail
|
||||
gst_type_find_helper
|
||||
gst_type_find_helper_for_buffer
|
||||
gst_type_find_helper_for_data
|
||||
|
|
Loading…
Reference in a new issue