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: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2018-gf83da49
Date: Tue, 20 May 2014 11:46:36 +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  f83da49889b6d205881186b0fd9f4783c9bce933 (commit)
      from  9c8308f86cee54f8042cbff53eb2c8c4d6c9bce0 (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=f83da49889b6d205881186b0fd9f4783c9bce933


commit f83da49889b6d205881186b0fd9f4783c9bce933
Author: Bastiaan Jacques <address@hidden>
Date:   Tue May 20 13:46:25 2014 +0200

    Drop unused code.

diff --git a/gui/dump/dump.cpp b/gui/dump/dump.cpp
index 638ed48..98b52f9 100644
--- a/gui/dump/dump.cpp
+++ b/gui/dump/dump.cpp
@@ -93,7 +93,6 @@ DumpGui::DumpGui(unsigned long xid, float scale, bool loop, 
RunResources& r)
     _fileOutputAdvance(0),
     _lastVideoFrameDump(0), // this will be computed
     _sleepUS(0),
-    _videoDumpFPS(0),
     _started(false),
     _startTime(0)
 {
diff --git a/gui/dump/dump.h b/gui/dump/dump.h
index 5f49bb1..1e44aea 100644
--- a/gui/dump/dump.h
+++ b/gui/dump/dump.h
@@ -107,8 +107,6 @@ private:
 
     unsigned long _sleepUS; // micro-seconds sleep between iterations
 
-    unsigned int _videoDumpFPS;
-
     std::string _startTrigger;
 
     bool _started;
diff --git a/libcore/ClassHierarchy.h b/libcore/ClassHierarchy.h
index c372c57..99ae147 100644
--- a/libcore/ClassHierarchy.h
+++ b/libcore/ClassHierarchy.h
@@ -89,10 +89,9 @@ public:
     /// \brief
        /// Construct the declaration object. Later set the global and
        /// extension objects using setGlobal and setExtension
-       ClassHierarchy(as_object* global, Extension* e)
+       ClassHierarchy(as_object* global)
         :
-               mGlobal(global),
-        mExtension(e)
+               mGlobal(global)
        {}
 
        /// \brief
@@ -117,7 +116,6 @@ public:
 
 private:
        as_object* mGlobal;
-       Extension* mExtension;
 };
 
 } 
diff --git a/libcore/asobj/Global_as.cpp b/libcore/asobj/Global_as.cpp
index 3c6dc48..ef2da04 100644
--- a/libcore/asobj/Global_as.cpp
+++ b/libcore/asobj/Global_as.cpp
@@ -147,7 +147,7 @@ Global_as::Global_as(VM& vm)
 #ifdef USE_EXTENSIONS
     _et(new Extension()),
 #endif
-    _classes(this, _et.get()),
+    _classes(this),
     _objectProto(new as_object(*this))
 {
 }
diff --git a/libcore/swf/DefineFontTag.cpp b/libcore/swf/DefineFontTag.cpp
index 2be46fc..405bbce 100644
--- a/libcore/swf/DefineFontTag.cpp
+++ b/libcore/swf/DefineFontTag.cpp
@@ -92,7 +92,6 @@ DefineFontTag::DefineFontTag(SWFStream& in, movie_definition& 
m, TagType tag,
     _ansiChars(true),
     _italic(false),
     _bold(false),
-    _wideCodes(false),
     _ascent(0),
     _descent(0),
     _leading(0)
diff --git a/libcore/swf/DefineFontTag.h b/libcore/swf/DefineFontTag.h
index c55074e..b562e13 100644
--- a/libcore/swf/DefineFontTag.h
+++ b/libcore/swf/DefineFontTag.h
@@ -135,13 +135,11 @@ private:
 
     std::string _name;
     bool _subpixelFont;
-       bool _hasLayout;
        bool _unicodeChars;
        bool _shiftJISChars;
        bool _ansiChars;
        bool _italic;
        bool _bold;
-       bool _wideCodes;
 
     boost::int16_t _ascent;
     boost::int16_t _descent;
diff --git a/libmedia/FLVParser.cpp b/libmedia/FLVParser.cpp
index a354e2b..8e8a3b4 100644
--- a/libmedia/FLVParser.cpp
+++ b/libmedia/FLVParser.cpp
@@ -46,8 +46,6 @@ FLVParser::FLVParser(std::unique_ptr<IOChannel> lt)
        MediaParser(std::move(lt)),
        _lastParsedPosition(0),
        _nextPosToIndex(0),
-       _nextAudioFrame(0),
-       _nextVideoFrame(0),
        _audio(false),
        _video(false),
        _cuePoints(),
diff --git a/libmedia/FLVParser.h b/libmedia/FLVParser.h
index a9aa2d1..8356392 100644
--- a/libmedia/FLVParser.h
+++ b/libmedia/FLVParser.h
@@ -259,20 +259,6 @@ private:
        /// Position of next tag to index
        boost::uint64_t _nextPosToIndex;
 
-       /// Audio frame cursor position 
-       //
-       /// This is the video frame number that will
-       /// be referenced by nextVideoFrame and nextVideoFrameTimestamp
-       ///
-       size_t _nextAudioFrame;
-
-       /// Video frame cursor position 
-       //
-       /// This is the video frame number that will
-       /// be referenced by nextVideoFrame and nextVideoFrameTimestamp
-       ///
-       size_t _nextVideoFrame;
-
        /// Audio stream is present
        bool _audio;
 
diff --git a/libmedia/ffmpeg/MediaParserFfmpeg.cpp 
b/libmedia/ffmpeg/MediaParserFfmpeg.cpp
index 2e76bec..d7304ac 100644
--- a/libmedia/ffmpeg/MediaParserFfmpeg.cpp
+++ b/libmedia/ffmpeg/MediaParserFfmpeg.cpp
@@ -323,8 +323,6 @@ MediaParserFfmpeg::getBytesLoaded() const
 MediaParserFfmpeg::MediaParserFfmpeg(std::unique_ptr<IOChannel> stream)
        :
        MediaParser(std::move(stream)),
-       _nextVideoFrame(0),
-       _nextAudioFrame(0),
        _inputFmt(0),
        _formatCtx(0),
        _videoStreamIndex(-1),
diff --git a/libmedia/ffmpeg/MediaParserFfmpeg.h 
b/libmedia/ffmpeg/MediaParserFfmpeg.h
index dcc4c9e..ff9146e 100644
--- a/libmedia/ffmpeg/MediaParserFfmpeg.h
+++ b/libmedia/ffmpeg/MediaParserFfmpeg.h
@@ -100,20 +100,6 @@ private:
        /// creating VideoInfo and AudioInfo objects
        void initializeParser();
 
-       /// Video frame cursor position 
-       //
-       /// This is the video frame number that will
-       /// be referenced by nextVideoFrame and nextVideoFrameTimestamp
-       ///
-       size_t _nextVideoFrame;
-
-       /// Audio frame cursor position 
-       //
-       /// This is the video frame number that will
-       /// be referenced by nextVideoFrame and nextVideoFrameTimestamp
-       ///
-       size_t _nextAudioFrame;
-
        /// Parse next media frame
        //
        /// @return false on error or eof, true otherwise

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

Summary of changes:
 gui/dump/dump.cpp                     |    1 -
 gui/dump/dump.h                       |    2 --
 libcore/ClassHierarchy.h              |    6 ++----
 libcore/asobj/Global_as.cpp           |    2 +-
 libcore/swf/DefineFontTag.cpp         |    1 -
 libcore/swf/DefineFontTag.h           |    2 --
 libmedia/FLVParser.cpp                |    2 --
 libmedia/FLVParser.h                  |   14 --------------
 libmedia/ffmpeg/MediaParserFfmpeg.cpp |    2 --
 libmedia/ffmpeg/MediaParserFfmpeg.h   |   14 --------------
 10 files changed, 3 insertions(+), 43 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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