mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01: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 \
|
gstbytewriter.c \
|
||||||
gstcollectpads.c \
|
gstcollectpads.c \
|
||||||
gstpushsrc.c \
|
gstpushsrc.c \
|
||||||
gsttypefindhelper.c \
|
gsttypefindhelper.c
|
||||||
gstqueuearray.c
|
|
||||||
|
|
||||||
libgstbase_@GST_API_VERSION@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
libgstbase_@GST_API_VERSION@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
libgstbase_@GST_API_VERSION@_la_LIBADD = $(GST_OBJ_LIBS)
|
libgstbase_@GST_API_VERSION@_la_LIBADD = $(GST_OBJ_LIBS)
|
||||||
|
@ -34,8 +33,7 @@ libgstbase_@GST_API_VERSION@include_HEADERS = \
|
||||||
gstbytewriter.h \
|
gstbytewriter.h \
|
||||||
gstcollectpads.h \
|
gstcollectpads.h \
|
||||||
gstpushsrc.h \
|
gstpushsrc.h \
|
||||||
gsttypefindhelper.h \
|
gsttypefindhelper.h
|
||||||
gstqueuearray.h
|
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstbytereader-docs.h \
|
gstbytereader-docs.h \
|
||||||
|
|
|
@ -17,6 +17,7 @@ libgstcoreelements_la_SOURCES = \
|
||||||
gstoutputselector.c \
|
gstoutputselector.c \
|
||||||
gstdataqueue.c \
|
gstdataqueue.c \
|
||||||
gstmultiqueue.c \
|
gstmultiqueue.c \
|
||||||
|
gstqueuearray.c \
|
||||||
gstqueue.c \
|
gstqueue.c \
|
||||||
gstqueue2.c \
|
gstqueue2.c \
|
||||||
gsttee.c \
|
gsttee.c \
|
||||||
|
@ -44,6 +45,7 @@ noinst_HEADERS = \
|
||||||
gstoutputselector.h \
|
gstoutputselector.h \
|
||||||
gstdataqueue.h \
|
gstdataqueue.h \
|
||||||
gstmultiqueue.h \
|
gstmultiqueue.h \
|
||||||
|
gstqueuearray.h \
|
||||||
gstqueue.h \
|
gstqueue.h \
|
||||||
gstqueue2.h \
|
gstqueue2.h \
|
||||||
gsttee.h \
|
gsttee.h \
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#define __GST_DATA_QUEUE_H__
|
#define __GST_DATA_QUEUE_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/base/gstqueuearray.h>
|
#include "gstqueuearray.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
#define GST_TYPE_DATA_QUEUE \
|
#define GST_TYPE_DATA_QUEUE \
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#define __GST_QUEUE_H__
|
#define __GST_QUEUE_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/base/gstqueuearray.h>
|
#include "gstqueuearray.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/check/gstcheck.h>
|
#include <gst/check/gstcheck.h>
|
||||||
#include <gst/base/gstqueuearray.h>
|
#include "../../../plugins/elements/gstqueuearray.h"
|
||||||
|
#include "../../../plugins/elements/gstqueuearray.c"
|
||||||
|
|
||||||
/* Simplest test
|
/* Simplest test
|
||||||
* Initial size : 10
|
* Initial size : 10
|
||||||
|
|
|
@ -237,13 +237,6 @@ EXPORTS
|
||||||
gst_collect_pads_stop
|
gst_collect_pads_stop
|
||||||
gst_collect_pads_take_buffer
|
gst_collect_pads_take_buffer
|
||||||
gst_push_src_get_type
|
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
|
||||||
gst_type_find_helper_for_buffer
|
gst_type_find_helper_for_buffer
|
||||||
gst_type_find_helper_for_data
|
gst_type_find_helper_for_data
|
||||||
|
|
Loading…
Reference in a new issue