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-1763-ge1c0e81
Date: Fri, 23 Aug 2013 15:27:31 +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  e1c0e8155001fe34d81666909323bc26fd5347fb (commit)
      from  8cac52ac8901a744a0192c4b00e9ef692edae573 (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=e1c0e8155001fe34d81666909323bc26fd5347fb


commit e1c0e8155001fe34d81666909323bc26fd5347fb
Author: Sandro Santilli <address@hidden>
Date:   Fri Aug 23 16:55:32 2013 +0200

    Fix avcodec version in MediaHandlerFfmpeg::description()

diff --git a/libmedia/ffmpeg/MediaHandlerFfmpeg.cpp 
b/libmedia/ffmpeg/MediaHandlerFfmpeg.cpp
index f55c3ba..2c13eaf 100644
--- a/libmedia/ffmpeg/MediaHandlerFfmpeg.cpp
+++ b/libmedia/ffmpeg/MediaHandlerFfmpeg.cpp
@@ -44,7 +44,7 @@ MediaHandlerFfmpeg::description() const
     std::ostringstream ss;
     const boost::uint32_t ver = avcodec_version();
     ss << "FFmpeg (avcodec version: " << (ver >> 16) << "."
-                      << (ver & 0xff00 >> 8)  << "."
+                      << ((ver & 0xff00) >> 8)  << "."
                       << (ver & 0xff) << ")";
     return ss.str();
 }

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

Summary of changes:
 libmedia/ffmpeg/MediaHandlerFfmpeg.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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