From 9f9dc3f0a01d06ea23c7b5512e157202c6f05455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 1 Sep 2016 12:28:45 +0300 Subject: [PATCH] Release 1.9.2 --- ChangeLog | 273 +++++++++++++++++- NEWS | 2 +- RELEASE | 30 +- configure.ac | 8 +- .../gst-plugins-ugly-plugins.hierarchy | 2 +- docs/plugins/inspect/plugin-a52dec.xml | 2 +- docs/plugins/inspect/plugin-amrnb.xml | 2 +- docs/plugins/inspect/plugin-amrwbdec.xml | 2 +- docs/plugins/inspect/plugin-asf.xml | 2 +- docs/plugins/inspect/plugin-cdio.xml | 2 +- docs/plugins/inspect/plugin-dvdlpcmdec.xml | 4 +- docs/plugins/inspect/plugin-dvdread.xml | 2 +- docs/plugins/inspect/plugin-dvdsub.xml | 2 +- docs/plugins/inspect/plugin-lame.xml | 2 +- docs/plugins/inspect/plugin-mad.xml | 2 +- docs/plugins/inspect/plugin-mpeg2dec.xml | 2 +- docs/plugins/inspect/plugin-mpg123.xml | 2 +- docs/plugins/inspect/plugin-realmedia.xml | 2 +- docs/plugins/inspect/plugin-siddec.xml | 2 +- docs/plugins/inspect/plugin-twolame.xml | 2 +- docs/plugins/inspect/plugin-x264.xml | 2 +- docs/plugins/inspect/plugin-xingmux.xml | 2 +- gst-plugins-ugly.doap | 10 + win32/common/config.h | 8 +- 24 files changed, 317 insertions(+), 52 deletions(-) diff --git a/ChangeLog b/ChangeLog index c58b67f9d2..e0d081878c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,268 @@ -=== release 1.9.1 === +=== release 1.9.2 === -2016-07-06 Sebastian Dröge +2016-09-01 Sebastian Dröge * configure.ac: - releasing 1.9.1 + releasing 1.9.2 + +2016-09-01 11:24:13 +0300 Sebastian Dröge + + * 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/ms.po: + * po/mt.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: + po: Update translations + +2016-09-01 10:57:46 +0300 Sebastian Dröge + + * ext/sidplay/gstsiddec.cc: + siddec: Fix compilation with debugging disabled + gstsiddec.o + gstsiddec.cc: In function ‘void play_loop(GstPad*)’: + gstsiddec.cc:446:18: error: unused variable ‘reason’ [-Werror=unused-variable] + const gchar *reason = gst_flow_get_name (ret); + ^ + +2016-08-19 11:11:14 -0700 Thibault Saunier + + * ext/sidplay/gstsiddec.cc: + * gst/asfdemux/gstasfdemux.c: + * gst/realmedia/rmdemux.c: + Use the new API to post flow ERROR messages on the bus + https://bugzilla.gnome.org/show_bug.cgi?id=770158 + +2016-08-24 09:45:05 -0300 Thibault Saunier + + * gst/asfdemux/meson.build: + meson: Link asfdemux against the gstsdp library + +2016-08-23 15:29:10 -0300 Thibault Saunier + + * meson.build: + meson: Add support for fallback subprojects + +2016-08-12 21:25:34 +0530 Nirbheek Chauhan + + * .gitignore: + * config.h.meson: + * ext/a52dec/meson.build: + * ext/amrnb/meson.build: + * ext/amrwbdec/meson.build: + * ext/cdio/meson.build: + * ext/dvdread/meson.build: + * ext/lame/meson.build: + * ext/mad/meson.build: + * ext/meson.build: + * ext/mpeg2dec/meson.build: + * ext/mpg123/meson.build: + * ext/twolame/meson.build: + * ext/x264/meson.build: + * gst/asfdemux/meson.build: + * gst/dvdlpcmdec/meson.build: + * gst/dvdsub/meson.build: + * gst/meson.build: + * gst/realmedia/meson.build: + * gst/xingmux/meson.build: + * meson.build: + Add support for Meson as alternative/parallel build system + https://github.com/mesonbuild/meson + With contributions from: + Tim-Philipp Müller + Jussi Pakkanen (original port) + Highlights of the features provided are: + * Faster builds on Linux (~40-50% faster) + * The ability to build with MSVC on Windows + * Generate Visual Studio project files + * Generate XCode project files + * Much faster builds on Windows (on-par with Linux) + * Seriously fast configure and building on embedded + ... and many more. For more details see: + http://blog.nirbheek.in/2016/05/gstreamer-and-meson-new-hope.html + http://blog.nirbheek.in/2016/07/building-and-developing-gstreamer-using.html + Building with Meson should work on both Linux and Windows, but may + need a few more tweaks on other operating systems. + +2016-08-12 21:41:39 +0530 Nirbheek Chauhan + + * ext/a52dec/gsta52dec.c: + * ext/dvdread/dvdreadsrc.c: + * ext/x264/gstx264enc.h: + * gst/realmedia/realhash.c: + * gst/realmedia/rtspreal.c: + plugins: Use instead of _stdint.h + _stdint.h is generated by Autotools and we don't really need it. All + supported platforms now ship with stdint.h. The only stickler was MSVC, + and since Visual Studio 2015 it also ships stdint.h now. + +2016-08-19 13:01:39 +0100 Tim-Philipp Müller + + * ext/mpeg2dec/perftest.c: + mpeg2dec: remove file no longer used or needed + +2016-08-08 09:58:20 +0100 Tim-Philipp Müller + + * gst/dvdlpcmdec/Makefile.am: + dvdlpcmdec: add libgstbase CFLAGS as well + For consistency. + https://bugzilla.gnome.org/show_bug.cgi?id=769610 + +2016-08-07 00:10:24 +0000 xlazom00 + + * gst/dvdlpcmdec/Makefile.am: + dvdlpcmdec: link libgstbase-1.0 + https://bugzilla.gnome.org/show_bug.cgi?id=769610 + +2016-08-02 13:38:25 +0200 Carlos Rafael Giani + + * gst/asfdemux/gstasfdemux.c: + asfdemux: Add byte rate based bitrate tag in case there are no audio props + https://bugzilla.gnome.org/show_bug.cgi?id=769418 + +2016-04-28 16:42:43 +0200 Michael Olbrich + + * gst/dvdlpcmdec/gstdvdlpcmdec.c: + * gst/dvdlpcmdec/gstdvdlpcmdec.h: + dvdlpcmdec: add support for another format + The format specification can be found here: + http://www.dvdforum.org/images/Guideline1394V10R0_20020911.pdf + Note: This format is also used for Wifi-Display. + https://bugzilla.gnome.org/show_bug.cgi?id=765807 + +2016-04-28 16:32:53 +0200 Michael Olbrich + + * gst/dvdlpcmdec/gstdvdlpcmdec.c: + * gst/dvdlpcmdec/gstdvdlpcmdec.h: + dvdlpcmdec: rewrite to use GstAudioDecoder + https://bugzilla.gnome.org/show_bug.cgi?id=765807 + +2016-07-24 10:00:48 +0200 Josep Torra + + * ext/sidplay/gstsiddec.cc: + sidplay: fix compiler warnings when building with -O3 + Avoid compiler warnings "‘foo’ may be used uninitialized in this + function" when building with -O3 by checking the return bool value + of format conversion function. + https://bugzilla.gnome.org/show_bug.cgi?id=769116 + +2016-07-11 21:14:06 +0200 Stefan Sauer + + * common: + Automatic update of common submodule + From f363b32 to f49c55e + +2016-07-06 13:51:09 +0300 Sebastian Dröge + + * configure.ac: + Back to development + +=== release 1.9.1 === + +2016-07-06 13:15:28 +0300 Sebastian Dröge + + * ChangeLog: + * NEWS: + * RELEASE: + * configure.ac: + * docs/plugins/inspect/plugin-a52dec.xml: + * docs/plugins/inspect/plugin-amrnb.xml: + * docs/plugins/inspect/plugin-amrwbdec.xml: + * docs/plugins/inspect/plugin-asf.xml: + * docs/plugins/inspect/plugin-cdio.xml: + * docs/plugins/inspect/plugin-dvdlpcmdec.xml: + * docs/plugins/inspect/plugin-dvdread.xml: + * docs/plugins/inspect/plugin-dvdsub.xml: + * docs/plugins/inspect/plugin-lame.xml: + * docs/plugins/inspect/plugin-mad.xml: + * docs/plugins/inspect/plugin-mpeg2dec.xml: + * docs/plugins/inspect/plugin-mpg123.xml: + * docs/plugins/inspect/plugin-realmedia.xml: + * docs/plugins/inspect/plugin-siddec.xml: + * docs/plugins/inspect/plugin-twolame.xml: + * docs/plugins/inspect/plugin-x264.xml: + * docs/plugins/inspect/plugin-xingmux.xml: + * gst-plugins-ugly.doap: + * win32/common/config.h: + Release 1.9.1 + +2016-07-06 11:54:01 +0300 Sebastian Dröge + + * 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/ms.po: + * po/mt.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 2016-07-06 10:19:44 +0300 Sebastian Dröge @@ -531,7 +790,6 @@ * docs/plugins/inspect/plugin-twolame.xml: * docs/plugins/inspect/plugin-x264.xml: * docs/plugins/inspect/plugin-xingmux.xml: - * docs/plugins/xml/plugin-mpg123.xml: docs: update inspection to git and fix mpg123 inspect location 2016-02-16 12:23:33 +0000 Tim-Philipp Müller @@ -6835,8 +7093,6 @@ * docs/plugins/gst-plugins-ugly-plugins-docs.sgml: * docs/plugins/gst-plugins-ugly-plugins-sections.txt: * ext/twolame/Makefile.am: - * ext/twolame/gsttwolame.c: - * ext/twolame/gsttwolame.h: * ext/twolame/gsttwolamemp2enc.c: * ext/twolame/gsttwolamemp2enc.h: * po/POTFILES.in: @@ -7363,10 +7619,7 @@ * gst/mpegaudioparse/Makefile.am: * gst/mpegaudioparse/gstmpegaudioparse.c: * gst/mpegaudioparse/gstmpegaudioparse.h: - * gst/mpegaudioparse/gstxingmux.c: - * gst/mpegaudioparse/gstxingmux.h: * gst/mpegaudioparse/mpegaudioparse.vcproj: - * gst/mpegaudioparse/plugin.c: * gst/xingmux/Makefile.am: * gst/xingmux/gstxingmux.c: * gst/xingmux/gstxingmux.h: @@ -20380,9 +20633,7 @@ 2005-12-01 19:14:57 +0000 Thomas Vander Stichele * ChangeLog: - * LICENSE: * NEWS: - * PORTED_09: * RELEASE: * common: * configure.ac: diff --git a/NEWS b/NEWS index 4c3baabdc2..027c01804e 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -This is GStreamer 1.9.1 +This is GStreamer 1.9.2 diff --git a/RELEASE b/RELEASE index 4c1f8431c7..b7a51e2e09 100644 --- a/RELEASE +++ b/RELEASE @@ -1,12 +1,13 @@ -Release notes for GStreamer Ugly Plugins 1.9.1 +Release notes for GStreamer Ugly Plugins 1.9.2 -The GStreamer team is pleased to announce the first release of the unstable -1.9 release series. The 1.9 release series is adding new features on top of -the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and ABI-stable 1.x release -series of the GStreamer multimedia framework. The unstable 1.9 release series -will lead to the stable 1.10 release series in the next weeks. Any newly added -API can still change until that point. +The GStreamer team is pleased to announce the second release of the unstable +1.9 release series, which marks the feature freeze for 1.10. The 1.9 release +series is adding new features on top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series +and is part of the API and ABI-stable 1.x release series of the GStreamer +multimedia framework. The unstable 1.9 release series will lead to the stable +1.10 release series in the next weeks. Any newly added API can still change +until that point. Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. @@ -57,7 +58,8 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 763082 : ugly plugins: use new gst_element_class_add_static_pad_template() + * 769418 : asfdemux: Add byte rate based bitrate tag in case there are no audio props + * 769610 : dvdlpcmdec: can't build package from git master, need to link to libgstbase-1.0 ==== Download ==== @@ -94,11 +96,13 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Guillaume Desmottes - * Julien Isorce - * Nicolas Dufresne + * Carlos Rafael Giani + * Josep Torra + * Michael Olbrich + * Nirbheek Chauhan * Sebastian Dröge + * Stefan Sauer + * Thibault Saunier * Tim-Philipp Müller - * Vineeth TM - * Vootele Vesterblom + * xlazom00   \ No newline at end of file diff --git a/configure.ac b/configure.ac index d2e2ffa533..3202be037b 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, cvs and prerelease does -Werror too dnl use a three digit version number for releases, and four for cvs/prerelease -AC_INIT([GStreamer Ugly Plug-ins],[1.9.1.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-ugly]) +AC_INIT([GStreamer Ugly Plug-ins],[1.9.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-ugly]) AG_GST_INIT @@ -42,11 +42,11 @@ AC_SUBST(GST_API_VERSION) AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION", [GStreamer API Version]) -AS_LIBTOOL(GST, 901, 0, 901) +AS_LIBTOOL(GST, 902, 0, 902) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.9.1.1 -GSTPB_REQ=1.9.1.1 +GST_REQ=1.9.2 +GSTPB_REQ=1.9.2 dnl *** autotools stuff **** diff --git a/docs/plugins/gst-plugins-ugly-plugins.hierarchy b/docs/plugins/gst-plugins-ugly-plugins.hierarchy index 0d41043e6b..99bab3cf20 100644 --- a/docs/plugins/gst-plugins-ugly-plugins.hierarchy +++ b/docs/plugins/gst-plugins-ugly-plugins.hierarchy @@ -13,6 +13,7 @@ GObject GstA52Dec GstAmrnbDec GstAmrwbDec + GstDvdLpcmDec GstMad GstMpg123AudioDec GstAudioEncoder @@ -27,7 +28,6 @@ GObject GstPNMSrc GstBin GstPipeline - GstDvdLpcmDec GstDvdSubDec GstDvdSubParse GstRDTDepay diff --git a/docs/plugins/inspect/plugin-a52dec.xml b/docs/plugins/inspect/plugin-a52dec.xml index 229df62884..2e095472fb 100644 --- a/docs/plugins/inspect/plugin-a52dec.xml +++ b/docs/plugins/inspect/plugin-a52dec.xml @@ -3,7 +3,7 @@ Decodes ATSC A/52 encoded audio streams ../../ext/a52dec/.libs/libgsta52dec.so libgsta52dec.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-amrnb.xml b/docs/plugins/inspect/plugin-amrnb.xml index 6676a1da0d..424dd6d8d4 100644 --- a/docs/plugins/inspect/plugin-amrnb.xml +++ b/docs/plugins/inspect/plugin-amrnb.xml @@ -3,7 +3,7 @@ Adaptive Multi-Rate Narrow-Band ../../ext/amrnb/.libs/libgstamrnb.so libgstamrnb.so - 1.9.1 + 1.9.2 unknown gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-amrwbdec.xml b/docs/plugins/inspect/plugin-amrwbdec.xml index b6aafa1773..781a9240c2 100644 --- a/docs/plugins/inspect/plugin-amrwbdec.xml +++ b/docs/plugins/inspect/plugin-amrwbdec.xml @@ -3,7 +3,7 @@ Adaptive Multi-Rate Wide-Band Decoder ../../ext/amrwbdec/.libs/libgstamrwbdec.so libgstamrwbdec.so - 1.9.1 + 1.9.2 unknown gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-asf.xml b/docs/plugins/inspect/plugin-asf.xml index ef4a4d1e7d..4b53e178f9 100644 --- a/docs/plugins/inspect/plugin-asf.xml +++ b/docs/plugins/inspect/plugin-asf.xml @@ -3,7 +3,7 @@ Demuxes and muxes audio and video in Microsofts ASF format ../../gst/asfdemux/.libs/libgstasf.so libgstasf.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cdio.xml b/docs/plugins/inspect/plugin-cdio.xml index a0d24cf88a..ca55d2c74e 100644 --- a/docs/plugins/inspect/plugin-cdio.xml +++ b/docs/plugins/inspect/plugin-cdio.xml @@ -3,7 +3,7 @@ Read audio from audio CDs ../../ext/cdio/.libs/libgstcdio.so libgstcdio.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvdlpcmdec.xml b/docs/plugins/inspect/plugin-dvdlpcmdec.xml index aa29bb66c8..38a8f79b19 100644 --- a/docs/plugins/inspect/plugin-dvdlpcmdec.xml +++ b/docs/plugins/inspect/plugin-dvdlpcmdec.xml @@ -3,7 +3,7 @@ Decode DVD LPCM frames into standard PCM ../../gst/dvdlpcmdec/.libs/libgstdvdlpcmdec.so libgstdvdlpcmdec.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release @@ -20,7 +20,7 @@ sink sink always -
audio/x-private1-lpcm; audio/x-lpcm, width=(int){ 16, 20, 24 }, rate=(int){ 32000, 44100, 48000, 96000 }, channels=(int)[ 1, 8 ], dynamic_range=(int)[ 0, 255 ], emphasis=(boolean){ true, false }, mute=(boolean){ true, false }
+
audio/x-private1-lpcm; audio/x-private2-lpcm; audio/x-lpcm, width=(int){ 16, 20, 24 }, rate=(int){ 32000, 44100, 48000, 96000 }, channels=(int)[ 1, 8 ], dynamic_range=(int)[ 0, 255 ], emphasis=(boolean){ true, false }, mute=(boolean){ true, false }
src diff --git a/docs/plugins/inspect/plugin-dvdread.xml b/docs/plugins/inspect/plugin-dvdread.xml index 9ca773ee7b..0f0f35ed77 100644 --- a/docs/plugins/inspect/plugin-dvdread.xml +++ b/docs/plugins/inspect/plugin-dvdread.xml @@ -3,7 +3,7 @@ Access a DVD with dvdread ../../ext/dvdread/.libs/libgstdvdread.so libgstdvdread.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvdsub.xml b/docs/plugins/inspect/plugin-dvdsub.xml index ecd6e03097..300fc7dde9 100644 --- a/docs/plugins/inspect/plugin-dvdsub.xml +++ b/docs/plugins/inspect/plugin-dvdsub.xml @@ -3,7 +3,7 @@ DVD subtitle parser and decoder ../../gst/dvdsub/.libs/libgstdvdsub.so libgstdvdsub.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-lame.xml b/docs/plugins/inspect/plugin-lame.xml index a320b7b04e..975af158e2 100644 --- a/docs/plugins/inspect/plugin-lame.xml +++ b/docs/plugins/inspect/plugin-lame.xml @@ -3,7 +3,7 @@ Encode MP3s with LAME ../../ext/lame/.libs/libgstlame.so libgstlame.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mad.xml b/docs/plugins/inspect/plugin-mad.xml index 98344e45e8..f9e762faec 100644 --- a/docs/plugins/inspect/plugin-mad.xml +++ b/docs/plugins/inspect/plugin-mad.xml @@ -3,7 +3,7 @@ mp3 decoding based on the mad library ../../ext/mad/.libs/libgstmad.so libgstmad.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpeg2dec.xml b/docs/plugins/inspect/plugin-mpeg2dec.xml index 224f1e638d..926f2e188d 100644 --- a/docs/plugins/inspect/plugin-mpeg2dec.xml +++ b/docs/plugins/inspect/plugin-mpeg2dec.xml @@ -3,7 +3,7 @@ LibMpeg2 decoder ../../ext/mpeg2dec/.libs/libgstmpeg2dec.so libgstmpeg2dec.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpg123.xml b/docs/plugins/inspect/plugin-mpg123.xml index 32f4f1dc3c..6f7582f9a8 100644 --- a/docs/plugins/inspect/plugin-mpg123.xml +++ b/docs/plugins/inspect/plugin-mpg123.xml @@ -3,7 +3,7 @@ mp3 decoding based on the mpg123 library ../../ext/mpg123/.libs/libgstmpg123.so libgstmpg123.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-realmedia.xml b/docs/plugins/inspect/plugin-realmedia.xml index 4428701f86..c6846ab3c9 100644 --- a/docs/plugins/inspect/plugin-realmedia.xml +++ b/docs/plugins/inspect/plugin-realmedia.xml @@ -3,7 +3,7 @@ RealMedia support plugins ../../gst/realmedia/.libs/libgstrmdemux.so libgstrmdemux.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-siddec.xml b/docs/plugins/inspect/plugin-siddec.xml index 02078cf90f..26108db1db 100644 --- a/docs/plugins/inspect/plugin-siddec.xml +++ b/docs/plugins/inspect/plugin-siddec.xml @@ -3,7 +3,7 @@ Uses libsidplay to decode .sid files ../../ext/sidplay/.libs/libgstsid.so libgstsid.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-twolame.xml b/docs/plugins/inspect/plugin-twolame.xml index 3368b9ddd7..c445857577 100644 --- a/docs/plugins/inspect/plugin-twolame.xml +++ b/docs/plugins/inspect/plugin-twolame.xml @@ -3,7 +3,7 @@ Encode MP2s with TwoLAME ../../ext/twolame/.libs/libgsttwolame.so libgsttwolame.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-x264.xml b/docs/plugins/inspect/plugin-x264.xml index 50989de695..f2310db587 100644 --- a/docs/plugins/inspect/plugin-x264.xml +++ b/docs/plugins/inspect/plugin-x264.xml @@ -3,7 +3,7 @@ libx264-based H264 plugins ../../ext/x264/.libs/libgstx264.so libgstx264.so - 1.9.1 + 1.9.2 GPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-xingmux.xml b/docs/plugins/inspect/plugin-xingmux.xml index 79cbb3ab43..8fde40f839 100644 --- a/docs/plugins/inspect/plugin-xingmux.xml +++ b/docs/plugins/inspect/plugin-xingmux.xml @@ -3,7 +3,7 @@ Add XING tags to mpeg audio files ../../gst/xingmux/.libs/libgstxingmux.so libgstxingmux.so - 1.9.1 + 1.9.2 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/gst-plugins-ugly.doap b/gst-plugins-ugly.doap index 0d67f36f1f..7545e88ffb 100644 --- a/gst-plugins-ugly.doap +++ b/gst-plugins-ugly.doap @@ -33,6 +33,16 @@ might be widely known to present patent problems. + + + 1.9.2 + master + + 2016-09-01 + + + + 1.9.1 diff --git a/win32/common/config.h b/win32/common/config.h index f744d00b4f..7cf795e26a 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -67,7 +67,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2016-06-06" +#define GST_PACKAGE_RELEASE_DATETIME "2016-09-01" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -256,7 +256,7 @@ #define PACKAGE_NAME "GStreamer Ugly Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Ugly Plug-ins 1.9.1" +#define PACKAGE_STRING "GStreamer Ugly Plug-ins 1.9.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-ugly" @@ -265,7 +265,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.9.1" +#define PACKAGE_VERSION "1.9.2" /* directory where plugins are located */ #ifdef _DEBUG @@ -296,7 +296,7 @@ #undef TARGET_CPU /* Version number of package */ -#define VERSION "1.9.1" +#define VERSION "1.9.2" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */