summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-09-18 20:12:06 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-09-18 20:12:06 +0200
commite4edaebe8e672e17a7fe481c8e856a782c8fa0b9 (patch)
treede38a1ebbf3e748cd196afc862d0d73377eed2ec
parentda8a31ac88e30b4c6126cf690d2faf943c519ce5 (diff)
Release 1.5.911.5.91
-rw-r--r--ChangeLog58
-rw-r--r--NEWS2
-rw-r--r--RELEASE22
-rw-r--r--configure.ac12
-rw-r--r--gst-rtsp-server.doap10
5 files changed, 81 insertions, 23 deletions
diff --git a/ChangeLog b/ChangeLog
index c0bc218..1c60279 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,63 @@
+=== release 1.5.91 ===
+
+2015-09-18 Sebastian Dröge <slomo@coaxion.net>
+
+ * configure.ac:
+ releasing 1.5.91
+
+2015-09-17 20:07:34 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/libs/gst-rtsp-server-sections.txt:
+ * gst/rtsp-server/rtsp-stream.c:
+ stream: fix docs for recently-added get/set_buffer_size API
+ https://bugzilla.gnome.org/show_bug.cgi?id=749095
+
+2015-09-04 11:23:43 +1000 Jan Schmidt <jan@centricular.com>
+
+ * gst/rtsp-server/rtsp-media.c:
+ rtsp-media: Don't crash on encrypted RTX SDP
+ In parse_keymgmt(), don't mutate the input string that's been passed
+ as const, especially since we might need the original value again if
+ the same key info applies to multiple streams (RTX, for example).
+ https://bugzilla.gnome.org/show_bug.cgi?id=754753
+
+2015-08-22 20:59:40 +1000 Jan Schmidt <jan@centricular.com>
+
+ * examples/test-mp4.c:
+ test-mp4: Support filenames with spaces in them. Error out on too few arguments
+
+2015-08-17 02:36:31 +1000 Jan Schmidt <jan@centricular.com>
+
+ * examples/test-record.c:
+ test-record: Check parameter count and print out help
+ If no launch pipeline was supplied, print out some help
+
+2015-08-31 22:48:34 +1000 Jan Schmidt <jan@centricular.com>
+
+ * gst/rtsp-server/rtsp-media.c:
+ * gst/rtsp-server/rtsp-stream.c:
+ * gst/rtsp-server/rtsp-stream.h:
+ rtsp-stream: Implement UDP buffer size setting.
+ Add gst_rtsp_stream_(get|set)_buffer_size and use it to configure the
+ UDP TX buffer size.
+ Incorporates a patch by Hyunjun Ko <zzoon.ko@samsung.com>
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=749095
+
+2015-08-31 22:47:45 +1000 Jan Schmidt <jan@centricular.com>
+
+ * gst/rtsp-server/rtsp-media.h:
+ rtsp-media: Fix small typo causing gtk-doc to complain
+
=== release 1.5.90 ===
-2015-08-19 Sebastian Dröge <slomo@coaxion.net>
+2015-08-19 14:15:23 +0300 Sebastian Dröge <sebastian@centricular.com>
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
* configure.ac:
- releasing 1.5.90
+ * gst-rtsp-server.doap:
+ Release 1.5.90
2015-08-12 14:33:44 +0900 Hyunjun Ko <zzoon.ko@samsung.com>
diff --git a/NEWS b/NEWS
index f1837f8..b850a06 100644
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,2 @@
-This is GStreamer RTSP Server 1.5.90
+This is GStreamer RTSP Server 1.5.91
diff --git a/RELEASE b/RELEASE
index 59136ba..83f8a3b 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,8 +1,8 @@
-Release notes for GStreamer RTSP Server Library 1.5.90
+Release notes for GStreamer RTSP Server Library 1.5.91
-The GStreamer team is pleased to announce the first release candidate for the
+The GStreamer team is pleased to announce the second 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 final 1.6.0 release is planned
@@ -13,15 +13,12 @@ Binaries for Android, iOS, Mac OS X and Windows will be provided separately by
the GStreamer project.
-
Bugs fixed in this release
- * 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
+ * 749095 : rtsp-stream: add API to set UDP buffer size
+ * 754753 : rtsp-media: don't mutate original string when parsing keymgmt
==== Download ====
@@ -56,13 +53,10 @@ Interested developers of the core library, plugins, and applications should
subscribe to the gstreamer-devel list.
+Applications
+
Contributors to this release
- * Francisco Velazquez
- * Hyunjun Ko
- * Nicolas Dufresne
- * Sebastian Dröge
- * Stefan Sauer
- * Vineeth TM
- * Xavier Claessens
+ * Jan Schmidt
+ * Tim-Philipp Müller
  \ No newline at end of file
diff --git a/configure.ac b/configure.ac
index cb9ece9..752bccc 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.90],
+AC_INIT([GStreamer RTSP Server Library], [1.5.91],
[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, 590, 0, 590)
+AS_LIBTOOL(GST, 591, 0, 591)
dnl *** required versions of GStreamer stuff ***
-GST_REQ=1.5.90
-GSTPB_REQ=1.5.90
-GSTPG_REQ=1.5.90
-GSTPD_REQ=1.5.90
+GST_REQ=1.5.91
+GSTPB_REQ=1.5.91
+GSTPG_REQ=1.5.91
+GSTPD_REQ=1.5.91
dnl *** autotools stuff ****
diff --git a/gst-rtsp-server.doap b/gst-rtsp-server.doap
index 15dab76..f17e957 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.5.91</revision>
+ <branch>1.5</branch>
+ <name></name>
+ <created>2015-09-18</created>
+ <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.5.91.tar.xz" />
+ </Version>
+ </release>
+
+ <release>
+ <Version>
<revision>1.5.90</revision>
<branch>1.5</branch>
<name></name>