Move GDP plugin to -base from -bad. Closes #347783.

Original commit message from CVS:
* configure.ac:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
* docs/plugins/inspect/plugin-gdp.xml:
* gst/gdp/Makefile.am:
* tests/check/Makefile.am:
Move GDP plugin to -base from -bad.  Closes #347783.
This commit is contained in:
Thomas Vander Stichele 2006-08-21 19:01:41 +00:00
parent 8c7c9ad6d4
commit ba7524353f
8 changed files with 76 additions and 4 deletions

View file

@ -1,10 +1,21 @@
2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
* docs/plugins/inspect/plugin-gdp.xml:
* gst/gdp/Makefile.am:
* tests/check/Makefile.am:
Move GDP plugin to -base from -bad. Closes #347783.
2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/tag/gstvorbistag.c:
(gst_tag_list_from_vorbiscomment_buffer):
Allow id_data_len == 0 (needed for vorbis comments in Speex files).
Also add some checks to make sure we don't memcmp() beyond the end of
vorbiscomment buffer if the ID to check for is larger than the buffer.
vorbiscomment buffer if the ID to check for is larger than the buffer.
* tests/check/libs/tag.c: (GST_START_TEST):
Some more tests for gst_tag_list_from_vorbiscomment_buffer().
@ -44,7 +55,7 @@
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_get_unit_size), (set_structure_widths):
Lower debug, use g_assert in _get_unit_size
Lower debug, use g_assert in _get_unit_size
* gst/audioresample/gstaudioresample.c:
(audioresample_get_unit_size):
@ -400,6 +411,11 @@
Make seeking in ogg more accurate again by doing the more correct
granuletime to stream time conversion.
2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_new_client):
2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),

View file

@ -89,6 +89,7 @@ GST_PLUGINS_ALL="\
audioresample \
audiotestsrc \
ffmpegcolorspace \
gdp \
playback \
typefind \
videotestsrc \
@ -577,6 +578,7 @@ gst/audiorate/Makefile
gst/audioresample/Makefile
gst/audiotestsrc/Makefile
gst/ffmpegcolorspace/Makefile
gst/gdp/Makefile
gst/playback/Makefile
gst/subparse/Makefile
gst/tcp/Makefile

View file

@ -94,6 +94,8 @@ EXTRA_HFILES = \
$(top_srcdir)/gst/audioresample/gstaudioresample.h \
$(top_srcdir)/gst/audiotestsrc/gstaudiotestsrc.h \
$(top_srcdir)/gst/ffmpegcolorspace/gstffmpegcolorspace.h \
$(top_srcdir)/gst/gdp/gstgdpdepay.h \
$(top_srcdir)/gst/gdp/gstgdppay.h \
$(top_srcdir)/gst/tcp/gstmultifdsink.h \
$(top_srcdir)/gst/tcp/gsttcpserversink.h \
$(top_srcdir)/gst/videorate/gstvideorate.h \

View file

@ -22,6 +22,8 @@
<xi:include href="xml/element-cdparanoiasrc.xml" />
<xi:include href="xml/element-clockoverlay.xml" />
<xi:include href="xml/element-ffmpegcolorspace.xml" />
<xi:include href="xml/element-gdppay.xml" />
<xi:include href="xml/element-gdpdepay.xml" />
<xi:include href="xml/element-gnomevfssink.xml" />
<xi:include href="xml/element-gnomevfssrc.xml" />
<xi:include href="xml/element-multifdsink.xml" />
@ -54,6 +56,7 @@
<xi:include href="xml/plugin-cdparanoia.xml" />
<xi:include href="xml/plugin-decodebin.xml" />
<xi:include href="xml/plugin-ffmpegcolorspace.xml" />
<xi:include href="xml/plugin-gdp.xml" />
<xi:include href="xml/plugin-gnomevfs.xml" />
<xi:include href="xml/plugin-libvisual.xml" />
<xi:include href="xml/plugin-ogg.xml" />

View file

@ -142,6 +142,23 @@ GST_TYPE_FFMPEGCSP
GstFFMpegCspClass
</SECTION>
<SECTION>
<FILE>element-gdpdepay</FILE>
GstGDPDepay
<TITLE>gdpdepay</TITLE>
<SUBSECTION Standard>
GstGDPDepayClass
</SECTION>
<SECTION>
<FILE>element-gdppay</FILE>
GstGDPPay
<TITLE>gdppay</TITLE>
<SUBSECTION Standard>
GstGDPPayClass
</SECTION>
<SECTION>
<FILE>element-multifdsink</FILE>
<TITLE>multifdsink</TITLE>

View file

@ -0,0 +1,27 @@
<plugin>
<name>gdp</name>
<description>Payload/depayload GDP packets</description>
<filename>../../gst/gdp/.libs/libgstgdp.so</filename>
<basename>libgstgdp.so</basename>
<version>0.10.9.1</version>
<license>LGPL</license>
<source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package>
<origin>Unknown package origin</origin>
<elements>
<element>
<name>gdpdepay</name>
<longname>GDP Depayloader</longname>
<class>GDP/Depayloader</class>
<description>Depayloads GStreamer Data Protocol buffers</description>
<author>Thomas Vander Stichele &lt;thomas at apestaart dot org&gt;</author>
</element>
<element>
<name>gdppay</name>
<longname>GDP Payloader</longname>
<class>GDP/Payloader</class>
<description>Payloads GStreamer Data Protocol buffers</description>
<author>Thomas Vander Stichele &lt;thomas at apestaart dot org&gt;</author>
</element>
</elements>
</plugin>

View file

@ -5,8 +5,8 @@ libgstgdp_la_SOURCES = \
gstgdppay.c \
gstgdpdepay.c
libgstgdp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
libgstgdp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_GDP_LIBS)
libgstgdp_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
libgstgdp_la_LIBADD = $(GST_BASE_LIBS) $(GST_GDP_LIBS)
libgstgdp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = \

View file

@ -47,6 +47,8 @@ check_PROGRAMS = \
elements/audioconvert \
elements/audioresample \
elements/audiotestsrc \
elements/gdpdepay \
elements/gdppay \
elements/multifdsink \
elements/videorate \
elements/videotestsrc \
@ -112,6 +114,9 @@ elements_audioconvert_CFLAGS = \
-I$(top_srcdir)/gst-libs \
$(CFLAGS) $(AM_CFLAGS)
elements_gdpdepay_LDADD = $(GST_GDP_LIBS) $(LDADD)
elements_gdppay_LDADD = $(GST_GDP_LIBS) $(LDADD)
elements_volume_LDADD = \
$(GST_BASE_LIBS) \
$(LDADD)