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-1955-g74f220b
Date: Fri, 25 Apr 2014 23:09:02 +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  74f220b1a55458bb6a7ff4b56a38cdc8db225a0d (commit)
       via  50e357873493b82db6d3e24273359fe22af4f51e (commit)
      from  4c7361673dcdead92aab8e4582fe337c1fd8afcf (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=74f220b1a55458bb6a7ff4b56a38cdc8db225a0d


commit 74f220b1a55458bb6a7ff4b56a38cdc8db225a0d
Author: Gabriele Giacone <address@hidden>
Date:   Sat Apr 26 01:07:24 2014 +0200

    Quiet -Wunuser-parameter on ffmpeg case too.

diff --git a/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp 
b/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp
index 41673b4..a65c39b 100644
--- a/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp
+++ b/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp
@@ -88,6 +88,7 @@ AudioResamplerFfmpeg::init(AVCodecContext* ctx) {
 int
 AudioResamplerFfmpeg::resample(boost::uint8_t** input, int plane_size,
     int samples, boost::uint8_t** output) {
+    UNUSED( plane_size );
 #ifdef HAVE_SWRESAMPLE_H
     return swr_convert(_context,
         output, MAX_AUDIO_FRAME_SIZE,
@@ -97,7 +98,6 @@ AudioResamplerFfmpeg::resample(boost::uint8_t** input, int 
plane_size,
         output, 0, MAX_AUDIO_FRAME_SIZE,
         input, plane_size, samples);
 #else
-    UNUSED( plane_size );
     return audio_resample(_context, reinterpret_cast<short*>(*output),
         reinterpret_cast<short*>(*input), samples); 
 #endif

http://git.savannah.gnu.org/cgit//commit/?id=50e357873493b82db6d3e24273359fe22af4f51e


commit 50e357873493b82db6d3e24273359fe22af4f51e
Author: Gabriele Giacone <address@hidden>
Date:   Sat Apr 26 00:57:40 2014 +0200

    Reorder member initializers.

diff --git a/gui/fb/fb_glue_agg.cpp b/gui/fb/fb_glue_agg.cpp
index 991adfb..a15e4da 100644
--- a/gui/fb/fb_glue_agg.cpp
+++ b/gui/fb/fb_glue_agg.cpp
@@ -45,16 +45,16 @@ namespace gui {
 //---------------------------------------------
 FBAggGlue::FBAggGlue()
     : _fd(-1),
-      _varinfo(),
-      _fixinfo()
+      _fixinfo(),
+      _varinfo()
 {
 //    GNASH_REPORT_FUNCTION;
 }
 
 FBAggGlue::FBAggGlue(int fd)
     : _fd(fd),
-      _varinfo(),
-      _fixinfo()
+      _fixinfo(),
+      _varinfo()
 {
 //    GNASH_REPORT_FUNCTION;    
 }

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

Summary of changes:
 gui/fb/fb_glue_agg.cpp                   |    8 ++++----
 libmedia/ffmpeg/AudioResamplerFfmpeg.cpp |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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