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-1766-g0ff0f27
Date: Sat, 24 Aug 2013 13:49:58 +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  0ff0f2717cd220478dab816355966852e954a83a (commit)
      from  4ce12ba885d514485d1138c08ee189d22433c2b7 (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=0ff0f2717cd220478dab816355966852e954a83a


commit 0ff0f2717cd220478dab816355966852e954a83a
Author: Gabriele Giacone <address@hidden>
Date:   Sat Aug 24 15:36:02 2013 +0200

    Use uint64_t from boost namespace.

diff --git a/libmedia/ffmpeg/MediaParserFfmpeg.cpp 
b/libmedia/ffmpeg/MediaParserFfmpeg.cpp
index b3d274b..f7cdf2e 100644
--- a/libmedia/ffmpeg/MediaParserFfmpeg.cpp
+++ b/libmedia/ffmpeg/MediaParserFfmpeg.cpp
@@ -498,7 +498,7 @@ MediaParserFfmpeg::initializeParser()
 #else
         boost::uint64_t duration = _videoStream->duration;
 #endif
-        if (duration == static_cast<uint64_t>(AV_NOPTS_VALUE)) {
+        if (duration == static_cast<boost::uint64_t>(AV_NOPTS_VALUE)) {
             log_error(_("Duration of video stream unknown"));
             duration=0; // TODO: guess!
         } else {
@@ -527,7 +527,7 @@ MediaParserFfmpeg::initializeParser()
 #else
         boost::uint64_t duration = _audioStream->duration;
 #endif
-        if (duration == static_cast<uint64_t>(AV_NOPTS_VALUE)) {
+        if (duration == static_cast<boost::uint64_t>(AV_NOPTS_VALUE)) {
             log_error(_("Duration of audio stream unknown to ffmpeg"));
             duration=0; // TODO: guess!
         } 

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

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


hooks/post-receive
-- 
Gnash



reply via email to

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