update to take new gstdisksink element into account

Original commit message from CVS:
update to take new gstdisksink element into account
This commit is contained in:
Thomas Vander Stichele 2001-04-20 12:04:40 +00:00
parent c44f196b15
commit 0b7ec5c86f
4 changed files with 8 additions and 0 deletions

View file

@ -15,6 +15,7 @@ libgstelements_la_SOURCES = \
gstidentity.c \
gstfakesink.c \
gstdisksrc.c \
gstdisksink.c \
gstfdsrc.c \
gstfdsink.c \
gstmultidisksrc.c \
@ -28,6 +29,7 @@ noinst_HEADERS = \
gstidentity.h \
gstfakesink.h \
gstdisksrc.h \
gstdisksink.h \
gstfdsrc.h \
gstmultidisksrc.h \
gsthttpsrc.h \

View file

@ -24,6 +24,7 @@
#include <gst/gst.h>
#include "gstdisksrc.h"
#include "gstdisksink.h"
#include "gstidentity.h"
#include "gstfakesink.h"
#include "gstfakesrc.h"
@ -50,6 +51,7 @@ static struct _elements_entry _elements[] = {
{ "fakesrc", gst_fakesrc_get_type, &gst_fakesrc_details, NULL },
{ "fakesink", gst_fakesink_get_type, &gst_fakesink_details, NULL },
{ "disksrc", gst_disksrc_get_type, &gst_disksrc_details, NULL },
{ "disksink", gst_disksink_get_type, &gst_disksink_details, NULL },
{ "identity", gst_identity_get_type, &gst_identity_details, NULL },
{ "fdsink", gst_fdsink_get_type, &gst_fdsink_details, NULL },
{ "fdsrc", gst_fdsrc_get_type, &gst_fdsrc_details, NULL },

View file

@ -15,6 +15,7 @@ libgstelements_la_SOURCES = \
gstidentity.c \
gstfakesink.c \
gstdisksrc.c \
gstdisksink.c \
gstfdsrc.c \
gstfdsink.c \
gstmultidisksrc.c \
@ -28,6 +29,7 @@ noinst_HEADERS = \
gstidentity.h \
gstfakesink.h \
gstdisksrc.h \
gstdisksink.h \
gstfdsrc.h \
gstmultidisksrc.h \
gsthttpsrc.h \

View file

@ -24,6 +24,7 @@
#include <gst/gst.h>
#include "gstdisksrc.h"
#include "gstdisksink.h"
#include "gstidentity.h"
#include "gstfakesink.h"
#include "gstfakesrc.h"
@ -50,6 +51,7 @@ static struct _elements_entry _elements[] = {
{ "fakesrc", gst_fakesrc_get_type, &gst_fakesrc_details, NULL },
{ "fakesink", gst_fakesink_get_type, &gst_fakesink_details, NULL },
{ "disksrc", gst_disksrc_get_type, &gst_disksrc_details, NULL },
{ "disksink", gst_disksink_get_type, &gst_disksink_details, NULL },
{ "identity", gst_identity_get_type, &gst_identity_details, NULL },
{ "fdsink", gst_fdsink_get_type, &gst_fdsink_details, NULL },
{ "fdsrc", gst_fdsrc_get_type, &gst_fdsrc_details, NULL },