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-1733-g89c368e
Date: Sun, 11 Aug 2013 10:57:40 +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  89c368e2e6eb22af8215e2b0e99589ca3dd0a858 (commit)
       via  7c2a0ffa175cebf58ddea4973691d2c2d341c278 (commit)
      from  dcad78d5cc42958b22401ade13e91c07eeea71c4 (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=89c368e2e6eb22af8215e2b0e99589ca3dd0a858


commit 89c368e2e6eb22af8215e2b0e99589ca3dd0a858
Author: Gabriele Giacone <address@hidden>
Date:   Sun Aug 11 00:32:22 2013 +0200

    Fix warnings: cast discards '__attribute__((const))' qualifier.

diff --git a/libmedia/gst/swfdec_codec_gst.c b/libmedia/gst/swfdec_codec_gst.c
index 50aeff5..8be6067 100644
--- a/libmedia/gst/swfdec_codec_gst.c
+++ b/libmedia/gst/swfdec_codec_gst.c
@@ -112,8 +112,8 @@ swfdec_gst_feature_filter_parser (GstPluginFeature 
*feature, gpointer caps)
     return swfdec_gst_feature_filter (feature, caps, "Parser", FALSE);
 }
 
-
-
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
 static int
 swfdec_gst_compare_features (gconstpointer a_, gconstpointer b_)
 {
@@ -127,6 +127,7 @@ swfdec_gst_compare_features (gconstpointer a_, 
gconstpointer b_)
 
   return strcmp (gst_plugin_feature_get_name (a), gst_plugin_feature_get_name 
(b));
 }
+#pragma GCC diagnostic pop
 
 static GstElementFactory *
 _swfdec_gst_get_factory (GstCaps *caps, GstPluginFeatureFilter filter)
@@ -356,6 +357,8 @@ swfdec_gst_decoder_finish (SwfdecGstDecoder *dec)
   }
 }
 
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
 gboolean
 swfdec_gst_decoder_push (SwfdecGstDecoder *dec, GstBuffer *buffer)
 {
@@ -382,6 +385,7 @@ swfdec_gst_decoder_push (SwfdecGstDecoder *dec, GstBuffer 
*buffer)
   SWFDEC_ERROR ("error %d pushing data", (int) ret);
   return FALSE;
 }
+#pragma GCC diagnostic pop
 
 void
 swfdec_gst_decoder_push_eos (SwfdecGstDecoder *dec)

http://git.savannah.gnu.org/cgit//commit/?id=7c2a0ffa175cebf58ddea4973691d2c2d341c278


commit 7c2a0ffa175cebf58ddea4973691d2c2d341c278
Author: Gabriele Giacone <address@hidden>
Date:   Sun Aug 11 01:48:50 2013 +0200

    Suppress agg headers warnings.

diff --git a/librender/agg/Renderer_agg.cpp b/librender/agg/Renderer_agg.cpp
index 546e1a8..12b4142 100644
--- a/librender/agg/Renderer_agg.cpp
+++ b/librender/agg/Renderer_agg.cpp
@@ -117,6 +117,9 @@ AGG resources
 #include <boost/scoped_array.hpp>
 #include <boost/bind.hpp>
 
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wunused-parameter"
+#pragma GCC diagnostic ignored "-Wsign-compare"
 #include <agg_rendering_buffer.h>
 #include <agg_renderer_base.h>
 #include <agg_pixfmt_gray.h>
@@ -139,6 +142,7 @@ AGG resources
 #include <agg_renderer_primitives.h>
 #include <agg_image_accessors.h>
 #include <agg_alpha_mask_u8.h>
+#pragma GCC diagnostic pop
 
 #include "Renderer_agg_style.h"
 
diff --git a/librender/agg/Renderer_agg_style.h 
b/librender/agg/Renderer_agg_style.h
index 7920f05..dbd3fa0 100644
--- a/librender/agg/Renderer_agg_style.h
+++ b/librender/agg/Renderer_agg_style.h
@@ -25,6 +25,8 @@
 
 #include <vector>
 #include <boost/ptr_container/ptr_vector.hpp>
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
 #include <agg_gradient_lut.h>
 #include <agg_color_rgba.h>
 #include <agg_color_gray.h>
@@ -37,6 +39,7 @@
 #include <agg_span_image_filter_rgba.h>
 #include <agg_pixfmt_rgb.h>
 #include <agg_pixfmt_rgba.h>
+#pragma GCC diagnostic pop
 #include <iostream>
 
 #include "LinearRGB.h"

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

Summary of changes:
 libmedia/gst/swfdec_codec_gst.c    |    8 ++++++--
 librender/agg/Renderer_agg.cpp     |    4 ++++
 librender/agg/Renderer_agg_style.h |    3 +++
 3 files changed, 13 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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