From 43bac0c2d9e31b6a02384312b4ab105748545d39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 19 Aug 2015 14:15:23 +0300 Subject: [PATCH] Release 1.5.90 --- ChangeLog | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++-- NEWS | 2 +- RELEASE | 29 ++++++++-------- configure.ac | 12 +++---- gst-rtsp-server.doap | 10 ++++++ 5 files changed, 126 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9ec0b11..c0bc218 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,102 @@ +=== release 1.5.90 === + +2015-08-19 Sebastian Dröge + + * configure.ac: + releasing 1.5.90 + +2015-08-12 14:33:44 +0900 Hyunjun Ko + + * gst/rtsp-server/rtsp-media-factory.c: + media-factory: get port number through gst_rtsp_url_get_port + https://bugzilla.gnome.org/show_bug.cgi?id=753473 + +2015-08-13 11:24:10 +0200 Francisco Velazquez + + * tests/check/gst/media.c: + media-test: Removing unnecessary assertion + https://bugzilla.gnome.org/show_bug.cgi?id=753385 + +2015-07-23 14:50:30 -0400 Xavier Claessens + + * gst/rtsp-server/rtsp-server.c: + Document that source keeps a ref on server until it's destroyed + https://bugzilla.gnome.org/show_bug.cgi?id=749227 + +2015-08-08 11:09:57 -0400 Nicolas Dufresne + + * tests/check/gst/media.c: + media-test: Test for multiple dynamic payload + https://bugzilla.gnome.org/show_bug.cgi?id=753385 + +2015-08-08 09:40:09 -0400 Nicolas Dufresne + + * gst/rtsp-server/rtsp-media.c: + media: Only add fakesink once per pipeline + The intention is to prevent going PLAYING state before pads are created. + If there was mutilple dynamic payload, it would leak few fakesink and + actually prevent from ever reaching playing state. + https://bugzilla.gnome.org/show_bug.cgi?id=753385 + +2015-08-08 09:08:37 -0400 Nicolas Dufresne + + * gst/rtsp-server/rtsp-media.c: + Revert "rtsp-media: Only add 1 fakesink per pipeline" + This reverts commit 22bf61f16c1210bb458fc3f53642179a0211104f. + +2015-08-07 09:21:36 -0400 Nicolas Dufresne + + * gst/rtsp-server/rtsp-media.c: + rtsp-media: Only add 1 fakesink per pipeline + There should be only one fakesink per pipeline, not per dynpay. This + would lead to element naming clash. + +2015-07-30 15:32:43 +0900 Vineeth TM + + * gst/rtsp-server/rtsp-media.c: + rtsp-media: assertion error due to wrong condition check + In media to caps function, reserved_keys array is being used for variable i, + leading to GLib-CRITICAL **: g_ascii_strcasecmp: assertion 's1 != NULL' failed + changed it to variable j + https://bugzilla.gnome.org/show_bug.cgi?id=753009 + +2015-07-29 11:27:05 +0100 Sebastian Dröge + + * gst/rtsp-server/rtsp-media.c: + rtsp-media: Strip keys from the fmtp that we use internally in our caps + Skip keys from the fmtp, which we already use ourselves for the + caps. Some software is adding random things like clock-rate into + the fmtp, and we would otherwise here set a string-typed clock-rate + in the caps... and thus fail to create valid RTP caps + https://bugzilla.gnome.org/show_bug.cgi?id=753009 + +2015-07-20 16:37:44 -0400 Xavier Claessens + + * gst/rtsp-server/rtsp-thread-pool.c: + threadpool: Fix possible warning in gst_rtsp_thread_pool_cleanup() + https://bugzilla.gnome.org/show_bug.cgi?id=752640 + +2015-07-03 22:00:00 +0200 Stefan Sauer + + * common: + Automatic update of common submodule + From f74b2df to 9aed1d7 + +2015-06-25 00:04:28 +0200 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.5.2 === -2015-06-24 Sebastian Dröge +2015-06-24 23:44:37 +0200 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.5.2 + * gst-rtsp-server.doap: + Release 1.5.2 2015-06-18 13:12:04 +0200 Ognyan Tonchev diff --git a/NEWS b/NEWS index a6d325d..f1837f8 100644 --- a/NEWS +++ b/NEWS @@ -1,2 +1,2 @@ -This is GStreamer RTSP Server 1.5.2 +This is GStreamer RTSP Server 1.5.90 diff --git a/RELEASE b/RELEASE index fe1d806..59136ba 100644 --- a/RELEASE +++ b/RELEASE @@ -1,26 +1,27 @@ -Release notes for GStreamer RTSP Server Library 1.5.2 +Release notes for GStreamer RTSP Server Library 1.5.90 -The GStreamer team is pleased to announce the second 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. + Bugs fixed in this release - * 749417 : rtsp-client: add API to allow application to decide what requirements are supported - * 750764 : gst-rtsp-server: add missing apis to doc - * 750800 : rtsp-media: always use real payloader when creating streams + * 749227 : rtsp-server: gst_rtsp_server_attach() is misleading + * 752640 : Warning in gst_rtsp_thread_pool_cleanup() + * 753385 : media: Adding multiple dynamic payload is broken + * 753473 : rtsp-server: shared media uri with explicit port given doesn't match same path uri without port ==== Download ==== @@ -55,15 +56,13 @@ Interested developers of the core library, plugins, and applications should subscribe to the gstreamer-devel list. -Applications - Contributors to this release - * Edward Hervey + * Francisco Velazquez * Hyunjun Ko * Nicolas Dufresne - * Ognyan Tonchev * Sebastian Dröge * Stefan Sauer + * Vineeth TM * Xavier Claessens   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 166bdfc..cb9ece9 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.69) dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, cvs and prerelease does Werror too -AC_INIT([GStreamer RTSP Server Library], [1.5.2.1], +AC_INIT([GStreamer RTSP Server Library], [1.5.90], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer], [gst-rtsp-server]) AG_GST_INIT @@ -53,13 +53,13 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -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 -GSTPG_REQ=1.5.2.1 -GSTPD_REQ=1.5.2.1 +GST_REQ=1.5.90 +GSTPB_REQ=1.5.90 +GSTPG_REQ=1.5.90 +GSTPD_REQ=1.5.90 dnl *** autotools stuff **** diff --git a/gst-rtsp-server.doap b/gst-rtsp-server.doap index e2fd1ab..15dab76 100644 --- a/gst-rtsp-server.doap +++ b/gst-rtsp-server.doap @@ -32,6 +32,16 @@ RTSP server library based on GStreamer + 1.5.90 + 1.5 + + 2015-08-19 + + + + + + 1.5.2 1.5 -- 2.7.4