Release 0.10.18

Original commit message from CVS:
Release 0.10.18
This commit is contained in:
Jan Schmidt 2008-03-21 00:26:03 +00:00
parent a5ca59f269
commit efef5a67a5
41 changed files with 249 additions and 185 deletions

View file

@ -1,3 +1,10 @@
=== release 0.10.18 ===
2008-03-20 Jan Schmidt <jan.schmidt@sun.com>
* configure.ac:
releasing 0.10.18, "I will follow"
2008-03-18 Jan Schmidt <jan.schmidt@sun.com> 2008-03-18 Jan Schmidt <jan.schmidt@sun.com>
* configure.ac: * configure.ac:

61
NEWS
View file

@ -1,33 +1,56 @@
This is GStreamer Base Plug-ins 0.10.17, "Peanut Butter and Jelly" This is GStreamer Base Plug-ins 0.10.18, "I will follow"
IMPORTANT NOTES IMPORTANT NOTES
This release is identical to 0.10.16, with several small but significant bug
fixes. The most important one fixes crashes in gnome-volume-control and other
consumers of the GstMixer API, due to an unfortunate ABI break. Everyone
should use 0.10.17 instead of 0.10.16 in all cases.
1) Please note that decodebin2 and playbin2 API included in this release is 1) Please note that decodebin2 and playbin2 API included in this release is
still considered unstable and WILL change in future releases. At this stage, still considered unstable and WILL change in future releases. At this stage,
only developers or early adopters should consider using decodebin2 or playbin2 only developers or early adopters should consider using decodebin2 or playbin2
API embodied in their signals and properties. API embodied in their signals and properties.
2) On some systems, the current release of gst-plugins-good (0.10.6) may fail to Changes since 0.10.17:
build against this release of gst-plugins-base with an error like:
gstid3v2mux.cc:547: error: 'GST_TAG_MUSICBRAINZ_SORTNAME' was not declared in this scope * Experimental GIO plugin
* Continued playbin2 development
* RTP fixes
* Better network element support on Windows
* Various other bug-fixes and improvements
In this case, you should either patch the configure file of gst-plugins-good to Bugs fixed since 0.10.17:
remove -DGST_DISABLE_DEPRECATED from DEPRECATED_CFLAGS=, or else compile
with make DEPRECATED_CFLAGS=''
3) Some users may experience problems using the 'mp3parse' element from the * 509637 : [API] [basertpaudiopayload] add _set_samplebits_options()
previous gst-plugins-ugly release (0.10.6). This is due to a bug in mp3parse * 510229 : [gnomevfssrc] HTTPS support
exposed by changes in decodebin in gst-plugins-base. It will be fixed in the * 511478 : [rtpbuffer] add gst_rtp_buffer_set_extension_data function
upcoming release of gst-plugins-ugly next month. In the meantime as a * 511810 : [RTSP] Uses MT-unsafe gmtime() function
workaround, you can set the rank of mp3parse to GST_RANK_NONE in * 512899 : [alsa] gstalsasink.c:527: warning: 'snd_pcm_sw_params_set...
gst-plugins-ugly/gst/mpegaudioparse/gstmpegaudioparse.c when compiling, or * 513167 : Fix compiler warning due to disabled signals in mixertrac...
or remove the /usr/lib/gstreamer-0.10/libgstmpegaudioparse.so file entirely. * 514307 : [playbin] warning in nautilus, volume element can't be cr...
* 514623 : Ogg Theora video slow
* 514937 : Correct initialization of hints in is_multicast_address()
* 515654 : xvimagesink doesn't build with --disable-xshm
* 516246 : [alsasink] handle negative delay from snd_pcm_delay
* 517420 : typefind: add h264 elementary stream discovery
* 517991 : problems with configure file depending on GCC compiler
* 518039 : libgstrtsp MSVC 6.0 compile error
* 518162 : [subparse] handle italic text starting with " / " with Micr...
* 518940 : [playbin2] make _get_*_tags() match vfuncs prototype in c...
* 519906 : [API] add GstMixerOptions::get_values vfunc
* 519916 : [API] add mixer-changed and options-list-changed messages
* 520523 : [API] Unreviewed changes to ringbuffer API
* 521743 : libgstnetbuffer.def exports not up to date
* 522625 : [video] gst_video_format_parse_caps() broken for RGBA for...
* 523054 : gstbasesrc crashes when called from typefind helpers
* 511825 : [RTSP] compiler warning on FreeBSD
* 520300 : [alsasrc] provide-clock=false messes up buffer durations
API added since 0.10.17:
* GstRTPBuffer:gst_rtp_buffer_set_extension_data()
* add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
* add GstMixerOptions::get_values vfunc (#519906)
* add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and
gst_mixer_message_parse_options_list_changed(). Fixes #519916.
* gst_base_rtp_audio_payload_set_samplebits_options()
* GstNetBuffer::gst_netaddress_equal
Changes since 0.10.16: Changes since 0.10.16:

67
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer Base Plug-ins 0.10.17 "Peanut Butter and Jelly" Release notes for GStreamer Base Plug-ins 0.10.18 "I will follow"
@ -54,15 +54,49 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release Features of this release
* Work-around ABI breakage due to unfortunate use of the GST_DISABLE_DEPRECATED macro * Experimental GIO plugin
* Export 2 missing functions needed for bindings in the win32 build * Continued playbin2 development
* Initialise the GstRingBuffer GType from a thread-safe context * RTP fixes
* Better network element support on Windows
* Various other bug-fixes and improvements
Bugs fixed in this release Bugs fixed in this release
* 509637 : [API] [basertpaudiopayload] add _set_samplebits_options()
* 510229 : [gnomevfssrc] HTTPS support
* 511478 : [rtpbuffer] add gst_rtp_buffer_set_extension_data function
* 511810 : [RTSP] Uses MT-unsafe gmtime() function
* 512899 : [alsa] gstalsasink.c:527: warning: 'snd_pcm_sw_params_set...
* 513167 : Fix compiler warning due to disabled signals in mixertrac...
* 514307 : [playbin] warning in nautilus, volume element can't be cr...
* 514623 : Ogg Theora video slow
* 514937 : Correct initialization of hints in is_multicast_address()
* 515654 : xvimagesink doesn't build with --disable-xshm
* 516246 : [alsasink] handle negative delay from snd_pcm_delay
* 517420 : typefind: add h264 elementary stream discovery
* 517991 : problems with configure file depending on GCC compiler
* 518039 : libgstrtsp MSVC 6.0 compile error
* 518162 : [subparse] handle italic text starting with " / " with Micr...
* 518940 : [playbin2] make _get_*_tags() match vfuncs prototype in c...
* 519906 : [API] add GstMixerOptions::get_values vfunc
* 519916 : [API] add mixer-changed and options-list-changed messages
* 520523 : [API] Unreviewed changes to ringbuffer API
* 521743 : libgstnetbuffer.def exports not up to date
* 522625 : [video] gst_video_format_parse_caps() broken for RGBA for...
* 523054 : gstbasesrc crashes when called from typefind helpers
* 511825 : [RTSP] compiler warning on FreeBSD * 511825 : [RTSP] compiler warning on FreeBSD
* 513018 : crash in Volume Control: I typed my password at t... * 520300 : [alsasrc] provide-clock=false messes up buffer durations
* 512334 : g_critical() when using GstAudioFilter & GST_DEBUG
API changed in this release
- API additions:
* GstRTPBuffer:gst_rtp_buffer_set_extension_data()
* add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
* add GstMixerOptions::get_values vfunc (#519906)
* add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
* gst_base_rtp_audio_payload_set_samplebits_options()
* GstNetBuffer::gst_netaddress_equal
Download Download
@ -92,7 +126,28 @@ Applications
Contributors to this release Contributors to this release
* Alan Peevers
* Branko Čibej
* Brian Cameron
* David Schleef
* Jan Schmidt * Jan Schmidt
* Josep Torra Valles
* José Alburquerque
* Julien Moutte
* Mersad Jelacic
* Michael Smith
* Milosz Derezynski
* Ole André Vadla Ravnås
* Olivier Crete
* Peter Kjellerstedt
* Rene Stadler
* Sebastian Dröge * Sebastian Dröge
* Stefan Kost
* Thijs Vermeir
* Tim-Philipp Müller * Tim-Philipp Müller
* Tomasz Sałaciński
* Tommi Myöhänen
* William M. Brack
* Wim Taymans
* Zaheer Abbas Merali
   

View file

@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf dnl initialize autoconf
dnl releases only do -Wall, cvs and prerelease does -Werror too dnl releases only do -Wall, cvs and prerelease does -Werror too
dnl use a three digit version number for releases, and four for cvs/prerelease dnl use a three digit version number for releases, and four for cvs/prerelease
AC_INIT(GStreamer Base Plug-ins, 0.10.17.4, AC_INIT(GStreamer Base Plug-ins, 0.10.18,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-plugins-base) gst-plugins-base)
@ -44,7 +44,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0 dnl - interfaces removed -> AGE = 0
dnl sets GST_LT_LDFLAGS dnl sets GST_LT_LDFLAGS
AS_LIBTOOL(GST, 12, 0, 12) AS_LIBTOOL(GST, 13, 0, 13)
dnl FIXME: this macro doesn't actually work; dnl FIXME: this macro doesn't actually work;
dnl the generated libtool script has no support for the listed tags. dnl the generated libtool script has no support for the listed tags.

View file

@ -524,7 +524,7 @@
<RANGE></RANGE> <RANGE></RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Mode</NICK> <NICK>Mode</NICK>
<BLURB>The mode for selecting activity on the fds.</BLURB> <BLURB>The mode for selecting activity on the fds (deprecated).</BLURB>
<DEFAULT>Poll</DEFAULT> <DEFAULT>Poll</DEFAULT>
</ARG> </ARG>
@ -2083,11 +2083,21 @@
<TYPE>gdouble</TYPE> <TYPE>gdouble</TYPE>
<RANGE>[0,10]</RANGE> <RANGE>[0,10]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>volume</NICK> <NICK>Volume</NICK>
<BLURB>volume.</BLURB> <BLURB>The audio volume.</BLURB>
<DEFAULT>1</DEFAULT> <DEFAULT>1</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstPlayBin2::mute</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Mute</NICK>
<BLURB>Mute the audio channel without changing the volume.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstGioSink::location</NAME> <NAME>GstGioSink::location</NAME>
<TYPE>gchar*</TYPE> <TYPE>gchar*</TYPE>

View file

@ -12,13 +12,9 @@ GObject
GstPlayBaseBin GstPlayBaseBin
GstPlayBin GstPlayBin
GstPlayBin2 GstPlayBin2
GstDecodeBin
GstDecodeBin2 GstDecodeBin2
GstURIDecodeBin GstURIDecodeBin
GstTextOverlay GstDecodeBin
GstTimeOverlay
GstClockOverlay
GstTextRender
GstBaseSrc GstBaseSrc
GstPushSrc GstPushSrc
GstCddaBaseSrc GstCddaBaseSrc
@ -32,32 +28,11 @@ GObject
GstTCPServerSrc GstTCPServerSrc
GstVideoTestSrc GstVideoTestSrc
GstGnomeVFSSrc GstGnomeVFSSrc
GstGioBaseSrc
GstGioSrc
GstGioStreamSrc
GstAudioTestSrc GstAudioTestSrc
GstBaseSink
GstGnomeVFSSink
GstBaseAudioSink
GstAudioSink
GstAlsaSink
GstGioBaseSink
GstGioSink
GstGioStreamSink
GstVideoSink
GstXvImageSink
GstXImageSink
GstTCPClientSink
GstMultiFdSink
GstTCPServerSink
GstVorbisEnc GstVorbisEnc
GstVorbisDec GstVorbisDec
GstVorbisParse GstVorbisParse
GstVorbisTag GstVorbisTag
GstAlsaMixerElement
GstTheoraDec
GstTheoraEnc
GstTheoraParse
GstOggDemux GstOggDemux
GstOggMux GstOggMux
GstOgmParse GstOgmParse
@ -66,30 +41,49 @@ GObject
GstOgmTextParse GstOgmTextParse
GstOggParse GstOggParse
GstOggAviParse GstOggAviParse
GstBaseSink
GstGnomeVFSSink
GstBaseAudioSink
GstAudioSink
GstAlsaSink
GstVideoSink
GstXvImageSink
GstXImageSink
GstTCPClientSink
GstMultiFdSink
GstTCPServerSink
GstVisual GstVisual
GstVisualjess
GstVisualbumpscope GstVisualbumpscope
GstVisualcorona GstVisualcorona
GstVisualinfinite GstVisualinfinite
GstVisualjakdaw GstVisualjakdaw
GstVisualjess
GstVisuallv_analyzer GstVisuallv_analyzer
GstVisuallv_scope GstVisuallv_scope
GstVisualoinksie GstVisualoinksie
GstTheoraDec
GstTheoraEnc
GstTheoraParse
GstTextOverlay
GstTimeOverlay
GstClockOverlay
GstTextRender
GstAlsaMixerElement
GstGDPDepay GstGDPDepay
GstGDPPay GstGDPPay
GstQueue2
GstBaseTransform GstBaseTransform
GstFFMpegCsp
GstVideoScale
GstAudioFilter GstAudioFilter
GstVolume GstVolume
GstFFMpegCsp
GstAudioresample GstAudioresample
GstVideoScale
GstAudioConvert GstAudioConvert
GstAdder
GstVideoRate
GstAudioRate
GstSubParse GstSubParse
GstSsaParse GstSsaParse
GstAdder
GstQueue2
GstAudioRate
GstVideoRate
GstPlugin GstPlugin
GstRegistry GstRegistry
GstClock GstClock
@ -97,60 +91,28 @@ GObject
GstAudioClock GstAudioClock
GstRingBuffer GstRingBuffer
GstSignalObject GstSignalObject
PangoFontMap
PangoFcFontMap
PangoFT2FontMap
PangoContext
LinkConnection LinkConnection
GIOPConnection GIOPConnection
LinkServer LinkServer
GIOPServer GIOPServer
GConfClient GConfClient
GFileMonitor PangoFontMap
GLocalDirectoryMonitor PangoFcFontMap
GFamDirectoryMonitor PangoFT2FontMap
GInotifyDirectoryMonitor PangoContext
GLocalFileMonitor GstMixerTrack
GFamFileMonitor GstMixerOptions
GInotifyFileMonitor
GVolumeMonitor
GNativeVolumeMonitor
GHalVolumeMonitor
GUnixVolumeMonitor
GDaemonVolumeMonitor
GVfs
GDaemonVfs
GLocalVfs
GTypeModule
GIOModule
GVfsUriMapper
GVfsUriMapperSmb
GVfsUriMapperSftp
GVfsUriMapperHttp
HalDevice
HalPool
GHalDrive
GHalMount
GHalVolume
GAppLookupGConf
GOutputStream
GInputStream
GstTunerNorm GstTunerNorm
GstTunerChannel GstTunerChannel
GstColorBalanceChannel GstColorBalanceChannel
GstStreamInfo GstStreamInfo
GInterface GInterface
GTypePlugin
GstChildProxy GstChildProxy
GstURIHandler GstURIHandler
GstTagSetter GstTagSetter
GstImplementsInterface GstImplementsInterface
GstMixer GstMixer
GstPropertyProbe GstPropertyProbe
GDesktopAppInfoLookup
GDrive
GMount
GVolume
GstTuner GstTuner
GstXOverlay GstXOverlay
GstColorBalance GstColorBalance

View file

@ -3,28 +3,20 @@ GstPipeline GstChildProxy
GstPlayBaseBin GstChildProxy GstPlayBaseBin GstChildProxy
GstPlayBin GstChildProxy GstPlayBin GstChildProxy
GstPlayBin2 GstChildProxy GstPlayBin2 GstChildProxy
GstDecodeBin GstChildProxy
GstDecodeBin2 GstChildProxy GstDecodeBin2 GstChildProxy
GstURIDecodeBin GstChildProxy GstURIDecodeBin GstChildProxy
GstDecodeBin GstChildProxy
GstCddaBaseSrc GstURIHandler GstCddaBaseSrc GstURIHandler
GstCdParanoiaSrc GstURIHandler GstCdParanoiaSrc GstURIHandler
GstAlsaSrc GstImplementsInterface GstMixer GstPropertyProbe GstAlsaSrc GstImplementsInterface GstMixer GstPropertyProbe
GstV4lElement GstImplementsInterface GstPropertyProbe GstXOverlay GstTuner GstColorBalance GstV4lElement GstImplementsInterface GstPropertyProbe GstTuner GstXOverlay GstColorBalance
GstV4lSrc GstImplementsInterface GstPropertyProbe GstXOverlay GstTuner GstColorBalance GstV4lSrc GstImplementsInterface GstPropertyProbe GstTuner GstXOverlay GstColorBalance
GstGnomeVFSSrc GstURIHandler GstGnomeVFSSrc GstURIHandler
GstGioSrc GstURIHandler
GstGnomeVFSSink GstURIHandler
GstAlsaSink GstPropertyProbe
GstGioSink GstURIHandler
GstXvImageSink GstImplementsInterface GstPropertyProbe GstXOverlay GstColorBalance GstNavigation
GstXImageSink GstImplementsInterface GstXOverlay GstNavigation
GstVorbisEnc GstTagSetter GstVorbisEnc GstTagSetter
GstVorbisTag GstTagSetter GstVorbisTag GstTagSetter
GstGnomeVFSSink GstURIHandler
GstAlsaSink GstPropertyProbe
GstXvImageSink GstImplementsInterface GstPropertyProbe GstXOverlay GstColorBalance GstNavigation
GstXImageSink GstImplementsInterface GstXOverlay GstNavigation
GstAlsaMixerElement GstImplementsInterface GstMixer GstPropertyProbe GstAlsaMixerElement GstImplementsInterface GstMixer GstPropertyProbe
GstVolume GstImplementsInterface GstMixer GstVolume GstImplementsInterface GstMixer
GTypeModule GTypePlugin
GIOModule GTypePlugin
GHalDrive GDrive
GHalMount GMount
GHalVolume GVolume
GAppLookupGConf GDesktopAppInfoLookup

View file

@ -2,10 +2,6 @@ GstChildProxy GstObject
GstTagSetter GstObject GstElement GstTagSetter GstObject GstElement
GstImplementsInterface GstObject GstElement GstImplementsInterface GstObject GstElement
GstMixer GstObject GstImplementsInterface GstElement GstMixer GstObject GstImplementsInterface GstElement
GDesktopAppInfoLookup GObject
GDrive GObject
GMount GObject
GVolume GObject
GstTuner GstObject GstImplementsInterface GstElement GstTuner GstObject GstImplementsInterface GstElement
GstXOverlay GstObject GstImplementsInterface GstElement GstXOverlay GstObject GstImplementsInterface GstElement
GstColorBalance GstObject GstImplementsInterface GstElement GstColorBalance GstObject GstImplementsInterface GstElement

View file

@ -313,3 +313,11 @@ GstPlayBin2 *gstplaybin2
GstPlayBin2 *gstplaybin2 GstPlayBin2 *gstplaybin2
</SIGNAL> </SIGNAL>
<SIGNAL>
<NAME>GstPlayBin2::convert-frame</NAME>
<RETURNS>GstBuffer*</RETURNS>
<FLAGS>la</FLAGS>
GstPlayBin2 *gstplaybin2
GstCaps *arg1
</SIGNAL>

View file

@ -3,10 +3,10 @@
<description>Adds multiple streams</description> <description>Adds multiple streams</description>
<filename>../../gst/adder/.libs/libgstadder.so</filename> <filename>../../gst/adder/.libs/libgstadder.so</filename>
<basename>libgstadder.so</basename> <basename>libgstadder.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>ALSA plugin library</description> <description>ALSA plugin library</description>
<filename>../../ext/alsa/.libs/libgstalsa.so</filename> <filename>../../ext/alsa/.libs/libgstalsa.so</filename>
<basename>libgstalsa.so</basename> <basename>libgstalsa.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>
@ -30,7 +30,7 @@
<name>sink</name> <name>sink</name>
<direction>sink</direction> <direction>sink</direction>
<presence>always</presence> <presence>always</presence>
<details>audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)32, depth=(int)32, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)24, depth=(int)24, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)32, depth=(int)24, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)16, depth=(int)16, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, signed=(boolean){ true, false }, width=(int)8, depth=(int)8, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]</details> <details>audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)32, depth=(int)32, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)24, depth=(int)24, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)32, depth=(int)24, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, endianness=(int){ 1234, 4321 }, signed=(boolean){ true, false }, width=(int)16, depth=(int)16, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-raw-int, signed=(boolean){ true, false }, width=(int)8, depth=(int)8, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ]; audio/x-iec958</details>
</caps> </caps>
</pads> </pads>
</element> </element>

View file

@ -3,10 +3,10 @@
<description>Convert audio to different formats</description> <description>Convert audio to different formats</description>
<filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename> <filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename>
<basename>libgstaudioconvert.so</basename> <basename>libgstaudioconvert.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Adjusts audio frames</description> <description>Adjusts audio frames</description>
<filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename> <filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename>
<basename>libgstaudiorate.so</basename> <basename>libgstaudiorate.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Resamples audio</description> <description>Resamples audio</description>
<filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename> <filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename>
<basename>libgstaudioresample.so</basename> <basename>libgstaudioresample.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Creates audio test signals of given frequency and volume</description> <description>Creates audio test signals of given frequency and volume</description>
<filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename> <filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename>
<basename>libgstaudiotestsrc.so</basename> <basename>libgstaudiotestsrc.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Read audio from CD in paranoid mode</description> <description>Read audio from CD in paranoid mode</description>
<filename>../../ext/cdparanoia/.libs/libgstcdparanoia.so</filename> <filename>../../ext/cdparanoia/.libs/libgstcdparanoia.so</filename>
<basename>libgstcdparanoia.so</basename> <basename>libgstcdparanoia.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>GPL</license> <license>GPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>decoder bin</description> <description>decoder bin</description>
<filename>../../gst/playback/.libs/libgstdecodebin.so</filename> <filename>../../gst/playback/.libs/libgstdecodebin.so</filename>
<basename>libgstdecodebin.so</basename> <basename>libgstdecodebin.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,7 +3,7 @@
<description>colorspace conversion copied from FFMpeg 0.4.9-pre1</description> <description>colorspace conversion copied from FFMpeg 0.4.9-pre1</description>
<filename>../../gst/ffmpegcolorspace/.libs/libgstffmpegcolorspace.so</filename> <filename>../../gst/ffmpegcolorspace/.libs/libgstffmpegcolorspace.so</filename>
<basename>libgstffmpegcolorspace.so</basename> <basename>libgstffmpegcolorspace.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>FFMpeg</package> <package>FFMpeg</package>

View file

@ -3,10 +3,10 @@
<description>Payload/depayload GDP packets</description> <description>Payload/depayload GDP packets</description>
<filename>../../gst/gdp/.libs/libgstgdp.so</filename> <filename>../../gst/gdp/.libs/libgstgdp.so</filename>
<basename>libgstgdp.so</basename> <basename>libgstgdp.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>elements to read from and write to Gnome-VFS uri's</description> <description>elements to read from and write to Gnome-VFS uri's</description>
<filename>../../ext/gnomevfs/.libs/libgstgnomevfs.so</filename> <filename>../../ext/gnomevfs/.libs/libgstgnomevfs.so</filename>
<basename>libgstgnomevfs.so</basename> <basename>libgstgnomevfs.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>libvisual visualization plugins</description> <description>libvisual visualization plugins</description>
<filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename> <filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename>
<basename>libgstlibvisual.so</basename> <basename>libgstlibvisual.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

File diff suppressed because one or more lines are too long

View file

@ -3,10 +3,10 @@
<description>Pango-based text rendering and overlay</description> <description>Pango-based text rendering and overlay</description>
<filename>../../ext/pango/.libs/libgstpango.so</filename> <filename>../../ext/pango/.libs/libgstpango.so</filename>
<basename>libgstpango.so</basename> <basename>libgstpango.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>various playback elements</description> <description>various playback elements</description>
<filename>../../gst/playback/.libs/libgstplaybin.so</filename> <filename>../../gst/playback/.libs/libgstplaybin.so</filename>
<basename>libgstplaybin.so</basename> <basename>libgstplaybin.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Queue newer version</description> <description>Queue newer version</description>
<filename>../../gst/playback/.libs/libgstqueue2.so</filename> <filename>../../gst/playback/.libs/libgstqueue2.so</filename>
<basename>libgstqueue2.so</basename> <basename>libgstqueue2.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Subtitle parsing</description> <description>Subtitle parsing</description>
<filename>../../gst/subparse/.libs/libgstsubparse.so</filename> <filename>../../gst/subparse/.libs/libgstsubparse.so</filename>
<basename>libgstsubparse.so</basename> <basename>libgstsubparse.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>transfer data over the network via TCP</description> <description>transfer data over the network via TCP</description>
<filename>../../gst/tcp/.libs/libgsttcp.so</filename> <filename>../../gst/tcp/.libs/libgsttcp.so</filename>
<basename>libgsttcp.so</basename> <basename>libgsttcp.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Theora plugin library</description> <description>Theora plugin library</description>
<filename>../../ext/theora/.libs/libgsttheora.so</filename> <filename>../../ext/theora/.libs/libgsttheora.so</filename>
<basename>libgsttheora.so</basename> <basename>libgsttheora.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>
@ -53,7 +53,7 @@
</element> </element>
<element> <element>
<name>theoraparse</name> <name>theoraparse</name>
<longname>TheoraParse</longname> <longname>Theora video parser</longname>
<class>Codec/Parser/Video</class> <class>Codec/Parser/Video</class>
<description>parse raw theora streams</description> <description>parse raw theora streams</description>
<author>Andy Wingo &lt;wingo@pobox.com&gt;</author> <author>Andy Wingo &lt;wingo@pobox.com&gt;</author>

View file

@ -3,10 +3,10 @@
<description>default typefind functions</description> <description>default typefind functions</description>
<filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename> <filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename>
<basename>libgsttypefindfunctions.so</basename> <basename>libgsttypefindfunctions.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>

View file

@ -3,10 +3,10 @@
<description>URI Decoder bin</description> <description>URI Decoder bin</description>
<filename>../../gst/playback/.libs/libgstdecodebin2.so</filename> <filename>../../gst/playback/.libs/libgstdecodebin2.so</filename>
<basename>libgstdecodebin2.so</basename> <basename>libgstdecodebin2.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>elements for Video 4 Linux</description> <description>elements for Video 4 Linux</description>
<filename>../../sys/v4l/.libs/libgstvideo4linux.so</filename> <filename>../../sys/v4l/.libs/libgstvideo4linux.so</filename>
<basename>libgstvideo4linux.so</basename> <basename>libgstvideo4linux.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Adjusts video frames</description> <description>Adjusts video frames</description>
<filename>../../gst/videorate/.libs/libgstvideorate.so</filename> <filename>../../gst/videorate/.libs/libgstvideorate.so</filename>
<basename>libgstvideorate.so</basename> <basename>libgstvideorate.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Resizes video</description> <description>Resizes video</description>
<filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename> <filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename>
<basename>libgstvideoscale.so</basename> <basename>libgstvideoscale.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Creates a test video stream</description> <description>Creates a test video stream</description>
<filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename> <filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename>
<basename>libgstvideotestsrc.so</basename> <basename>libgstvideotestsrc.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>plugin for controlling audio volume</description> <description>plugin for controlling audio volume</description>
<filename>../../gst/volume/.libs/libgstvolume.so</filename> <filename>../../gst/volume/.libs/libgstvolume.so</filename>
<basename>libgstvolume.so</basename> <basename>libgstvolume.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Vorbis plugin library</description> <description>Vorbis plugin library</description>
<filename>../../ext/vorbis/.libs/libgstvorbis.so</filename> <filename>../../ext/vorbis/.libs/libgstvorbis.so</filename>
<basename>libgstvorbis.so</basename> <basename>libgstvorbis.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>X11 video output element based on standard Xlib calls</description> <description>X11 video output element based on standard Xlib calls</description>
<filename>../../sys/ximage/.libs/libgstximagesink.so</filename> <filename>../../sys/ximage/.libs/libgstximagesink.so</filename>
<basename>libgstximagesink.so</basename> <basename>libgstximagesink.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>XFree86 video output plugin using Xv extension</description> <description>XFree86 video output plugin using Xv extension</description>
<filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename> <filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename>
<basename>libgstxvimagesink.so</basename> <basename>libgstxvimagesink.so</basename>
<version>0.10.17.1</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-base</source> <source>gst-plugins-base</source>
<package>GStreamer Base Plug-ins CVS/prerelease</package> <package>GStreamer Base Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -35,6 +35,17 @@ A wide range of video and audio decoders, encoders, and filters are included.
</CVSRepository> </CVSRepository>
</repository> </repository>
<release>
<Version>
<revision>0.10.18</revision>
<branch>0.10</branch>
<name>I will follow</name>
<created>2008-03-21</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.18.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.18.tar.gz" />
</Version>
</release>
<release> <release>
<Version> <Version>
<revision>0.10.17</revision> <revision>0.10.17</revision>

View file

@ -1 +1 @@
af az bg ca cs da de en_GB es fi hu it nb nl or pl sk sq sr sv uk vi zh_CN af az bg ca cs da de en_GB es fi hu it lt nb nl or pl sk sq sr sv uk vi zh_CN

View file

@ -39,7 +39,7 @@
#define GST_LICENSE "LGPL" #define GST_LICENSE "LGPL"
/* package name in plugins */ /* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer Base Plug-ins CVS/prerelease" #define GST_PACKAGE_NAME "GStreamer Base Plug-ins source release"
/* package origin */ /* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin" #define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -211,13 +211,13 @@
#define PACKAGE_NAME "GStreamer Base Plug-ins" #define PACKAGE_NAME "GStreamer Base Plug-ins"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer Base Plug-ins 0.10.17.4" #define PACKAGE_STRING "GStreamer Base Plug-ins 0.10.18"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gst-plugins-base" #define PACKAGE_TARNAME "gst-plugins-base"
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "0.10.17.4" #define PACKAGE_VERSION "0.10.18"
/* directory where plugins are located */ /* directory where plugins are located */
#undef PLUGINDIR #undef PLUGINDIR
@ -241,7 +241,7 @@
#undef STDC_HEADERS #undef STDC_HEADERS
/* Version number of package */ /* Version number of package */
#define VERSION "0.10.17.4" #define VERSION "0.10.18"
/* Define to 1 if your processor stores words with the most significant byte /* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */ first (like Motorola and SPARC, unlike Intel and VAX). */