summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-03-15 12:40:03 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-03-15 12:40:03 +0200
commit7b3eafbe6e94608b5772fd87a3ec034f35375651 (patch)
treed5961465334f2eb7df720fff65b733fdf0efd115
parent4cee9de32154ae2317cffa207d706e4e384ccefa (diff)
Release 1.7.91gst-devtools-1.7.91
-rw-r--r--validate/ChangeLog84
-rw-r--r--validate/NEWS2
-rw-r--r--validate/configure.ac8
-rw-r--r--validate/gst-validate.doap8
4 files changed, 94 insertions, 8 deletions
diff --git a/validate/ChangeLog b/validate/ChangeLog
index 3c5ba07230..2f599326d4 100644
--- a/validate/ChangeLog
+++ b/validate/ChangeLog
@@ -1,9 +1,87 @@
-=== release 1.7.90 ===
+=== release 1.7.91 ===
-2016-03-01 Sebastian Dröge <slomo@coaxion.net>
+2016-03-15 Sebastian Dröge <slomo@coaxion.net>
* configure.ac:
- releasing 1.7.90
+ releasing 1.7.91
+
+2016-03-14 14:29:57 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * validate/gst/validate/gst-validate-scenario.c:
+ validate: Add missing parenthesis to seek position check
+ https://bugzilla.gnome.org/show_bug.cgi?id=763602
+
+2016-03-14 12:55:57 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * validate/gst/validate/gst-validate-scenario.c:
+ validate: Fix overflow seek position comparision
+ MAX(0, ((gint64) priv->segment_start - priv->seek_pos_tol) will be a high
+ positive number thanks to being interpreted as unsigned values if
+ segment_start < seek_pos_tol. Fix this by explicitly checking for this case
+ and only doing the subtraction otherwise.
+ This fixes the problem from fdccffbb2e5885b3f8e7369cdbda45b6717ffab0
+ completely now.
+ https://bugzilla.gnome.org/show_bug.cgi?id=763602
+
+2016-03-08 17:01:09 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * validate/gst/validate/gst-validate-utils.c:
+ * validate/gst/validate/gst-validate-utils.h:
+ * validate/gst/validate/media-descriptor-parser.c:
+ * validate/gst/validate/media-descriptor-writer.c:
+ * validate/gst/validate/media-descriptor.c:
+ * validate/gst/validate/media-descriptor.h:
+ validate: Fix seding mistakes
+ When we added namespace to make GI happy we ended up with
+ structure called like GstValidateMediaGstValidateMediaXXX.
+
+2016-03-08 10:49:43 +0100 Edward Hervey <edward@centricular.com>
+
+ * validate/gst/validate/gst-validate-pad-monitor.c:
+ * validate/gst/validate/gst-validate-pad-monitor.h:
+ * validate/gst/validate/gst-validate-report.c:
+ * validate/gst/validate/gst-validate-report.h:
+ monitor: Add critical issue for checking accurate seek results
+ If an accurate seek is accepted, the resulting segment.time should be
+ exactly the requested seek start value..
+ https://bugzilla.gnome.org/show_bug.cgi?id=763299
+
+2016-03-08 12:00:19 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * validate/gst/validate/gst-validate-scenario.c:
+ validate: Fix accurate seeking in paused failling condition
+
+2016-03-08 15:54:32 +0900 Vineeth T M <vineeth.tm@samsung.com>
+
+ * validate/gst/validate/gst-validate-internal.h:
+ * validate/gst/validate/gst-validate-scenario.h:
+ * validate/gst/validate/gst-validate-utils.c:
+ * validate/launcher/httpserver.py:
+ * validate/launcher/utils.py:
+ * validate/plugins/gtk/gstvalidategtk.c:
+ * validate/tools/gst-validate-images-check.c:
+ Validate: Fix consider, launch spelling mistakes
+ https://bugzilla.gnome.org/show_bug.cgi?id=763289
+
+2016-02-22 11:49:48 +0900 Vineeth T M <vineeth.tm@samsung.com>
+
+ * validate/launcher/apps/gstvalidate.py:
+ validate: Fix wrong condition check when adding tests
+ When listing tests, checking whether uri is present or not and displaying error.
+ But uri does notneed to be present in case of pipeline generator. So the condition check is wrong.
+ This results in validateelements testsuite not working. Hence modifying the condition to
+ not error out on valid cases.
+ https://bugzilla.gnome.org/show_bug.cgi?id=762422
+
+=== release 1.7.90 ===
+
+2016-03-01 19:23:37 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * validate/ChangeLog:
+ * validate/NEWS:
+ * validate/configure.ac:
+ * validate/gst-validate.doap:
+ Release 1.7.90
2016-03-01 14:59:29 +0100 Thibault Saunier <tsaunier@gnome.org>
diff --git a/validate/NEWS b/validate/NEWS
index c183bcf1fe..9d5e776893 100644
--- a/validate/NEWS
+++ b/validate/NEWS
@@ -1 +1 @@
-This is gst-validate 1.7.90.
+This is gst-validate 1.7.91.
diff --git a/validate/configure.ac b/validate/configure.ac
index 96a270372d..d24376aa3a 100644
--- a/validate/configure.ac
+++ b/validate/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(Gst-Validate, 1.7.90,
+AC_INIT(Gst-Validate, 1.7.91,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-validate)
@@ -49,11 +49,11 @@ AC_SUBST(GST_API_VERSION)
AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION",
[GStreamer API Version])
-AS_LIBTOOL(GST, 790, 0, 790)
+AS_LIBTOOL(GST, 791, 0, 791)
dnl *** required versions of GStreamer stuff ***
-GST_REQ=1.7.90
-GSTPB_REQ=1.7.90
+GST_REQ=1.7.91
+GSTPB_REQ=1.7.91
dnl *** autotools stuff ****
diff --git a/validate/gst-validate.doap b/validate/gst-validate.doap
index d0c8f43bde..0f66f42b39 100644
--- a/validate/gst-validate.doap
+++ b/validate/gst-validate.doap
@@ -53,6 +53,14 @@
</repository>
<Version>
+ <revision>1.7.91</revision>
+ <branch>master</branch>
+ <created>2016-03-15</created>
+ <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-validate/gst-validate-1.7.91.tar.xz" />
+ </Version>
+ </release>
+
+ <Version>
<revision>1.7.90</revision>
<branch>master</branch>
<created>2016-03-01</created>