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: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2207-gb7dbb23
Date: Wed, 09 Sep 2015 13:35:46 +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  b7dbb23d8f28310d2ce15b8a575ac44bd17626eb (commit)
       via  2f7d9b270b6ae90ef1af5ceb4ad6a49d5a053c04 (commit)
      from  c969f9d9d9ac40bfcb8e7c19b0f8ff5345f57c2d (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=b7dbb23d8f28310d2ce15b8a575ac44bd17626eb


commit b7dbb23d8f28310d2ce15b8a575ac44bd17626eb
Author: Nutchanon Wetchasit <address@hidden>
Date:   Wed Sep 9 15:35:05 2015 +0200

    Use chunk size in multiple of frame size in embeded PCM sound decoding.

diff --git a/libsound/EmbedSoundInst.cpp b/libsound/EmbedSoundInst.cpp
index 9ef4b05..8ce310b 100644
--- a/libsound/EmbedSoundInst.cpp
+++ b/libsound/EmbedSoundInst.cpp
@@ -96,7 +96,7 @@ EmbedSoundInst::decodeNextBlock()
     // to decode not to bother further streamlining it
     // See https://savannah.gnu.org/bugs/?25456 for a testcase
     // showing the benefit of chunked decoding.
-    const std::uint32_t chunkSize = 65535;
+    const std::uint32_t chunkSize = 65536;
 
     std::uint32_t inputSize = _soundDef.size() - decodingPosition;
     if ( inputSize > chunkSize ) inputSize = chunkSize;

http://git.savannah.gnu.org/cgit//commit/?id=2f7d9b270b6ae90ef1af5ceb4ad6a49d5a053c04


commit 2f7d9b270b6ae90ef1af5ceb4ad6a49d5a053c04
Author: Nutchanon Wetchasit <address@hidden>
Date:   Wed Sep 9 13:47:34 2015 +0200

    Use a correct audio dump debug message, on debug channel.

diff --git a/libsound/WAVWriter.cpp b/libsound/WAVWriter.cpp
index c5e74dd..995523b 100644
--- a/libsound/WAVWriter.cpp
+++ b/libsound/WAVWriter.cpp
@@ -68,8 +68,8 @@ WAVWriter::WAVWriter(const std::string& wavefile)
         else {
             data_size = 0;
             write_wave_header(file_stream);
-            std::cout << "# Created 44100 16Mhz stereo wave file:\n" <<
-                    "AUDIOFILE=" << wavefile << std::endl;
+            log_debug("Created 44100 Hz 16-bit stereo wave file: %s",
+                      wavefile);
         }
 }
 

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

Summary of changes:
 libsound/EmbedSoundInst.cpp |    2 +-
 libsound/WAVWriter.cpp      |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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