From 0dba6f51c87c34aff36dbae9c58fe73c918762e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 4 Mar 2013 15:47:03 +0000 Subject: gst-uninstalled: gst-openmax -> gst-omx --- scripts/gst-uninstalled | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gst-uninstalled b/scripts/gst-uninstalled index ea460bae5e..bfc90c4761 100755 --- a/scripts/gst-uninstalled +++ b/scripts/gst-uninstalled @@ -140,7 +140,7 @@ $GST/gstreamer/plugins\ :$GST/gst-plugins-bad/sys\ :$GST/gst-ffmpeg/ext\ :$GST/gnonlin/gnl\ -:$GST/gst-openmax\ +:$GST/gst-omx/omx/.libs\ :$GST/gst-plugins-gl/gst\ :$GST/plugins\ :$GST/farsight2/gst\ -- cgit v1.2.1 From da8384bea566c063c10bb19219977d284d9c7036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 30 Dec 2012 23:48:47 +0000 Subject: configure: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS AM_CONFIG_HEADER has been removed in the just-released automake 1.13: https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html https://bugzilla.gnome.org/show_bug.cgi?id=690881 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a447470deb..17834dc5f4 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl can autoconf find the source ? AC_CONFIG_SRCDIR([gst/gst.c]) dnl define the output header for config -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl AM_MAINTAINER_MODE only provides the option to configure to enable it AM_MAINTAINER_MODE -- cgit v1.2.1 From 1d8258a642dd308310505a5c314a51bac0522d0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 10 Mar 2013 23:19:28 +0000 Subject: Automatic update of common submodule From 9bca01f to 2585de9 --- common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common b/common index 9bca01f15b..2585de990f 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 9bca01f15ba103ae4dccd8224cc26fd4f07fc63a +Subproject commit 2585de990f508fc7fbe13a4b7c9fb08c68a10aed -- cgit v1.2.1 From 578152a451521cf2d5ca561adbfa85c8de23b262 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Sat, 4 May 2013 12:23:08 +0200 Subject: docs: no TOC design to dist --- docs/design/Makefile.am | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/design/Makefile.am b/docs/design/Makefile.am index 087a3b03a6..b313c9d366 100644 --- a/docs/design/Makefile.am +++ b/docs/design/Makefile.am @@ -44,7 +44,6 @@ EXTRA_DIST = \ part-stream-status.txt \ part-streams.txt \ part-synchronisation.txt \ - part-toc.txt \ part-TODO.txt \ part-trickmodes.txt -- cgit v1.2.1 From 5cba447eddb48b40cdbb4d634f8885b9b3b6c7a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 24 May 2013 22:58:19 +0200 Subject: basetransform: Fix handling of reverse caps negotiation if this element alone is not enough to do the transform For example if downstream wants a new width/height and color format and there's first a videoscale and then a ffmpegcolorspace. ffmpegcolorspace could do the color format conversion, but not the width/height and the other way around. --- libs/gst/base/gstbasetransform.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c index e1fbaa98fd..25eb2b4975 100644 --- a/libs/gst/base/gstbasetransform.c +++ b/libs/gst/base/gstbasetransform.c @@ -1974,7 +1974,7 @@ gst_base_transform_buffer_alloc (GstPad * pad, guint64 offset, guint size, && !gst_caps_is_equal (sink_suggest, priv->sink_alloc); } - if (new_caps && (suggest || !gst_caps_can_intersect (sink_suggest, templ))) { + if (new_caps && !gst_caps_can_intersect (sink_suggest, templ)) { GstCaps *allowed, *peercaps; GST_DEBUG_OBJECT (trans, @@ -2023,6 +2023,7 @@ gst_base_transform_buffer_alloc (GstPad * pad, guint64 offset, guint size, } gst_caps_replace (&sink_suggest, allowed); + size_suggest = 0; gst_caps_unref (allowed); suggest = TRUE; -- cgit v1.2.1 From df199262d9f3a82f0ea403ce42203b9a8067e522 Mon Sep 17 00:00:00 2001 From: Kerrick Staley Date: Tue, 20 Aug 2013 23:59:29 -0700 Subject: parse: make grammar.y work with Bison 3 YYLEX_PARAM is no longer supported in Bison 3. https://bugzilla.gnome.org/show_bug.cgi?id=706462 --- gst/parse/grammar.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y index 24fc87bfab..7f9dd162da 100644 --- a/gst/parse/grammar.y +++ b/gst/parse/grammar.y @@ -26,7 +26,6 @@ */ #define YYERROR_VERBOSE 1 -#define YYLEX_PARAM scanner #define YYENABLE_NLS 0 @@ -648,6 +647,7 @@ static int yyerror (void *scanner, graph_t *graph, const char *s); %right '.' %left '!' '=' +%lex-param { void *scanner } %parse-param { void *scanner } %parse-param { graph_t *graph } %pure-parser -- cgit v1.2.1 From 3e83e65252b255f336e0c6be450746ab5a383219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 8 Aug 2012 14:49:23 +0100 Subject: tests: remove silly test_fail_abstract_new check Our check would make sure that GLib segfaults when someone tries to instantiate an abstract type, which is an extremely useful thing to check for. In newer GLibs this is fixed and we get an abort with a g_error() now it seems, so let's just remove this check entirely. --- tests/check/gst/gstobject.c | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/tests/check/gst/gstobject.c b/tests/check/gst/gstobject.c index d5956db315..e338f491cb 100644 --- a/tests/check/gst/gstobject.c +++ b/tests/check/gst/gstobject.c @@ -72,19 +72,6 @@ gst_fake_object_get_type (void) return fake_object_type; } -#ifndef HAVE_OSX -/* g_object_new on abstract GstObject should fail */ -GST_START_TEST (test_fail_abstract_new) -{ - GstObject *object; - - ASSERT_CRITICAL (object = g_object_new (gst_object_get_type (), NULL)); - fail_unless (object == NULL, "Created an instance of abstract GstObject"); -} - -GST_END_TEST; -#endif - /* g_object_new on GstFakeObject should succeed */ GST_START_TEST (test_fake_object_new) { @@ -529,18 +516,6 @@ gst_object_suite (void) tcase_add_test (tc_chain, test_fake_object_has_ancestor); //tcase_add_checked_fixture (tc_chain, setup, teardown); - /* FIXME: GLib shouldn't crash here, but issue a warning and return a NULL - * object, or at least g_error() and then abort properly ... (tpm) */ -#ifndef HAVE_OSX - /* Disabled for OS/X because a) it's a pretty silly test anyway and - * b) different OS/X versions raise different signals and it isn't worth - * the effort to try and detect which one should be producing which - */ - /* SEGV tests go last so we can debug the others */ - if (g_getenv ("CK_FORK") == NULL || strcmp (g_getenv ("CK_FORK"), "no") != 0) - tcase_add_test_raise_signal (tc_chain, test_fail_abstract_new, SIGSEGV); -#endif - return s; } -- cgit v1.2.1