gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r10649: Fix int16 -> uint32 as Basti


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10649: Fix int16 -> uint32 as Bastiian pointed out
Date: Wed, 04 Mar 2009 00:34:23 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10649
committer: Markus Gothe <address@hidden>
branch nick: trunk
timestamp: Wed 2009-03-04 00:34:23 +0100
message:
  Fix int16 -> uint32 as Bastiian pointed out
modified:
  libmedia/AudioDecoderSpeex.cpp
=== modified file 'libmedia/AudioDecoderSpeex.cpp'
--- a/libmedia/AudioDecoderSpeex.cpp    2009-03-02 01:03:41 +0000
+++ b/libmedia/AudioDecoderSpeex.cpp    2009-03-03 23:34:23 +0000
@@ -150,7 +150,7 @@
             _speex_framesize /* sample count*/, 2 /* sample size */,
             16000, false /* stereo */, 44100 /* new rate */,
             true /* convert to stereo */);
-        boost::int16_t conv_size = outsize;
+        boost::uint32_t conv_size = outsize;
 #endif
         total_size += conv_size;
 


reply via email to

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