From eeb8698df6f265debc5fd6da12ed016872080b13 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Wed, 19 Aug 2015 14:05:27 +0300 Subject: Release 1.5.90 --- ChangeLog | 215 ++++++++++++++++++++++++++++- NEWS | 2 +- RELEASE | 31 +++-- configure.ac | 8 +- docs/plugins/inspect/plugin-a52dec.xml | 2 +- docs/plugins/inspect/plugin-amrnb.xml | 4 +- 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 | 2 +- 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-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 +- 22 files changed, 265 insertions(+), 43 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8d5a166a..4f809959 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,220 @@ +=== release 1.5.90 === + +2015-08-19 Sebastian Dröge + + * configure.ac: + releasing 1.5.90 + +2015-08-19 11:33:01 +0300 Sebastian Dröge + + * po/id.po: + * po/sv.po: + po: Update translations + +2015-08-18 02:23:55 -0300 Thiago Santos + + * ext/x264/gstx264enc.c: + x264enc: actually return TRUE from accept-caps handler + The query was handled + +2015-08-16 14:27:44 -0300 Thiago Santos + + * ext/x264/gstx264enc.c: + x264enc: implement accept-caps handling + Implement accept-caps handling without doing caps queries downstream + +2015-08-15 22:15:26 -0300 Thiago Santos + + * ext/amrnb/amrnbenc.c: + * ext/lame/gstlamemp3enc.c: + * ext/twolame/gsttwolamemp2enc.c: + audioencoders: use template subset check for accept-caps + It is faster than doing a query that propagates downstream and + should be enough + Elements: amrnbenc, lamemp3enc, twolamemp2enc + +2015-08-15 11:46:59 -0300 Thiago Santos + + * ext/mpeg2dec/gstmpeg2dec.c: + mpeg2dec: use default pad accept-caps handling + Avoids useless check of downstream caps when handling an + accept-caps query + +2015-08-15 11:46:13 -0300 Thiago Santos + + * ext/a52dec/gsta52dec.c: + * ext/amrnb/amrnbdec.c: + * ext/amrwbdec/amrwbdec.c: + * ext/mad/gstmad.c: + audiodecoders: use default pad accept-caps handling + Avoids useless check of downstream caps when handling an + accept-caps query + Elements: a52dec, amrnbdec, amrwbdec, mad + +2015-08-14 11:14:31 +0200 Edward Hervey + + * tests/check/generic/states.c: + check: Rename states unit test + Makes it easier to differentiate from other modules states unit test + +2015-08-06 10:05:53 +0900 Vineeth TM + + * gst/realmedia/rmdemux.c: + rmdemux: fix assertion error when freeing old tags. + Check if old_tags is present before calling gst_tag_list_unref + https://bugzilla.gnome.org/show_bug.cgi?id=753301 + +2015-07-24 10:08:34 +0900 Vineeth TM + + * gst/asfdemux/gstasfdemux.c: + asfdemux: fix assertion error when codec_data is not present in structure + When discovering a particular asf file, caps structure doesn't have + codec_data, and this was not being checked before using the same, + resulting in assertion error + https://bugzilla.gnome.org/show_bug.cgi?id=752803 + +2015-07-29 15:55:14 +0100 Luis de Bethencourt + + * gst/asfdemux/gstasfdemux.c: + asfdemux: remove unread value + Init value of idx2 is never used. First usage sets it to idx + 1. Removing + initial value. + +2015-07-25 04:55:15 -0400 Olivier Crête + + * gst/asfdemux/gstasfdemux.c: + asfdemux: Don't post error on flushing while reading headers + +2015-07-21 11:13:27 +0100 Tim-Philipp Müller + + * gst/realmedia/rmdemux.c: + rmdemux: mark tag list as global scope + +2015-07-21 11:10:04 +0100 Tim-Philipp Müller + + * gst/realmedia/rmdemux.c: + rmdemux: fix taglist leak + merge doesn't take ownership, so must unref the + old tags if we do merge. + +2015-07-21 12:44:55 +0900 Vineeth TM + + * gst/realmedia/rmdemux.c: + rmdemux: fix wrong unref when there are no tags + Tags should be appended to pending tags and unref'ed only if tags + are present. Else there is no need to append. + https://bugzilla.gnome.org/show_bug.cgi?id=752404 + +2015-07-16 18:11:37 +0900 Vineeth T M + + * gst/realmedia/rmdemux.c: + rmdemux: fix memory leaks during error cases + while adding stream, during error cases, only stream is + being freed. Adapter, pad, tags, subpackets, index are not being + freed resulting in memory leaks + https://bugzilla.gnome.org/show_bug.cgi?id=752404 + +2015-07-16 17:23:15 +0100 Tim-Philipp Müller + + * gst-plugins-ugly.doap: + Update mailing list in doap file as well + +2015-07-16 17:19:37 +0100 Tim-Philipp Müller + + * ext/amrnb/amrnbdec.c: + Update mailing list address from sourceforge to freedesktop + +2015-07-16 09:49:17 +0900 Vineeth T M + + * gst/realmedia/rmdemux.c: + rmdemux: fix tag memory leak + tags is not being freed after being merged to the + pending_tags. + https://bugzilla.gnome.org/show_bug.cgi?id=752404 + +2015-07-03 21:58:33 +0200 Stefan Sauer + + * common: + Automatic update of common submodule + From f74b2df to 9aed1d7 + +2015-06-25 00:04:19 +0200 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.5.2 === -2015-06-24 Sebastian Dröge +2015-06-24 23:39:37 +0200 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.5.2 + * docs/plugins/gst-plugins-ugly-plugins.args: + * 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-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.5.2 + +2015-06-24 23:14:52 +0200 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 2015-06-24 11:15:22 +0200 Sebastian Dröge diff --git a/NEWS b/NEWS index 7db9659b..c1c372fa 100644 --- a/NEWS +++ b/NEWS @@ -1,2 +1,2 @@ -This is GStreamer Ugly Plugins 1.5.2 +This is GStreamer Ugly Plugins 1.5.90 diff --git a/RELEASE b/RELEASE index f972774a..5974b2a2 100644 --- a/RELEASE +++ b/RELEASE @@ -1,17 +1,16 @@ -Release notes for GStreamer Ugly Plugins 1.5.2 +Release notes for GStreamer Ugly Plugins 1.5.90 -The GStreamer team is pleased to announce the first release of the unstable -1.5 release series. The 1.5 release series is adding new features on top of +The GStreamer team is pleased to announce the first release candidate for the +stable 1.6 release series. The 1.6 release series is adding new features on top of the 1.0, 1.2 and 1.4 series and is part of the API and ABI-stable 1.x release -series of the GStreamer multimedia framework. The unstable 1.5 release series -will lead to the stable 1.6 release series in the next weeks, and newly added -API can still change until that point. +series of the GStreamer multimedia framework. The final 1.6.0 release is planned +in the next few days unless any major bugs are found. -Binaries for Android, iOS, Mac OS X and Windows will be provided separately -during the unstable 1.5 release series. +Binaries for Android, iOS, Mac OS X and Windows will be provided separately by +the GStreamer project. @@ -60,9 +59,9 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 711190 : asfdemux: signal 3D video - * 731351 : x264enc: Shift PTS and DTS with bframes - * 750596 : xingmux: FTBFS because of uninitialized variables + * 752404 : realmedia: fix leaks while playing real media files + * 752803 : asfdemux: fix assertion error when codec_data is not present in structure + * 753301 : rmdemux: fix assertion error when freeing tags ==== Download ==== @@ -99,11 +98,13 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Chris Clayton * Edward Hervey - * Jan Schmidt - * Matej Knopp - * Nicolas Dufresne + * Luis de Bethencourt + * Olivier Crête * Sebastian Dröge * Stefan Sauer + * Thiago Santos + * Tim-Philipp Müller + * Vineeth T M + * Vineeth TM   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 698dd17e..668c88d9 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.5.2.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-ugly]) +AC_INIT([GStreamer Ugly Plug-ins],[1.5.90],[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, 502, 0, 502) +AS_LIBTOOL(GST, 590, 0, 590) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.5.2.1 -GSTPB_REQ=1.5.2.1 +GST_REQ=1.5.90 +GSTPB_REQ=1.5.90 dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-a52dec.xml b/docs/plugins/inspect/plugin-a52dec.xml index 69f584ad..b2e16ef4 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.5.2 + 1.5.90 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 70eb5e47..e34ba057 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.5.2 + 1.5.90 unknown gst-plugins-ugly GStreamer Ugly Plug-ins source release @@ -14,7 +14,7 @@ AMR-NB audio decoder Codec/Decoder/Audio Adaptive Multi-Rate Narrow-Band audio decoder - GStreamer maintainers <gstreamer-devel@lists.sourceforge.net> + GStreamer maintainers <gstreamer-devel@lists.freedesktop.org> sink diff --git a/docs/plugins/inspect/plugin-amrwbdec.xml b/docs/plugins/inspect/plugin-amrwbdec.xml index 2cc145c9..b20a12ab 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.5.2 + 1.5.90 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 3c3dd0e7..f3b5b01a 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.5.2 + 1.5.90 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 cc19ff54..f03552e8 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.5.2 + 1.5.90 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 76f0353a..927dada2 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.5.2 + 1.5.90 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvdread.xml b/docs/plugins/inspect/plugin-dvdread.xml index 125821ee..eb30b13b 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.5.2 + 1.5.90 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 781e61a3..c7c58d41 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.5.2 + 1.5.90 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 9ab488e0..3bd84308 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.5.2 + 1.5.90 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 4633ee7e..9aa2cf74 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.5.2 + 1.5.90 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 c34a0b95..e99d0971 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.5.2 + 1.5.90 GPL 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 69405fd2..ff0cfd9c 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.5.2 + 1.5.90 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 4a0d9f61..d976392a 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.5.2 + 1.5.90 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 a2339f8c..c4bef3ed 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.5.2 + 1.5.90 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 e013f0fa..2a2d64fb 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.5.2 + 1.5.90 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 d049a957..26c05f25 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.5.2 + 1.5.90 LGPL gst-plugins-ugly GStreamer Ugly Plug-ins source release diff --git a/gst-plugins-ugly.doap b/gst-plugins-ugly.doap index 91abf77f..6047caa9 100644 --- a/gst-plugins-ugly.doap +++ b/gst-plugins-ugly.doap @@ -33,6 +33,16 @@ might be widely known to present patent problems. + + + 1.5.90 + 1.5 + + 2015-08-19/created> + + + + 1.5.2 diff --git a/win32/common/config.h b/win32/common/config.h index 2a29deb3..fef6cb06 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -64,7 +64,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2015-06-24" +#define GST_PACKAGE_RELEASE_DATETIME "2015-08-19/created>" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -257,7 +257,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.5.2" +#define PACKAGE_STRING "GStreamer Ugly Plug-ins 1.5.90" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-ugly" @@ -266,7 +266,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.5.2" +#define PACKAGE_VERSION "1.5.90" /* directory where plugins are located */ #ifdef _DEBUG @@ -297,7 +297,7 @@ #undef TARGET_CPU /* Version number of package */ -#define VERSION "1.5.2" +#define VERSION "1.5.90" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ -- cgit v1.2.3