diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-04-18 11:39:02 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-04-18 11:39:02 +0200 |
commit | 0d637424fcee717dcab9532f67cb4d05631b7038 (patch) | |
tree | 3c706c41614f068045c56c6ab0f6f14afbb22691 | |
parent | 600c1218252cbe5e386cd89c189088792a5fc4b1 (diff) |
Release 1.2.41.2.4
34 files changed, 287 insertions, 58 deletions
@@ -1,9 +1,234 @@ +=== release 1.2.4 === + +2014-04-18 Sebastian Dröge <slomo@coaxion.net> + + * configure.ac: + releasing 1.2.4 + +2014-04-10 12:10:47 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> + + * gst-libs/gst/video/gstvideometa.c: + videometa: fix texture_type memcpy size + Coverity 1139589, 1139588 + +2014-04-08 15:43:50 +0200 Wim Taymans <wtaymans@redhat.com> + + * gst-libs/gst/sdp/gstsdpmessage.c: + sdp: guard against address parse errors. + +2014-03-25 17:11:34 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com> + + * gst/adder/gstadder.c: + adder: rework the logic to check if eos has to be sent. + Checking the size available was incorrect, and the infos + for per-pad EOS are available. + Same logic as audiomixer. + fixes: https://bugzilla.gnome.org/show_bug.cgi?id=727025 + +2014-04-04 02:14:50 +1100 Jan Schmidt <jan@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: Drop reference to any source element in NULL state + Drop the reference instead of waiting for either finalize(), or + for a new source when reused. Everyone else already forgot about + the old source. + +2014-03-16 17:04:44 +0100 Ognyan Tonchev <otonchev@gmail.com> + + * gst-libs/gst/rtsp/gstrtspconnection.c: + rtspconnection: Fix minor memory leaks in error handling + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=726642 + +2014-03-05 00:35:30 +0000 Tim-Philipp Müller <tim@centricular.com> + + * gst/typefind/gsttypefindfunctions.c: + typefindfunctions: lower H.263 typefinder max probability + The typefinder returns LIKELY for as little as one possible + sync and no bad sync (not even taking into account how much + data was looked at for that). It's generally just not fit + for purpose, so should just not return anything like LIKELY + at all ever, even more so since it only recognises one out + of ten H263 files, and likes to mis-detect mp3s as H263. + https://bugzilla.gnome.org/show_bug.cgi?id=700770 + https://bugzilla.gnome.org/show_bug.cgi?id=725644 + +2014-02-24 11:17:05 -0500 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> + + * gst-libs/gst/audio/gstaudiobasesink.c: + audiobasesink: clip start samples to match clipped start time + Clock slaving can clip start time to zero, giving us a shorted + duration than we originally got. To keep in sync, we must then + discard the samples falling before that zero timestamp. + This possibly fixes random distortion caused by constant PA + underflows which are never resynced. + +2014-03-02 11:58:58 +0100 Ognyan Tonchev <ognyan@axis.com> + + * gst-libs/gst/rtsp/gstrtspconnection.c: + rtspconnection: Call closed() when GET is closed in tunneled mode + This patch adds read source on the write socket in tunneled + mode and we get a callback when client disconnects the GET + channel. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=725313 + +2014-02-04 13:55:49 +0100 Eric Trousset <etrousset@awox.com> + + * gst-libs/gst/tag/gsttagdemux.c: + tagdemux: Forward TIME seeks upstream too, maybe upstream can handle that + https://bugzilla.gnome.org/show_bug.cgi?id=723597 + +2014-02-19 13:53:06 +0100 Ognyan Tonchev <ognyan@axis.com> + + * gst-libs/gst/rtsp/gstrtspconnection.c: + rtspconnection: Remove read child source when POST is disconnected + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=724720 + +2014-02-19 01:55:50 -0300 Thiago Santos <ts.santos@sisa.samsung.com> + + * ext/ogg/gstoggdemux.c: + oggdemux: allow file to go until the end in push mode + When seeking back to original state after duration seeks, let + upstream know that we want the whole file, including the last + byte that wasn't requested on the duration seeks. + https://bugzilla.gnome.org/show_bug.cgi?id=724633 + +2014-02-18 15:02:57 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: Keep inputselector around until we release its pads + Otherwise there's an interesting race condition when we destroy + the inputselector (actually it will be destroyed later when its state + change message gets destroyed) and afterwards release its sinkpad. + This is the code path when the last channel is removed from the + input selector. + Gave this warning sometimes, for chained oggs or whenever else + we change decode groups: + GStreamer-CRITICAL **: Padname '':sink_0 does not belong to element inputselector0 when removing + +2014-02-16 15:32:47 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaysink.c: + playsink: Only remove the complete text chain if the text pad goes away + If the text pads does not go away we just set the overlay to silent, which + allows us to immediately re-enable subs later again. However before this + change we also released the streamsynchronizer text pads, which deadlocked + because there was still dataflow going on. Just do this only if we remove + the complete chain. + https://bugzilla.gnome.org/show_bug.cgi?id=683504 + +2014-02-11 16:35:45 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: First try to get the pad's current caps, then query caps + The caps query might give us ANY caps while the pad has fixed caps + configured currently. + +2014-02-10 16:33:50 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: Fix memory leak in autoplugging code + We should not leak element factories ideally. + +2014-01-18 13:31:06 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: Insert decoders without GstAVElement information between the other decoders + Otherwise they would be preferred over all decoders independent + of their ranks. + https://bugzilla.gnome.org/show_bug.cgi?id=722316 + +2014-01-18 13:12:16 +0100 Sebastian Dröge <sebastian@centricular.com> + + * gst/playback/gstplaybin2.c: + playbin: Only put parsers and sinks first, not all non-decoders + https://bugzilla.gnome.org/show_bug.cgi?id=722316 + +2014-02-10 16:33:35 +0100 Sebastian Dröge <sebastian@centricular.com> + + * tests/check/elements/playbin-complex.c: + playbin: Fix memory leak in unit test + === release 1.2.3 === -2014-02-08 Sebastian Dröge <slomo@coaxion.net> +2014-02-08 11:44:13 +0100 Sebastian Dröge <sebastian@centricular.com> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.2.3 + * docs/plugins/inspect/plugin-adder.xml: + * docs/plugins/inspect/plugin-alsa.xml: + * docs/plugins/inspect/plugin-app.xml: + * docs/plugins/inspect/plugin-audioconvert.xml: + * docs/plugins/inspect/plugin-audiorate.xml: + * docs/plugins/inspect/plugin-audioresample.xml: + * docs/plugins/inspect/plugin-audiotestsrc.xml: + * docs/plugins/inspect/plugin-cdparanoia.xml: + * docs/plugins/inspect/plugin-encoding.xml: + * docs/plugins/inspect/plugin-gio.xml: + * docs/plugins/inspect/plugin-ivorbisdec.xml: + * docs/plugins/inspect/plugin-libvisual.xml: + * docs/plugins/inspect/plugin-ogg.xml: + * docs/plugins/inspect/plugin-pango.xml: + * docs/plugins/inspect/plugin-playback.xml: + * docs/plugins/inspect/plugin-subparse.xml: + * docs/plugins/inspect/plugin-tcp.xml: + * docs/plugins/inspect/plugin-theora.xml: + * docs/plugins/inspect/plugin-typefindfunctions.xml: + * docs/plugins/inspect/plugin-videoconvert.xml: + * docs/plugins/inspect/plugin-videorate.xml: + * docs/plugins/inspect/plugin-videoscale.xml: + * docs/plugins/inspect/plugin-videotestsrc.xml: + * docs/plugins/inspect/plugin-volume.xml: + * docs/plugins/inspect/plugin-vorbis.xml: + * docs/plugins/inspect/plugin-ximagesink.xml: + * docs/plugins/inspect/plugin-xvimagesink.xml: + * gst-plugins-base.doap: + * win32/common/_stdint.h: + * win32/common/config.h: + Release 1.2.3 + +2014-02-08 11:43:58 +0100 Sebastian Dröge <sebastian@centricular.com> + + * po/af.po: + * po/az.po: + * po/bg.po: + * po/ca.po: + * po/cs.po: + * po/da.po: + * po/de.po: + * po/el.po: + * po/en_GB.po: + * po/eo.po: + * po/es.po: + * po/eu.po: + * po/fi.po: + * po/fr.po: + * po/gl.po: + * po/hr.po: + * po/hu.po: + * po/id.po: + * po/it.po: + * po/ja.po: + * po/lt.po: + * po/lv.po: + * po/nb.po: + * po/nl.po: + * po/or.po: + * po/pl.po: + * po/pt_BR.po: + * po/ro.po: + * po/ru.po: + * po/sk.po: + * po/sl.po: + * po/sq.po: + * po/sr.po: + * po/sv.po: + * po/tr.po: + * po/uk.po: + * po/vi.po: + * po/zh_CN.po: + Update .po files 2014-02-04 16:21:55 +0100 Sebastian Dröge <sebastian@centricular.com> @@ -1,2 +1,2 @@ -This is GStreamer Base Plugins 1.2.3 +This is GStreamer Base Plugins 1.2.4 @@ -1,5 +1,5 @@ -Release notes for GStreamer Base Plugins 1.2.3 +Release notes for GStreamer Base Plugins 1.2.4 The GStreamer team is proud to announce a new bug-fix release @@ -60,20 +60,16 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 603921 : resindvd: DVD menus not working - * 697665 : Add format=WMV3 for WMV 3 video - * 711816 : audiobasesrc: Avoid unnecessary configuration if caps don't change - * 712367 : Prevent the NEON check in configure from passing under aarch64. - * 715138 : xvimagesink 1.2 ignores resize events when used on a QWidget - * 719615 : oggdemux: slow seeking on some ogg files - * 719684 : videodecoder: Allocation query is always at least sent twice - * 720015 : docs: add missing files for distribution - * 720661 : audiobasesink: Fix locking bug accessing ring buffer time - * 721078 : videodecoder: cannot call gst_video_decoder_negotiate without output_state - * 721666 : videodecoder: push newsegment earlier for reverse playback - * 721835 : videodecoder: do not drop events when releasing frames - * 722144 : audiodecoder: do not negotiate caps with rate=1 and channels=1 for gap - * 722656 : videoconvert: scoring system ranks colour loss very low + * 693263 : typefinding: MPEG-2 video ES detected as H.263 + * 683504 : playsink: deadlock when disabling subtitles and suboptimal disabling of subtitles + * 700770 : typefinding: mp3 file mis-detected as h263 video + * 723597 : tagdemux: Seek event in GST_FORMAT_TIME are converted to BYTES to early + * 724633 : oggdemux: ignores last page in push mode + * 724720 : rtspconnection: not possible to disconnect/reconnect read connection in tunneled mode + * 725313 : rtspconnection: closed() callback is never called in tunneled mode + * 725644 : typefinding: mp3 file is misdetected as H.263 + * 726642 : rtspconnection: minor memory leak in error handling + * 727025 : adder: rework the logic to check if eos has to be sent. ==== Download ==== @@ -110,15 +106,13 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Holger Kaelberer + * Eric Trousset * Jan Schmidt - * Julien Isorce + * Mathieu Duponchelle + * Ognyan Tonchev * Sebastian Dröge - * Sebastian Rasmussen - * Stéphane Cerveau * Thiago Santos * Tim-Philipp Müller * Vincent Penquerc'h - * William Grant * Wim Taymans
\ No newline at end of file diff --git a/configure.ac b/configure.ac index dfc170f73..cb29045ff 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file dnl initialize autoconf dnl releases only do -Wall, git and prerelease does -Werror too dnl use a three digit version number for releases, and four for git/prerelease -AC_INIT([GStreamer Base Plug-ins],[1.2.3],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) +AC_INIT([GStreamer Base Plug-ins],[1.2.4],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) AG_GST_INIT @@ -56,7 +56,7 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 203, 0, 203) +AS_LIBTOOL(GST, 204, 0, 204) dnl *** required versions of GStreamer stuff *** GST_REQ=1.2.0 diff --git a/docs/plugins/inspect/plugin-adder.xml b/docs/plugins/inspect/plugin-adder.xml index 5a652ef79..7e8096dfa 100644 --- a/docs/plugins/inspect/plugin-adder.xml +++ b/docs/plugins/inspect/plugin-adder.xml @@ -3,7 +3,7 @@ <description>Adds multiple streams</description> <filename>../../gst/adder/.libs/libgstadder.so</filename> <basename>libgstadder.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-alsa.xml b/docs/plugins/inspect/plugin-alsa.xml index fc3c64a3a..544882660 100644 --- a/docs/plugins/inspect/plugin-alsa.xml +++ b/docs/plugins/inspect/plugin-alsa.xml @@ -3,7 +3,7 @@ <description>ALSA plugin library</description> <filename>../../ext/alsa/.libs/libgstalsa.so</filename> <basename>libgstalsa.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-app.xml b/docs/plugins/inspect/plugin-app.xml index 642ceef66..db881e636 100644 --- a/docs/plugins/inspect/plugin-app.xml +++ b/docs/plugins/inspect/plugin-app.xml @@ -3,7 +3,7 @@ <description>Elements used to communicate with applications</description> <filename>../../gst/app/.libs/libgstapp.so</filename> <basename>libgstapp.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-audioconvert.xml b/docs/plugins/inspect/plugin-audioconvert.xml index 8136b8c32..ecba1ecf7 100644 --- a/docs/plugins/inspect/plugin-audioconvert.xml +++ b/docs/plugins/inspect/plugin-audioconvert.xml @@ -3,7 +3,7 @@ <description>Convert audio to different formats</description> <filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename> <basename>libgstaudioconvert.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-audiorate.xml b/docs/plugins/inspect/plugin-audiorate.xml index 803c8a758..cb6b19df7 100644 --- a/docs/plugins/inspect/plugin-audiorate.xml +++ b/docs/plugins/inspect/plugin-audiorate.xml @@ -3,7 +3,7 @@ <description>Adjusts audio frames</description> <filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename> <basename>libgstaudiorate.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-audioresample.xml b/docs/plugins/inspect/plugin-audioresample.xml index 302a8dbcb..93aee174f 100644 --- a/docs/plugins/inspect/plugin-audioresample.xml +++ b/docs/plugins/inspect/plugin-audioresample.xml @@ -3,7 +3,7 @@ <description>Resamples audio</description> <filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename> <basename>libgstaudioresample.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-audiotestsrc.xml b/docs/plugins/inspect/plugin-audiotestsrc.xml index 50fd55a43..15c382868 100644 --- a/docs/plugins/inspect/plugin-audiotestsrc.xml +++ b/docs/plugins/inspect/plugin-audiotestsrc.xml @@ -3,7 +3,7 @@ <description>Creates audio test signals of given frequency and volume</description> <filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename> <basename>libgstaudiotestsrc.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-cdparanoia.xml b/docs/plugins/inspect/plugin-cdparanoia.xml index 4ff1f81f2..db1839db4 100644 --- a/docs/plugins/inspect/plugin-cdparanoia.xml +++ b/docs/plugins/inspect/plugin-cdparanoia.xml @@ -3,7 +3,7 @@ <description>Read audio from CD in paranoid mode</description> <filename>../../ext/cdparanoia/.libs/libgstcdparanoia.so</filename> <basename>libgstcdparanoia.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-encoding.xml b/docs/plugins/inspect/plugin-encoding.xml index 11211212f..f94c528ba 100644 --- a/docs/plugins/inspect/plugin-encoding.xml +++ b/docs/plugins/inspect/plugin-encoding.xml @@ -3,7 +3,7 @@ <description>various encoding-related elements</description> <filename>../../gst/encoding/.libs/libgstencodebin.so</filename> <basename>libgstencodebin.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-gio.xml b/docs/plugins/inspect/plugin-gio.xml index 03d127b52..455556713 100644 --- a/docs/plugins/inspect/plugin-gio.xml +++ b/docs/plugins/inspect/plugin-gio.xml @@ -3,7 +3,7 @@ <description>GIO elements</description> <filename>../../gst/gio/.libs/libgstgio.so</filename> <basename>libgstgio.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-ivorbisdec.xml b/docs/plugins/inspect/plugin-ivorbisdec.xml index 008c4bb61..bd17dbf76 100644 --- a/docs/plugins/inspect/plugin-ivorbisdec.xml +++ b/docs/plugins/inspect/plugin-ivorbisdec.xml @@ -3,7 +3,7 @@ <description>Vorbis Tremor decoder</description> <filename>../../ext/vorbis/.libs/libgstivorbisdec.so</filename> <basename>libgstivorbisdec.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-libvisual.xml b/docs/plugins/inspect/plugin-libvisual.xml index 580cbcb48..da49f63b5 100644 --- a/docs/plugins/inspect/plugin-libvisual.xml +++ b/docs/plugins/inspect/plugin-libvisual.xml @@ -3,7 +3,7 @@ <description>libvisual visualization plugins</description> <filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename> <basename>libgstlibvisual.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-ogg.xml b/docs/plugins/inspect/plugin-ogg.xml index 5f68aebb8..d3fd0a90f 100644 --- a/docs/plugins/inspect/plugin-ogg.xml +++ b/docs/plugins/inspect/plugin-ogg.xml @@ -3,7 +3,7 @@ <description>ogg stream manipulation (info about ogg: http://xiph.org)</description> <filename>../../ext/ogg/.libs/libgstogg.so</filename> <basename>libgstogg.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-pango.xml b/docs/plugins/inspect/plugin-pango.xml index a24d13f54..45f7fd526 100644 --- a/docs/plugins/inspect/plugin-pango.xml +++ b/docs/plugins/inspect/plugin-pango.xml @@ -3,7 +3,7 @@ <description>Pango-based text rendering and overlay</description> <filename>../../ext/pango/.libs/libgstpango.so</filename> <basename>libgstpango.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-playback.xml b/docs/plugins/inspect/plugin-playback.xml index 6908e0dfc..c8e2e977b 100644 --- a/docs/plugins/inspect/plugin-playback.xml +++ b/docs/plugins/inspect/plugin-playback.xml @@ -3,7 +3,7 @@ <description>various playback elements</description> <filename>../../gst/playback/.libs/libgstplayback.so</filename> <basename>libgstplayback.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-subparse.xml b/docs/plugins/inspect/plugin-subparse.xml index 681e51c60..3b265e97f 100644 --- a/docs/plugins/inspect/plugin-subparse.xml +++ b/docs/plugins/inspect/plugin-subparse.xml @@ -3,7 +3,7 @@ <description>Subtitle parsing</description> <filename>../../gst/subparse/.libs/libgstsubparse.so</filename> <basename>libgstsubparse.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-tcp.xml b/docs/plugins/inspect/plugin-tcp.xml index 58240678d..f991c4146 100644 --- a/docs/plugins/inspect/plugin-tcp.xml +++ b/docs/plugins/inspect/plugin-tcp.xml @@ -3,7 +3,7 @@ <description>transfer data over the network via TCP</description> <filename>../../gst/tcp/.libs/libgsttcp.so</filename> <basename>libgsttcp.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-theora.xml b/docs/plugins/inspect/plugin-theora.xml index afe0524ac..3906e69cc 100644 --- a/docs/plugins/inspect/plugin-theora.xml +++ b/docs/plugins/inspect/plugin-theora.xml @@ -3,7 +3,7 @@ <description>Theora plugin library</description> <filename>../../ext/theora/.libs/libgsttheora.so</filename> <basename>libgsttheora.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-typefindfunctions.xml b/docs/plugins/inspect/plugin-typefindfunctions.xml index d0bd09ab9..3aa3cd183 100644 --- a/docs/plugins/inspect/plugin-typefindfunctions.xml +++ b/docs/plugins/inspect/plugin-typefindfunctions.xml @@ -3,7 +3,7 @@ <description>default typefind functions</description> <filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename> <basename>libgsttypefindfunctions.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-videoconvert.xml b/docs/plugins/inspect/plugin-videoconvert.xml index 4854b6076..bd91f1a99 100644 --- a/docs/plugins/inspect/plugin-videoconvert.xml +++ b/docs/plugins/inspect/plugin-videoconvert.xml @@ -3,7 +3,7 @@ <description>Colorspace conversion</description> <filename>../../gst/videoconvert/.libs/libgstvideoconvert.so</filename> <basename>libgstvideoconvert.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-videorate.xml b/docs/plugins/inspect/plugin-videorate.xml index 8606abada..aee228386 100644 --- a/docs/plugins/inspect/plugin-videorate.xml +++ b/docs/plugins/inspect/plugin-videorate.xml @@ -3,7 +3,7 @@ <description>Adjusts video frames</description> <filename>../../gst/videorate/.libs/libgstvideorate.so</filename> <basename>libgstvideorate.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-videoscale.xml b/docs/plugins/inspect/plugin-videoscale.xml index d34bbb776..35f994c10 100644 --- a/docs/plugins/inspect/plugin-videoscale.xml +++ b/docs/plugins/inspect/plugin-videoscale.xml @@ -3,7 +3,7 @@ <description>Resizes video</description> <filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename> <basename>libgstvideoscale.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-videotestsrc.xml b/docs/plugins/inspect/plugin-videotestsrc.xml index 4aca436fa..f5fa62dbc 100644 --- a/docs/plugins/inspect/plugin-videotestsrc.xml +++ b/docs/plugins/inspect/plugin-videotestsrc.xml @@ -3,7 +3,7 @@ <description>Creates a test video stream</description> <filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename> <basename>libgstvideotestsrc.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-volume.xml b/docs/plugins/inspect/plugin-volume.xml index 2c68283c2..07361c4ec 100644 --- a/docs/plugins/inspect/plugin-volume.xml +++ b/docs/plugins/inspect/plugin-volume.xml @@ -3,7 +3,7 @@ <description>plugin for controlling audio volume</description> <filename>../../gst/volume/.libs/libgstvolume.so</filename> <basename>libgstvolume.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-vorbis.xml b/docs/plugins/inspect/plugin-vorbis.xml index cc1bcca0e..3fc9ef355 100644 --- a/docs/plugins/inspect/plugin-vorbis.xml +++ b/docs/plugins/inspect/plugin-vorbis.xml @@ -3,7 +3,7 @@ <description>Vorbis plugin library</description> <filename>../../ext/vorbis/.libs/libgstvorbis.so</filename> <basename>libgstvorbis.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-ximagesink.xml b/docs/plugins/inspect/plugin-ximagesink.xml index 6af97ab89..818413870 100644 --- a/docs/plugins/inspect/plugin-ximagesink.xml +++ b/docs/plugins/inspect/plugin-ximagesink.xml @@ -3,7 +3,7 @@ <description>X11 video output element based on standard Xlib calls</description> <filename>../../sys/ximage/.libs/libgstximagesink.so</filename> <basename>libgstximagesink.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/docs/plugins/inspect/plugin-xvimagesink.xml b/docs/plugins/inspect/plugin-xvimagesink.xml index 62d6797b4..44bd7bc13 100644 --- a/docs/plugins/inspect/plugin-xvimagesink.xml +++ b/docs/plugins/inspect/plugin-xvimagesink.xml @@ -3,7 +3,7 @@ <description>XFree86 video output plugin using Xv extension</description> <filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename> <basename>libgstxvimagesink.so</basename> - <version>1.2.3</version> + <version>1.2.4</version> <license>LGPL</license> <source>gst-plugins-base</source> <package>GStreamer Base Plug-ins source release</package> diff --git a/gst-plugins-base.doap b/gst-plugins-base.doap index defd6862a..28067bd9f 100644 --- a/gst-plugins-base.doap +++ b/gst-plugins-base.doap @@ -36,6 +36,16 @@ A wide range of video and audio decoders, encoders, and filters are included. <release> <Version> + <revision>1.2.4</revision> + <branch>1.2</branch> + <name></name> + <created>2014-04-18</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.2.4.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.2.3</revision> <branch>1.2</branch> <name></name> diff --git a/win32/common/_stdint.h b/win32/common/_stdint.h index 7c5009431..9edb0184d 100644 --- a/win32/common/_stdint.h +++ b/win32/common/_stdint.h @@ -1,8 +1,8 @@ #ifndef _GST_PLUGINS_BASE__STDINT_H #define _GST_PLUGINS_BASE__STDINT_H 1 #ifndef _GENERATED_STDINT_H -#define _GENERATED_STDINT_H "gst-plugins-base 1.2.3" -/* generated using gnu compiler gcc (Debian 4.8.2-14) 4.8.2 */ +#define _GENERATED_STDINT_H "gst-plugins-base 1.2.4" +/* generated using gnu compiler gcc (Debian 4.9-20140411-2) 4.9.0 20140411 (prerelease) [gcc-4_9-branch revision 209311] */ #define _STDINT_HAVE_STDINT_H 1 #include <stdint.h> #endif diff --git a/win32/common/config.h b/win32/common/config.h index 9720c9956..8a1c7547f 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -84,7 +84,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2014-02-08" +#define GST_PACKAGE_RELEASE_DATETIME "2014-04-18" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -322,7 +322,7 @@ #define PACKAGE_NAME "GStreamer Base Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Base Plug-ins 1.2.3" +#define PACKAGE_STRING "GStreamer Base Plug-ins 1.2.4" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-base" @@ -331,7 +331,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.2.3" +#define PACKAGE_VERSION "1.2.4" /* directory where plugins are located */ #ifdef _DEBUG @@ -365,7 +365,7 @@ #undef USE_TREMOLO /* Version number of package */ -#define VERSION "1.2.3" +#define VERSION "1.2.4" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ |