gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Gabriele Giacone
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1734-g91b70aa
Date: Sun, 11 Aug 2013 15:39:43 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  91b70aaa5ca66827dc39495e9e6d4c640b5b0694 (commit)
      from  89c368e2e6eb22af8215e2b0e99589ca3dd0a858 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=91b70aaa5ca66827dc39495e9e6d4c640b5b0694


commit 91b70aaa5ca66827dc39495e9e6d4c640b5b0694
Author: Bastiaan Jacques <address@hidden>
Date:   Sun Aug 11 17:16:01 2013 +0200

    Fix warnings: -Wdeprecated-declarations.

diff --git a/libmedia/gst/AudioInputGst.cpp b/libmedia/gst/AudioInputGst.cpp
index 592d12d..47a4875 100644
--- a/libmedia/gst/AudioInputGst.cpp
+++ b/libmedia/gst/AudioInputGst.cpp
@@ -22,6 +22,13 @@
 #include "gnashconfig.h"
 #endif
 
+// deprecated since 2.32: g_value_array_get_nth, g_value_array_free
+// gstreamer devs keep using GValueArray deprecated in favour of GArray
+// 
http://lists.freedesktop.org/archives/gstreamer-devel/2012-October/037539.html
+#define GLIB_DISABLE_DEPRECATION_WARNINGS
+#include <glib-object.h>
+#undef GLIB_DISABLE_DEPRECATION_WARNINGS
+
 #include "gst/gst.h"
 #include "AudioInputGst.h"
 #include "log.h"
diff --git a/libmedia/gst/VideoInputGst.cpp b/libmedia/gst/VideoInputGst.cpp
index 9a728ff..ba98300 100644
--- a/libmedia/gst/VideoInputGst.cpp
+++ b/libmedia/gst/VideoInputGst.cpp
@@ -21,6 +21,13 @@
 #include "gnashconfig.h"
 #endif
 
+// deprecated since 2.32: g_value_array_get_nth, g_value_array_free
+// gstreamer devs keep using GValueArray deprecated in favour of GArray
+// 
http://lists.freedesktop.org/archives/gstreamer-devel/2012-October/037539.html
+#define GLIB_DISABLE_DEPRECATION_WARNINGS
+#include <glib-object.h>
+#undef GLIB_DISABLE_DEPRECATION_WARNINGS
+
 #include "VideoInputGst.h"
 #include "log.h"
 #include "GstUtil.h"

-----------------------------------------------------------------------

Summary of changes:
 libmedia/gst/AudioInputGst.cpp |    7 +++++++
 libmedia/gst/VideoInputGst.cpp |    7 +++++++
 2 files changed, 14 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]