+=== release 1.0.7 ===
+
+2013-04-26 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+ * configure.ac:
+ releasing 1.0.7
+
+2013-04-25 16:38:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Try to not push read-only buffers
+ We should only increase the refcount before pushing if we're
+ really going to use the buffer afterwards.
+
+2013-04-22 18:08:43 -0300 Thibault Saunier <thibault.saunier@collabora.com>
+
+ * libs/gst/controller/gsttimedvaluecontrolsource.c:
+ controller: Fix element-type annotations
+
+2012-10-24 11:58:35 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+ * configure.ac:
+ * gst/gstplugin.h:
+ * plugins/elements/Makefile.am:
+ gst: Add better support for static plugins
+ API: GST_PLUGIN_STATIC_DECLARE()
+ API: GST_PLUGIN_STATIC_REGISTER()
+ Based on a patch by Håvard Graff <havard.graff@tandberg.com>.
+ This now allows GST_PLUGIN_DEFINE() to create a static plugin if
+ GST_PLUGIN_BUILD_STATIC is defined. The resulting plugin can be
+ statically linked or dynamically linked during compilation but
+ can't be dynamically loaded during runtime.
+ Also adds GST_PLUGIN_STATIC_DECLARE() and GST_PLUGIN_STATIC_REGISTER(),
+ which allows to register a static linked plugin easily.
+ It is still required to manually register every single statically linked
+ plugin from inside the application as this can't be automated in a portable
+ way.
+ A new configure parameter --enable-static-plugins was added that allows
+ to build all plugins we build here as static plugins.
+ Fixes bug #667305.
+
+2013-03-25 09:16:05 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+ * tests/check/gst/gstcaps.c:
+ caps: Add unit test for GST_CAPS_{ANY,NONE} and GST_STATIC_CAPS_{ANY,NONE}
+ https://bugzilla.gnome.org/show_bug.cgi?id=696435
+
+2013-03-25 09:19:24 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+ * gst/gstcaps.c:
+ caps: Fix gst_static_caps_get(GST_STATIC_CAPS_NONE)
+ https://bugzilla.gnome.org/show_bug.cgi?id=696435
+
+2013-03-21 21:00:54 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Don't send error if negotiate fails because we are flushing
+ Negotiation may be aborted by a flush from another thread that need to
+ stop the task (i.e. seek). Check that case and silently pause the task.
+ https://bugzilla.gnome.org/show_bug.cgi?id=696357
+
+2013-04-12 16:13:15 +0100 Wim Taymans <wim.taymans@collabora.co.uk>
+
+ * gst/gsttaglist.c:
+ taglist: avoid triggering an assertion
+ When deserialization of the structure fails, return a NULL taglist instead of
+ asserting.
+
+2013-04-13 12:00:12 +0100 Tim-Philipp Müller <tim@centricular.net>
+
+ * tools/gst-inspect.c:
+ gst-inspect: only add a '*' for non-'gpointer' pointers
+ Spotted by Jose Antonio Santos Cadena.
+ https://bugzilla.gnome.org/show_bug.cgi?id=697791
+
+2013-04-11 14:54:32 +0200 Jose Antonio Santos Cadenas <santoscadenas@gmail.com>
+
+ * tools/gst-inspect.c:
+ gst-inspect: add pointer mark to signal and action return types that are pointers
+ When the return type of a signal or action is a pointer, it
+ should have an asterisk to mark it as such.
+ https://bugzilla.gnome.org/show_bug.cgi?id=697791
+
+2013-04-09 10:17:45 +0100 Tim-Philipp Müller <tim@centricular.net>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: bind socket before querying local address
+ Fails on windows otherwise.
+ https://bugzilla.gnome.org/show_bug.cgi?id=697608
+
+2013-04-04 16:39:23 +0200 Wim Taymans <wim.taymans@collabora.co.uk>
+
+ * gst/gstbufferpool.c:
+ bufferpool: fix docs
+
+2013-03-30 11:06:59 +0000 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * gst/gstsegment.c:
+ segment: Fix seeking when position is slightly outside the segment
+ Very often, when the end of a segment is detected by demuxer, the position
+ is slightly outside the segment boundaries. Currently, if that is the case
+ the base will be set to NONE instead of normal accumulation. This would
+ break non-flushing seeks in oggdemux and most likely other demuxers.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=696899
+
=== release 1.0.6 ===
-2013-03-22 Tim-Philipp Müller <tim@centricular.net>
+2013-03-22 12:33:48 +0000 Tim-Philipp Müller <tim@centricular.net>
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
* configure.ac:
- releasing 1.0.6
+ * docs/plugins/inspect/plugin-coreelements.xml:
+ * gstreamer.doap:
+ * win32/common/config.h:
+ * win32/common/gstversion.h:
+ Release 1.0.6
2013-03-22 09:53:58 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
-This is GStreamer 1.0.6
+This is GStreamer 1.0.7
+
+Changes since 1.0.6:
+
+ * Add better support for static plugins
+
+Bugs fixed since 1.0.6:
+
+ * 667305 : build: Add --enable-static-plugins configure argument
+ * 696357 : Basesrc may send not-neg error when flushed
+ * 696435 : gst_static_caps_get(GST_STATIC_CAPS_NONE) doesn't work properly
+ * 697791 : gst-inspect: shows action signal return pointers as pointers
Changes since 1.0.5:
-Release notes for GStreamer 1.0.6
+Release notes for GStreamer 1.0.7
The GStreamer team is proud to announce a new bug-fix release
Features of this release
- * bin: reset GValue from iterator after usage, fixing leak
- * pipeline: fix seeking on pipeline with NULL clock
- * message: accept NULL error argument in gst_message_parse_{error,warning,info}
- * basesrc: handle renegotiation correctly
- * basesink: handle sync of EOS after item without duration
- * basetransform: avoid warnings from NULL outcaps passed to transform_size in shutdown race
- * adapter, basesrc, typefind: handle gst_buffer_map failure
- * queuearray: fix gst_queue_array_drop_element()
- * queuearray: fix gst_queue_array_find()
- * queue: remove query from queue if queue is flushing
- * g-i: make sure enumeration types and flags are introspected and available to bindings
- * g-i: add allow-none annotation for gst_pipeline_new()'s name property
+ * Add better support for static plugins
Bugs fixed in this release
- * 684804 : basesink: fails to post EOS message with RTSP stream
- * 691185 : g-i: GStreamer enums and flags not usable - " expected enumeration type GstFormat, but got Format instead " warning when setting GstFormat property on GStreamer appsrc element
- * 691985 : gst_pad_check_reconfigure: only remove flag if set.
- * 691986 : basesrc: set NEED_RECONFIGURE flag if negotiate fails
- * 692691 : queue: dangling pointer when doing allocation query on a flushing queue
- * 692868 : basesink: expands GAP event without duration to last to segment end
- * 693065 : pipeline: criticals when seeking on pipeline with NULL clock
- * 693587 : Adding offset to GstSegment deserialize/serialize to fix jump on uninitialized value
- * 693704 : gst_message_parse_{warning,error} annotations wrongly claim allow-none for GError parameter
- * 693996 : basetransform: audioresample shutdown unit test fails with 'gst_audio_info_from_caps: caps != NULL' in transform_size
+ * 667305 : build: Add --enable-static-plugins configure argument
+ * 696357 : Basesrc may send not-neg error when flushed
+ * 696435 : gst_static_caps_get(GST_STATIC_CAPS_NONE) doesn't work properly
+ * 697791 : gst-inspect: shows action signal return pointers as pointers
==== Download ====
Contributors to this release
- * Alexander Schrab
- * Nate Bogdanowicz
- * Niv Sardi
- * Simon Feltman
- * Stefan Sauer
- * Tim 'mithro' Ansell
+ * Jose Antonio Santos Cadenas
+ * Nicolas Dufresne
+ * Sebastian Dröge
+ * Thibault Saunier
* Tim-Philipp Müller
* Wim Taymans
-
\ No newline at end of file
+
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, git and prerelease does Werror too
dnl
-AC_INIT(GStreamer, 1.0.6,
+AC_INIT(GStreamer, 1.0.7,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer)
AG_GST_INIT
</GitRepository>
</repository>
+ <release>
+ <Version>
+ <revision>1.0.7</revision>
+ <branch>1.0</branch>
+ <name></name>
+ <created>2013-04-26</created>
+ <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.0.7.tar.xz" />
+ </Version>
+ </release>
+
<release>
<Version>
<revision>1.0.6</revision>
msgstr ""
"Project-Id-Version: gstreamer 0.9.7\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2005-12-05 11:45+0200\n"
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
"Language-Team: Afrikaans <i18n@af.org.za>\n"
msgstr ""
"Project-Id-Version: gstreamer-0.8.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.9.7\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2006-01-18 22:26+0200\n"
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
"Language-Team: Belarusian <i18n@mova.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-04-26 22:40+0300\n"
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-11-04 19:41+0100\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-12-01 08:17+0100\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-11-06 22:52+0100\n"
"Last-Translator: Mogens Jaeger <mogensjaeger@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-11-28 19:22+0100\n"
"Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer-0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-11-29 11:14+0200\n"
"Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
"Language-Team: Greek <team@lists.gnome.gr>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.8.1\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
"Language-Team: English (British) <en_gb@li.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-06-04 21:11+0100\n"
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-10-02 15:45+0200\n"
"Last-Translator: Jorge González González <aloriel@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n"
msgstr ""
"Project-Id-Version: gstreamer-0.10.26.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-03-25 13:10+0100\n"
"Last-Translator: Mikel Olasagasti Uranga <hey_neken@mundurat.net>\n"
"Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-11-17 23:10+0200\n"
"Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-12-05 19:31+0100\n"
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
"Language-Team: French <traduc@traduc.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-12-15 03:29+0200\n"
"Last-Translator: Fran Dieguez <frandieguez@ubuntu.com>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-05-25 16:47+0200\n"
"Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-11-29 14:03+0100\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-01-28 11:44+0700\n"
"Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n"
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-10-25 10:03+0200\n"
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.20.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2008-10-16 19:57+0900\n"
"Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n"
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.29.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-07-16 00:50+0300\n"
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-10-24 21:36+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-11-29 22:42+0100\n"
"Last-Translator: Freek de Kruijf <f.de.kruijf@gmail.com>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-11-28 19:15+0100\n"
"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer-0.10.31.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-01-08 01:36-0300\n"
"Last-Translator: Fabrício Godoy <skarllot@gmail.com>\n"
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.29.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-08-16 01:10+0300\n"
"Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer-1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-12-01 13:36+0400\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <gnu@mx.ru>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.8.8\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.30.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-11-08 16:13+0100\n"
"Last-Translator: Peter Tuhársky <tuharsky@misbb.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
msgstr ""
"Project-Id-Version: gstreamer-1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2013-01-05 10:16+0100\n"
"Last-Translator: Klemen Košir <klemen913@gmail.com>\n"
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.8.4\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2004-08-07 23:46+0200\n"
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
"Language-Team: Albanian <begraj@hotmail.com>\n"
msgstr ""
"Project-Id-Version: gstreamer-0.10.32.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-12-05 10:40+0200\n"
"Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
"Language-Team: Serbian <gnu@prevod.org>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.31.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2011-01-09 19:46+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.8.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-11-28 20:11+0200\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer-1.0.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2012-12-02 08:10+0700\n"
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.10.25.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2010-02-02 18:58+0800\n"
"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
msgstr ""
"Project-Id-Version: gstreamer 0.8.8\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2013-03-22 09:49+0000\n"
+"POT-Creation-Date: 2013-04-26 12:08+0200\n"
"PO-Revision-Date: 2005-04-27 14:55+0800\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
#define GST_PACKAGE_ORIGIN "Unknown package origin"
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
-#define GST_PACKAGE_RELEASE_DATETIME "2013-03-22"
+#define GST_PACKAGE_RELEASE_DATETIME "2013-04-26"
+
+/* Define if static plugins should be built */
+#undef GST_PLUGIN_BUILD_STATIC
/* location of the installed gst-plugin-scanner */
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "GStreamer 1.0.6"
+#define PACKAGE_STRING "GStreamer 1.0.7"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
#undef PACKAGE_URL
/* Define to the version of this package. */
-#define PACKAGE_VERSION "1.0.6"
+#define PACKAGE_VERSION "1.0.7"
/* directory where plugins are located */
#ifdef _DEBUG
#undef USE_POISONING
/* Version number of package */
-#define VERSION "1.0.6"
+#define VERSION "1.0.7"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
*
* The micro version of GStreamer at compile time:
*/
-#define GST_VERSION_MICRO (6)
+#define GST_VERSION_MICRO (7)
/**
* GST_VERSION_NANO:
*