mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/rtsp/: Remove google extension again, it's not needed anymore because we never send multiple transports anymore.
Original commit message from CVS: * gst/rtsp/Makefile.am: * gst/rtsp/gstrtsp.c: (plugin_init): * gst/rtsp/gstrtspgoogle.c: * gst/rtsp/gstrtspgoogle.h: Remove google extension again, it's not needed anymore because we never send multiple transports anymore.
This commit is contained in:
parent
be3906c918
commit
c975495838
3 changed files with 11 additions and 8 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/rtsp/Makefile.am:
|
||||||
|
* gst/rtsp/gstrtsp.c: (plugin_init):
|
||||||
|
* gst/rtsp/gstrtspgoogle.c:
|
||||||
|
* gst/rtsp/gstrtspgoogle.h:
|
||||||
|
Remove google extension again, it's not needed anymore because we never
|
||||||
|
send multiple transports anymore.
|
||||||
|
|
||||||
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
|
Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
plugin_LTLIBRARIES = libgstrtsp.la
|
plugin_LTLIBRARIES = libgstrtsp.la
|
||||||
|
|
||||||
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
||||||
gstrtpdec.c gstrtspext.c gstrtspgoogle.c
|
gstrtpdec.c gstrtspext.c
|
||||||
|
|
||||||
libgstrtsp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstrtsp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstrtsp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
libgstrtsp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
||||||
|
@ -14,5 +14,4 @@ libgstrtsp_la_LIBTOOLFLAGS = --tag=disable-static
|
||||||
noinst_HEADERS = gstrtspsrc.h \
|
noinst_HEADERS = gstrtspsrc.h \
|
||||||
gstrtsp.h \
|
gstrtsp.h \
|
||||||
gstrtpdec.h \
|
gstrtpdec.h \
|
||||||
gstrtspext.h \
|
gstrtspext.h
|
||||||
gstrtspgoogle.h
|
|
||||||
|
|
|
@ -47,7 +47,6 @@
|
||||||
|
|
||||||
#include "gstrtpdec.h"
|
#include "gstrtpdec.h"
|
||||||
#include "gstrtspsrc.h"
|
#include "gstrtspsrc.h"
|
||||||
#include "gstrtspgoogle.h"
|
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
|
@ -58,10 +57,6 @@ plugin_init (GstPlugin * plugin)
|
||||||
if (!gst_element_register (plugin, "rtpdec", GST_RANK_NONE, GST_TYPE_RTP_DEC))
|
if (!gst_element_register (plugin, "rtpdec", GST_RANK_NONE, GST_TYPE_RTP_DEC))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (!gst_element_register (plugin, "rtspgoogle", GST_RANK_SECONDARY,
|
|
||||||
GST_TYPE_RTSP_GOOGLE)) {
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue