mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-10 08:22:32 +00:00
move queue from core to the elements plugin ç
Original commit message from CVS: * gst/gst.c: * plugins/elements/Makefile.am: * plugins/elements/gstelements.c: * plugins/elements/gstqueue.c: move queue from core to the elements plugin ç
This commit is contained in:
parent
41f6c2b0fe
commit
2011345b96
5 changed files with 18 additions and 10 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2005-11-29 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
|
||||||
|
|
||||||
|
* gst/gst.c:
|
||||||
|
* plugins/elements/Makefile.am:
|
||||||
|
* plugins/elements/gstelements.c:
|
||||||
|
* plugins/elements/gstqueue.c:
|
||||||
|
move queue from core to the elements plugin
|
||||||
|
|
||||||
2005-11-29 Andy Wingo <wingo@pobox.com>
|
2005-11-29 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* libs/gst/base/gstbasetransform.h:
|
* libs/gst/base/gstbasetransform.h:
|
||||||
|
|
|
@ -109,7 +109,6 @@
|
||||||
#include <locale.h> /* for LC_ALL */
|
#include <locale.h> /* for LC_ALL */
|
||||||
|
|
||||||
#include "gst.h"
|
#include "gst.h"
|
||||||
#include "gstqueue.h"
|
|
||||||
|
|
||||||
#define GST_CAT_DEFAULT GST_CAT_GST_INIT
|
#define GST_CAT_DEFAULT GST_CAT_GST_INIT
|
||||||
|
|
||||||
|
@ -505,8 +504,7 @@ gst_register_core_elements (GstPlugin * plugin)
|
||||||
if (!gst_element_register (plugin, "bin", GST_RANK_PRIMARY,
|
if (!gst_element_register (plugin, "bin", GST_RANK_PRIMARY,
|
||||||
GST_TYPE_BIN) ||
|
GST_TYPE_BIN) ||
|
||||||
!gst_element_register (plugin, "pipeline", GST_RANK_PRIMARY,
|
!gst_element_register (plugin, "pipeline", GST_RANK_PRIMARY,
|
||||||
GST_TYPE_PIPELINE) ||
|
GST_TYPE_PIPELINE)
|
||||||
!gst_element_register (plugin, "queue", GST_RANK_NONE, GST_TYPE_QUEUE)
|
|
||||||
)
|
)
|
||||||
g_assert_not_reached ();
|
g_assert_not_reached ();
|
||||||
|
|
||||||
|
|
|
@ -16,13 +16,14 @@ libgstelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINO
|
||||||
libgstelements_la_SOURCES = \
|
libgstelements_la_SOURCES = \
|
||||||
gstbufferstore.c \
|
gstbufferstore.c \
|
||||||
gstcapsfilter.c \
|
gstcapsfilter.c \
|
||||||
|
gstelements.c \
|
||||||
gstfakesrc.c \
|
gstfakesrc.c \
|
||||||
gstfakesink.c \
|
gstfakesink.c \
|
||||||
$(GSTFDSRC) \
|
$(GSTFDSRC) \
|
||||||
gstfilesink.c \
|
gstfilesink.c \
|
||||||
gstfilesrc.c \
|
gstfilesrc.c \
|
||||||
gstidentity.c \
|
gstidentity.c \
|
||||||
gstelements.c \
|
gstqueue.c \
|
||||||
gsttee.c \
|
gsttee.c \
|
||||||
gsttypefindelement.c
|
gsttypefindelement.c
|
||||||
|
|
||||||
|
@ -40,6 +41,7 @@ noinst_HEADERS = \
|
||||||
gstfilesink.h \
|
gstfilesink.h \
|
||||||
gstfilesrc.h \
|
gstfilesrc.h \
|
||||||
gstidentity.h \
|
gstidentity.h \
|
||||||
|
gstqueue.h \
|
||||||
gsttee.h \
|
gsttee.h \
|
||||||
gsttypefindelement.h
|
gsttypefindelement.h
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
#include "gstfilesink.h"
|
#include "gstfilesink.h"
|
||||||
#include "gstfilesrc.h"
|
#include "gstfilesrc.h"
|
||||||
#include "gstidentity.h"
|
#include "gstidentity.h"
|
||||||
|
#include "gstqueue.h"
|
||||||
#include "gsttee.h"
|
#include "gsttee.h"
|
||||||
#include "gsttypefindelement.h"
|
#include "gsttypefindelement.h"
|
||||||
|
|
||||||
|
@ -56,6 +57,7 @@ static struct _elements_entry _elements[] = {
|
||||||
#endif
|
#endif
|
||||||
{"filesrc", GST_RANK_NONE, gst_file_src_get_type},
|
{"filesrc", GST_RANK_NONE, gst_file_src_get_type},
|
||||||
{"identity", GST_RANK_NONE, gst_identity_get_type},
|
{"identity", GST_RANK_NONE, gst_identity_get_type},
|
||||||
|
{"queue", GST_RANK_NONE, gst_queue_get_type},
|
||||||
{"filesink", GST_RANK_NONE, gst_file_sink_get_type},
|
{"filesink", GST_RANK_NONE, gst_file_sink_get_type},
|
||||||
{"tee", GST_RANK_NONE, gst_tee_get_type},
|
{"tee", GST_RANK_NONE, gst_tee_get_type},
|
||||||
{"typefind", GST_RANK_NONE, gst_type_find_element_get_type},
|
{"typefind", GST_RANK_NONE, gst_type_find_element_get_type},
|
||||||
|
|
|
@ -37,14 +37,12 @@
|
||||||
* The queue blocks by default.
|
* The queue blocks by default.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst/gst_private.h"
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
#include "gstqueue.h"
|
#include "gstqueue.h"
|
||||||
#include "gstevent.h"
|
|
||||||
#include "gstinfo.h"
|
#include "../../gst/gst-i18n-lib.h"
|
||||||
#include "gsterror.h"
|
|
||||||
#include "gstutils.h"
|
|
||||||
#include "gst-i18n-lib.h"
|
|
||||||
|
|
||||||
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
|
|
Loading…
Reference in a new issue