diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-09-19 15:13:37 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-09-19 15:13:37 +0300 |
commit | 1e61f1d879fa29d2e5f69797ee798053413a2d5d (patch) | |
tree | 83139092d30525de18754aba79aa31dff4421f54 | |
parent | 268bd127d247857137625ce7056c8aff485fd69d (diff) |
Release 1.4.21.4.2
-rw-r--r-- | ChangeLog | 36 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | RELEASE | 13 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | gst-rtsp-server.doap | 10 |
5 files changed, 54 insertions, 11 deletions
@@ -1,9 +1,41 @@ +=== release 1.4.2 === + +2014-09-19 Sebastian Dröge <slomo@coaxion.net> + + * configure.ac: + releasing 1.4.2 + +2014-09-08 09:26:23 +0200 Srimanta Panda <srimanta@axis.com> + + * gst/rtsp-server/rtsp-media.c: + * gst/rtsp-server/rtsp-stream.c: + * gst/rtsp-server/rtsp-stream.h: + rtsp-media: Make sure that sequence numbers are monotonic after pause + The sequence number is not monotonic for RTP packets after pause. The + reason is basepayloader generates a randon sequence number when the + pipeline goes from ready to pause. With this fix generation of sequence + number will be monotonic when going from pause to play request. + https://bugzilla.gnome.org/show_bug.cgi?id=736017 + +2014-08-28 13:35:15 +0200 Göran Jönsson <goranjn@axis.com> + + * gst/rtsp-server/rtsp-client.c: + rtsp-client: Protect saved clients watch with a mutex + Fixes a crash when close() is called while merging clients + in handle_tunnel(). In that case close() would destroy the + watch while it is still being used in handle_tunnel(). + https://bugzilla.gnome.org/show_bug.cgi?id=735570 + === release 1.4.1 === -2014-08-27 Sebastian Dröge <slomo@coaxion.net> +2014-08-27 15:05:07 +0300 Sebastian Dröge <sebastian@centricular.com> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.4.1 + * gst-rtsp-server.doap: + Release 1.4.1 2014-08-05 16:12:19 +0200 Sebastian Dröge <sebastian@centricular.com> @@ -1,2 +1,2 @@ -This is GStreamer RTSP Server 1.4.1 +This is GStreamer RTSP Server 1.4.2 @@ -1,6 +1,5 @@ -Release notes for GStreamer RTSP Server Library 1.4.1 - +Release notes for GStreamer RTSP Server Library 1.4.2 The GStreamer team is pleased to announce a bugfix release of the stable 1.4 release series. The 1.4 release series is adding new features on top @@ -24,12 +23,12 @@ any other 1.x release series in the future. Compared to 1.0.x it contains some new features and more intrusive changes that were considered too risky as a bugfix. - Bugs fixed in this release - * 732644 : RTSP PLAY with specified range replies with wrong range + * 735570 : Race condition between close() and handle_tunnel() causing crash + * 736017 : Sequence number is not monotonic after PAUSE command ==== Download ==== @@ -64,8 +63,10 @@ Interested developers of the core library, plugins, and applications should subscribe to the gstreamer-devel list. +Applications + Contributors to this release - * Arun Raghavan - * Sebastian Dröge + * Göran Jönsson + * Srimanta Panda
\ No newline at end of file diff --git a/configure.ac b/configure.ac index 78e62ee..cb03c91 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.62) 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.4.1], +AC_INIT([GStreamer RTSP Server Library], [1.4.2], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer], [gst-rtsp-server]) AG_GST_INIT @@ -53,7 +53,7 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 401, 0, 401) +AS_LIBTOOL(GST, 402, 0, 402) dnl *** required versions of GStreamer stuff *** GST_REQ=1.4.0 diff --git a/gst-rtsp-server.doap b/gst-rtsp-server.doap index a549266..65d6b69 100644 --- a/gst-rtsp-server.doap +++ b/gst-rtsp-server.doap @@ -32,6 +32,16 @@ RTSP server library based on GStreamer <release> <Version> + <revision>1.4.2</revision> + <branch>1.4</branch> + <name></name> + <created>2014-09-19</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.4.2.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.4.1</revision> <branch>1.4</branch> <name></name> |