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. 4a80536ce996db998c99


From: Benjamin Wolsey
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 4a80536ce996db998c99e611f1f9425c95eabc00
Date: Thu, 21 Oct 2010 10:20:49 +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  4a80536ce996db998c99e611f1f9425c95eabc00 (commit)
       via  ebc3985f86926e1c8d7f38b3a4264483b94a9892 (commit)
       via  5e86232dae4944916fad189f743aa3a056454386 (commit)
       via  664f967425fc80e07f807f1116e1b46159ff879b (commit)
       via  25e1cbd8e3e7c3db1fb94b0765919dd445138341 (commit)
       via  964e5ae06d42cb1e1bfd9be9b57ed02f5c73695c (commit)
       via  a2c97049a11e4324f422ae2cc1bdfeeabf7e79a5 (commit)
       via  820524cd8a167dacaf35eda1efd9ec2ca5d2705f (commit)
      from  cd69f4433aa7e6dd1818170197d41dcd5dc116b4 (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=4a80536ce996db998c99e611f1f9425c95eabc00


commit 4a80536ce996db998c99e611f1f9425c95eabc00
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Oct 21 12:19:57 2010 +0200

    Use proper pp token.

diff --git a/testsuite/misc-ming.all/registerClassTest2.c 
b/testsuite/misc-ming.all/registerClassTest2.c
index e9b4269..ac11067 100644
--- a/testsuite/misc-ming.all/registerClassTest2.c
+++ b/testsuite/misc-ming.all/registerClassTest2.c
@@ -133,7 +133,7 @@ main(int argc, char** argv)
 #if OUTPUT_VERSION > 6
   // succeed in swf7 and swf8
   check_equals(mo, "clip1.constructor", "MovieClip");
-#else if OUTPUT_VERSION == 6
+#elif OUTPUT_VERSION == 6
   check_equals(mo, "clip1.constructor", "theClass1");
 #endif
   check_equals(mo, "clip1.__constructor__", "theClass1");

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


commit ebc3985f86926e1c8d7f38b3a4264483b94a9892
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Oct 21 10:58:37 2010 +0200

    Implement ActionToggleQuality.

diff --git a/libcore/vm/ASHandlers.cpp b/libcore/vm/ASHandlers.cpp
index 6b19df6..d43d716 100644
--- a/libcore/vm/ASHandlers.cpp
+++ b/libcore/vm/ASHandlers.cpp
@@ -532,9 +532,14 @@ ActionStop(ActionExec& thread)
 }
 
 void
-ActionToggleQuality(ActionExec&)
+ActionToggleQuality(ActionExec& thread)
 {
-    LOG_ONCE(log_unimpl("ActionToggleQuality"));
+    movie_root& mr = getRoot(thread.env);
+    if (mr.getQuality() != QUALITY_HIGH) {
+        mr.setQuality(QUALITY_HIGH);
+        return;
+    }
+    mr.setQuality(QUALITY_LOW);
 }
 
 void

http://git.savannah.gnu.org/cgit//commit/?id=5e86232dae4944916fad189f743aa3a056454386


commit 5e86232dae4944916fad189f743aa3a056454386
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Oct 21 10:58:26 2010 +0200

    Run tests for version 5 as well.

diff --git a/testsuite/actionscript.all/MovieClip.as 
b/testsuite/actionscript.all/MovieClip.as
index a73880e..bf3994f 100644
--- a/testsuite/actionscript.all/MovieClip.as
+++ b/testsuite/actionscript.all/MovieClip.as
@@ -115,7 +115,7 @@ check(!MovieClip.prototype.hasOwnProperty("_global"));
 endOfTest = function() 
 {
 #if OUTPUT_VERSION <= 5
-       check_totals(338); // SWF5
+       check_totals(347); // SWF5
 #endif
 
 #if OUTPUT_VERSION == 6
@@ -2477,6 +2477,7 @@ check_equals(r._quality, "HIGH");
 check_equals(typeof(r._quality), "string");
 check_equals(r._highquality, 1);
 check_equals(_root._highquality, 1);
+#endif
 
 // Check the old toggle quality action
 check_equals(_root._quality, "HIGH");
@@ -2505,7 +2506,6 @@ check_equals(_root._quality, "LOW");
 toggleQuality();
 check_equals(_root._quality, "HIGH");
 
-#endif 
 //_root.loadVariables(MEDIA(vars.txt), "GET");
 
 

http://git.savannah.gnu.org/cgit//commit/?id=664f967425fc80e07f807f1116e1b46159ff879b


commit 664f967425fc80e07f807f1116e1b46159ff879b
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Oct 21 10:54:56 2010 +0200

    Tests for toggleQuality.

diff --git a/testsuite/actionscript.all/MovieClip.as 
b/testsuite/actionscript.all/MovieClip.as
index 1a0ad39..a73880e 100644
--- a/testsuite/actionscript.all/MovieClip.as
+++ b/testsuite/actionscript.all/MovieClip.as
@@ -119,15 +119,15 @@ endOfTest = function()
 #endif
 
 #if OUTPUT_VERSION == 6
-       check_totals(910); // SWF6
+       check_totals(919); // SWF6
 #endif
 
 #if OUTPUT_VERSION == 7
-       check_totals(943); // SWF7
+       check_totals(952); // SWF7
 #endif
 
 #if OUTPUT_VERSION >= 8
-       check_totals(1060); // SWF8+
+       check_totals(1069); // SWF8+
 #endif
 
        play();
@@ -2477,9 +2477,38 @@ check_equals(r._quality, "HIGH");
 check_equals(typeof(r._quality), "string");
 check_equals(r._highquality, 1);
 check_equals(_root._highquality, 1);
+
+// Check the old toggle quality action
+check_equals(_root._quality, "HIGH");
+
+toggleQuality();
+check_equals(_root._quality, "LOW");
+
+toggleQuality();
+check_equals(_root._quality, "HIGH");
+
+_root._quality = "medium";
+check_equals(_root._quality, "MEDIUM");
+
+toggleQuality();
+check_equals(_root._quality, "HIGH");
+
+_root._quality = "medium";
+check_equals(_root._quality, "MEDIUM");
+
+toggleQuality();
+check_equals(_root._quality, "HIGH");
+
+toggleQuality();
+check_equals(_root._quality, "LOW");
+
+toggleQuality();
+check_equals(_root._quality, "HIGH");
+
 #endif 
 //_root.loadVariables(MEDIA(vars.txt), "GET");
 
+
 // Can't rely on this to call onData!
 
 //------------------------------------------

http://git.savannah.gnu.org/cgit//commit/?id=25e1cbd8e3e7c3db1fb94b0765919dd445138341


commit 25e1cbd8e3e7c3db1fb94b0765919dd445138341
Merge: 964e5ae cd69f44
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Oct 21 10:08:33 2010 +0200

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


http://git.savannah.gnu.org/cgit//commit/?id=964e5ae06d42cb1e1bfd9be9b57ed02f5c73695c


commit 964e5ae06d42cb1e1bfd9be9b57ed02f5c73695c
Author: Benjamin Wolsey <address@hidden>
Date:   Wed Oct 20 21:12:49 2010 +0200

    Drop gnash.h.

diff --git a/configure.ac b/configure.ac
index d0b7788..d5421f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ dnl
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, master)
-AC_CONFIG_SRCDIR([libcore/gnash.h])
+AC_CONFIG_SRCDIR([libcore/as_object.h])
 AC_CONFIG_HEADERS([gnashconfig.h])
 
 dnl AC_CONFIG_SUBDIRS(libltdl)
diff --git a/cygnal/cvm.cpp b/cygnal/cvm.cpp
index d03114d..02860e1 100644
--- a/cygnal/cvm.cpp
+++ b/cygnal/cvm.cpp
@@ -39,7 +39,6 @@
 #endif
 
 #include "ClockTime.h"
-#include "gnash.h"
 #include "movie_definition.h"
 #include "MovieClip.h"
 #include "movie_root.h"
diff --git a/doc/DESIGN b/doc/DESIGN
index 4b9cc74..7958a39 100644
--- a/doc/DESIGN
+++ b/doc/DESIGN
@@ -30,19 +30,7 @@ Component connectors
 --------------------
 
  {A} --- [gnash_core] to [sound_handler] connector 
-         Is setup with gnash::set_sound_handler()
-         and retrived with gnash::get_sound_handler().
-         Both currently exposed in server/gnash.h.
 
  {B} --- [gnash_core] to [render_handler] connector 
-         Is setup with gnash::set_render_handler()
-         exposed in gnash.h.
-         Can be retrived with gnash::get_render_handler()
-         exposed in server/render.h, or used trough
-         wrappers in the gnash::render namespace
-         (still in server/render.h)
 
  {C} --- [gnash_core] to [MediaHandler] connector 
-         Is setup with gnash::media::MediaHandler::set
-         and retrived with gnash::media::MediaHandler::get,
-         both currently exposed in libmedia/MediaHandler.h
diff --git a/gui/Player.h b/gui/Player.h
index 5489da3..e928e18 100644
--- a/gui/Player.h
+++ b/gui/Player.h
@@ -24,7 +24,6 @@
 #include "gnashconfig.h"
 #endif
 
-#include "gnash.h" 
 #include "sound_handler.h"
 #include "MediaHandler.h" 
 #include "gui.h"
diff --git a/gui/aos4/aos4.cpp b/gui/aos4/aos4.cpp
index 4b315e3..f5397cf 100644
--- a/gui/aos4/aos4.cpp
+++ b/gui/aos4/aos4.cpp
@@ -22,7 +22,6 @@
 #endif
 
 #include <cstdio>
-#include "gnash.h"
 #include "rc.h"
 
 #include <proto/asl.h>
diff --git a/gui/aos4/aos4_agg_glue.h b/gui/aos4/aos4_agg_glue.h
index b2e4acf..f74834e 100644
--- a/gui/aos4/aos4_agg_glue.h
+++ b/gui/aos4/aos4_agg_glue.h
@@ -17,7 +17,6 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 #include "aos4_glue.h"
-#include "gnash.h"
 #undef ACTION_END
 #include "Renderer.h"
 #include "Renderer_agg.h"
diff --git a/gui/aos4/aos4_cairo_glue.cpp b/gui/aos4/aos4_cairo_glue.cpp
index 391d2c0..ae01ca2 100644
--- a/gui/aos4/aos4_cairo_glue.cpp
+++ b/gui/aos4/aos4_cairo_glue.cpp
@@ -19,7 +19,6 @@
 //
 
 #include "aos4_cairo_glue.h"
-#include "gnash.h"
 #include "log.h"
 #undef ACTION_END
 #include "Renderer.h"
diff --git a/gui/aos4/aos4_cairo_glue.h b/gui/aos4/aos4_cairo_glue.h
index da4b73d..6f0d0f3 100644
--- a/gui/aos4/aos4_cairo_glue.h
+++ b/gui/aos4/aos4_cairo_glue.h
@@ -17,7 +17,6 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 #include "aos4_glue.h"
-#include "gnash.h"
 #undef ACTION_END
 #include "Renderer.h"
 #include "Renderer_cairo.h"
diff --git a/gui/aos4/aos4_glue.h b/gui/aos4/aos4_glue.h
index 4c1c949..c62c870 100644
--- a/gui/aos4/aos4_glue.h
+++ b/gui/aos4/aos4_glue.h
@@ -18,8 +18,6 @@
 #ifndef __AOS4_GLUE_H__
 #define __AOS4_GLUE_H__
 
-#include "gnash.h"
-
 #include <boost/cstdint.hpp> // for boost::?int??_t 
 
 #include "Renderer.h"
diff --git a/gui/aqua.cpp b/gui/aqua.cpp
index 487e010..391212d 100644
--- a/gui/aqua.cpp
+++ b/gui/aqua.cpp
@@ -31,7 +31,6 @@ extern "C"{
 # endif
 }
 
-#include "gnash.h"
 #include "aquasup.h"
 #include "log.h"
 #include "movie_root.h"
diff --git a/gui/fb/fb.cpp b/gui/fb/fb.cpp
index 75fbb92..f8eb021 100644
--- a/gui/fb/fb.cpp
+++ b/gui/fb/fb.cpp
@@ -99,7 +99,6 @@
 # undef ENABLE_TSLIB
 #endif
 
-#include "gnash.h"
 #include "gui.h"
 #include "fbsup.h"
 #include "log.h"
diff --git a/gui/fltk/fltk.cpp b/gui/fltk/fltk.cpp
index 2240e54..8e48bab 100644
--- a/gui/fltk/fltk.cpp
+++ b/gui/fltk/fltk.cpp
@@ -36,7 +36,6 @@
 #include <fltk/file_chooser.h>
 
 #include "fltksup.h"
-#include "gnash.h"
 #include "gui.h"
 #include "VM.h"
 #include "RunResources.h"
diff --git a/gui/fltk/fltk_glue_agg.cpp b/gui/fltk/fltk_glue_agg.cpp
index 9e1eb4e..1c1d92b 100644
--- a/gui/fltk/fltk_glue_agg.cpp
+++ b/gui/fltk/fltk_glue_agg.cpp
@@ -22,10 +22,7 @@
 
 #include <fltk/draw.h>
 
-
-
 #include "fltk_glue_agg.h"
-#include "gnash.h"
 
 #include "Renderer.h"
 #include "Renderer_agg.h"
diff --git a/gui/fltk/fltk_glue_agg.h b/gui/fltk/fltk_glue_agg.h
index 9baaa42..5221e31 100644
--- a/gui/fltk/fltk_glue_agg.h
+++ b/gui/fltk/fltk_glue_agg.h
@@ -25,7 +25,6 @@
 
 #include <fltk/Widget.h>
 
-#include "gnash.h"
 #include "log.h"
 #include "gui.h"
 
diff --git a/gui/fltk/fltk_glue_cairo.cpp b/gui/fltk/fltk_glue_cairo.cpp
index 5da9ff1..393674f 100644
--- a/gui/fltk/fltk_glue_cairo.cpp
+++ b/gui/fltk/fltk_glue_cairo.cpp
@@ -40,7 +40,6 @@
 
 #include "fltksup.h"
 #include "fltk_glue_cairo.h"
-#include "gnash.h"
 #include "log.h"
 #include "gui.h"
 
diff --git a/gui/gtk/gtk.cpp b/gui/gtk/gtk.cpp
index fde9fa7..6bfea4d 100644
--- a/gui/gtk/gtk.cpp
+++ b/gui/gtk/gtk.cpp
@@ -52,7 +52,7 @@
 #include "Renderer.h"
 #include "RunResources.h"
 #include "VM.h"
-#include "gnash.h" // Quality
+#include "GnashEnums.h"
 #include "gtk_canvas.h"
 
 #ifdef HAVE_VA_VA_H
diff --git a/gui/gtk/gtk_glue.h b/gui/gtk/gtk_glue.h
index 3c4f164..49681e6 100644
--- a/gui/gtk/gtk_glue.h
+++ b/gui/gtk/gtk_glue.h
@@ -19,8 +19,6 @@
 #ifndef GNASH_GTK_GLUE_H
 #define GNASH_GTK_GLUE_H
 
-#include "gnash.h"
-
 #include <cassert>
 
 #include <gtk/gtk.h>
diff --git a/gui/gtk/gtk_glue_agg.cpp b/gui/gtk/gtk_glue_agg.cpp
index d19daa8..1a62b42 100644
--- a/gui/gtk/gtk_glue_agg.cpp
+++ b/gui/gtk/gtk_glue_agg.cpp
@@ -29,7 +29,6 @@
 #include <gtk/gtk.h>
 #include <gdk/gdk.h>
 
-#include "gnash.h"
 #include "log.h"
 #include "Renderer.h"
 #include "Renderer_agg.h"
diff --git a/gui/gtk/gtk_glue_agg_vaapi.cpp b/gui/gtk/gtk_glue_agg_vaapi.cpp
index 1532834..ff79e2d 100644
--- a/gui/gtk/gtk_glue_agg_vaapi.cpp
+++ b/gui/gtk/gtk_glue_agg_vaapi.cpp
@@ -20,7 +20,6 @@
 #include <gtk/gtk.h>
 #include <gdk/gdk.h>
 
-#include "gnash.h"
 #include "log.h"
 #include "Renderer.h"
 #include "Renderer_agg.h"
diff --git a/gui/gui.cpp b/gui/gui.cpp
index 1212905..29aca8b 100644
--- a/gui/gui.cpp
+++ b/gui/gui.cpp
@@ -38,7 +38,7 @@
 #include "VM.h"
 #include "DisplayObject.h"
 #include "tu_file.h"
-#include "gnash.h"
+#include "GnashEnums.h"
 #include "RunResources.h"
 #include "StreamProvider.h"
 
@@ -1307,8 +1307,8 @@ void
 Gui::setQuality(Quality q)
 {
     if (!_stage) {
-       log_error("Gui::setQuality called before a movie_root was available");
-       return;
+        log_error("Gui::setQuality called before a movie_root was available");
+        return;
     }
     _stage->setQuality(q);
 }
diff --git a/gui/gui.h b/gui/gui.h
index 6565a3e..3d1be39 100644
--- a/gui/gui.h
+++ b/gui/gui.h
@@ -23,13 +23,12 @@
 #include "gnashconfig.h"
 #endif
 
-#include "SWFRect.h"  // for composition
 #include "snappingrange.h"  // for InvalidatedRanges
-#include "GnashKey.h" // for gnash::key::code type
-#include "Renderer.h" // for gnash::key::code type
+#include "GnashKey.h"
+#include "Renderer.h" 
 #include "VirtualClock.h"
 #include "SystemClock.h"
-#include "gnash.h" // for Quality
+#include "GnashEnums.h" 
 #include "movie_root.h"
 
 #ifdef USE_SWFTREE
@@ -65,8 +64,8 @@
 #define ENABLE_KEYBOARD_MOUSE_MOVEMENTS 1
 
 // Forward declarations
-namespace gnash
-{
+namespace gnash {
+    class SWFRect;
     class RunResources;
     class movie_root;
     class movie_definition;
diff --git a/gui/haiku/haiku.cpp b/gui/haiku/haiku.cpp
index 81495f7..f082240 100644
--- a/gui/haiku/haiku.cpp
+++ b/gui/haiku/haiku.cpp
@@ -25,7 +25,6 @@
 
 #include <boost/format.hpp>
 
-#include "gnash.h"
 #include "adipe.h"
 #include "haikusup.h"
 
diff --git a/gui/kde/Kde4Gui.cpp b/gui/kde/Kde4Gui.cpp
index 71bcc82..a43c5cd 100644
--- a/gui/kde/Kde4Gui.cpp
+++ b/gui/kde/Kde4Gui.cpp
@@ -57,7 +57,6 @@
 
 #include "Range2d.h"
 
-#include "gnash.h"
 #include "smart_ptr.h"
 #include "movie_definition.h" 
 #include "log.h"
@@ -374,7 +373,7 @@ Kde4Gui::qtToGnashKey(QKeyEvent *event)
 
     // Gnash uses its own keycodes to map key events
     // to the three sometimes weird and confusing values that flash movies
-    // can refer to. See gnash.h for the keycodes and map.
+    // can refer to. See GnashKey.h for the keycodes and map.
     //
     // Gnash's keycodes are gnash::key::code. They are mainly in ascii order.
     // Standard ascii characters (32-127) have the same value. Extended ascii
diff --git a/gui/kde/kde.cpp b/gui/kde/kde.cpp
index 2a431fb..0100415 100644
--- a/gui/kde/kde.cpp
+++ b/gui/kde/kde.cpp
@@ -37,7 +37,6 @@
 #endif
 #include "Range2d.h"
 
-#include "gnash.h"
 #include "movie_definition.h" 
 #include "log.h"
 
@@ -201,7 +200,7 @@ KdeGui::qtToGnashKey(QKeyEvent *event)
 
     // Gnash uses its own keycodes to map key events
     // to the three sometimes weird and confusing values that flash movies
-    // can refer to. See gnash.h for the keycodes and map.
+    // can refer to. See GnashKey.h for the keycodes and map.
     //
     // Gnash's keycodes are gnash::key::code. They are mainly in ascii order.
     // Standard ascii characters (32-127) have the same value. Extended ascii
diff --git a/gui/kde/kde_glue.h b/gui/kde/kde_glue.h
index cc7f1dd..5c48e7e 100644
--- a/gui/kde/kde_glue.h
+++ b/gui/kde/kde_glue.h
@@ -20,8 +20,6 @@
 #include "gnashconfig.h"
 #endif
 
-#include "gnash.h"
-
 #if GNASH_QT_VERSION == 4
 # include <Qt/qwidget.h>
 #else
@@ -29,8 +27,7 @@
 #endif
 #include "snappingrange.h"
 
-namespace gnash
-{
+namespace gnash {
 
 class Renderer; 
 class KdeGlue
diff --git a/gui/riscos_glue.h b/gui/riscos_glue.h
index c74e04f..36f6c08 100644
--- a/gui/riscos_glue.h
+++ b/gui/riscos_glue.h
@@ -17,10 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 
-#include "gnash.h"
-
-namespace gnash
-{
+namespace gnash {
 
 class RiscosGlue
 {
diff --git a/gui/sdl/sdl.cpp b/gui/sdl/sdl.cpp
index 85e2df8..b9a7394 100644
--- a/gui/sdl/sdl.cpp
+++ b/gui/sdl/sdl.cpp
@@ -23,7 +23,6 @@
 
 #include <cstdio>
 
-#include "gnash.h"
 #include "log.h"
 #include "sdlsup.h"
 #include "Range2d.h" // for Intersection of inv bounds
diff --git a/gui/sdl/sdl_glue.h b/gui/sdl/sdl_glue.h
index dcfeb3b..6a9cf43 100644
--- a/gui/sdl/sdl_glue.h
+++ b/gui/sdl/sdl_glue.h
@@ -16,13 +16,11 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-#include "gnash.h"
 #include "gui.h"
 
 #include <boost/cstdint.hpp> // for boost::?int??_t 
 
-namespace gnash
-{
+namespace gnash {
 
 class SdlGlue
 {
diff --git a/libbase/FileTypes.h b/libbase/GnashEnums.h
similarity index 92%
rename from libbase/FileTypes.h
rename to libbase/GnashEnums.h
index 265f5ec..93d2838 100644
--- a/libbase/FileTypes.h
+++ b/libbase/GnashEnums.h
@@ -31,6 +31,14 @@ enum FileType {
     GNASH_FILETYPE_UNKNOWN
 };
 
+enum Quality
+{
+    QUALITY_LOW,
+    QUALITY_MEDIUM,
+    QUALITY_HIGH,
+    QUALITY_BEST
+};
+
 }
 
 #endif
diff --git a/libbase/GnashImage.cpp b/libbase/GnashImage.cpp
index 2d33fec..48c70d1 100644
--- a/libbase/GnashImage.cpp
+++ b/libbase/GnashImage.cpp
@@ -33,7 +33,7 @@
 #ifdef USE_GIF
 # include "GnashImageGif.h"
 #endif
-#include "FileTypes.h"
+#include "GnashEnums.h"
 #include "GnashImageJpeg.h"
 #include "IOChannel.h"
 #include "log.h"
@@ -190,7 +190,7 @@ Output::writeImageData(FileType type,
 
 }
 
-// See gnash.h for file types.
+// See GnashEnums.h for file types.
 std::auto_ptr<GnashImage>
 Input::readImageData(boost::shared_ptr<IOChannel> in, FileType type)
 {
diff --git a/libbase/GnashImage.h b/libbase/GnashImage.h
index 6b19c60..eac3d19 100644
--- a/libbase/GnashImage.h
+++ b/libbase/GnashImage.h
@@ -30,7 +30,7 @@
 #include <boost/scoped_array.hpp>
 #include <memory> 
 
-#include "FileTypes.h"
+#include "GnashEnums.h"
 #include "log.h"
 #include "dsodefs.h"
 
@@ -366,7 +366,7 @@ public:
 
     /// Write the given image to the given IOChannel in a specified format.
     //
-    /// @param type     The image format to write in (see libcore/gnash.h)
+    /// @param type     The image format to write in (see GnashEnums.h)
     /// @param out      The IOChannel to write to.
     /// @param image    The image to write.
     /// @param quality  The quality of the image output (not used for all
diff --git a/libbase/Makefile.am b/libbase/Makefile.am
index 0f962e2..5998492 100644
--- a/libbase/Makefile.am
+++ b/libbase/Makefile.am
@@ -195,7 +195,7 @@ endif
 EXTENSIONS_API = \
        StringPredicates.h \
        Stats.h \
-       FileTypes.h \
+       GnashEnums.h \
        smart_ptr.h \
        string_table.h \
        ref_counted.h \
diff --git a/libcore/DisplayObject.cpp b/libcore/DisplayObject.cpp
index c519e0a..3e2d901 100644
--- a/libcore/DisplayObject.cpp
+++ b/libcore/DisplayObject.cpp
@@ -38,7 +38,7 @@
 #include "GnashException.h" 
 #include "ExecutableCode.h"
 #include "namedStrings.h"
-#include "gnash.h" // Quality
+#include "GnashEnums.h" 
 #include "GnashNumeric.h"
 #include "Global_as.h"
 #include "Renderer.h"
diff --git a/libcore/Makefile.am b/libcore/Makefile.am
index 0a69088..9fa2f61 100644
--- a/libcore/Makefile.am
+++ b/libcore/Makefile.am
@@ -247,7 +247,6 @@ EXTENSIONS_API = \
        GnashKey.h \
        Movie.h \
        RunResources.h \
-       gnash.h \
        DisplayObjectContainer.h \
        DisplayObject.h \
        MovieClip.h \
diff --git a/libcore/MovieFactory.cpp b/libcore/MovieFactory.cpp
index 90fb6c3..01ada19 100644
--- a/libcore/MovieFactory.cpp
+++ b/libcore/MovieFactory.cpp
@@ -19,7 +19,12 @@
 
 #include "MovieFactory.h"
 
-#include "FileTypes.h"
+#include <string>
+#include <map>
+#include <memory> 
+#include <algorithm>
+
+#include "GnashEnums.h"
 #include "GnashImage.h"
 #include "smart_ptr.h" // GNASH_USE_GC
 #include "IOChannel.h"
@@ -33,11 +38,6 @@
 #include "MovieLibrary.h"
 #include "fontlib.h"
 
-#include <string>
-#include <map>
-#include <memory> // for auto_ptr
-#include <algorithm>
-
 namespace gnash
 {
 
diff --git a/libcore/gnash.h b/libcore/gnash.h
deleted file mode 100644
index a32e72d..0000000
--- a/libcore/gnash.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// 
-//   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software
-//   Foundation, Inc
-// 
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 3 of the License, or
-// (at your option) any later version.
-// 
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-// 
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
-/// \mainpage
-///
-///  See Related Pages for movies and sprites informations
-///
-
-#ifndef GNASH_H
-#define GNASH_H
-
-/// Freedom bites
-namespace gnash {
-
-/// The display quality.
-//
-/// Required for rendering and core.
-enum Quality
-{
-    QUALITY_LOW,
-    QUALITY_MEDIUM,
-    QUALITY_HIGH,
-    QUALITY_BEST
-};
-
-}   // namespace gnash
-
-#endif // GNASH_H
-
-
-// Local Variables:
-// mode: C++
-// indent-tabs-mode: t
-// End:
diff --git a/libcore/movie_root.h b/libcore/movie_root.h
index d30ff34..3095b8f 100644
--- a/libcore/movie_root.h
+++ b/libcore/movie_root.h
@@ -84,7 +84,7 @@
 #include "drag_state.h" // for composition
 #include "GnashKey.h" // key::code
 #include "Movie.h"
-#include "gnash.h" // Quality
+#include "GnashEnums.h" 
 #include "MovieClip.h"
 #include "SimpleBuffer.h" // for LoadCallback
 #include "MovieLoader.h"
diff --git a/librender/Renderer.h b/librender/Renderer.h
index b8e55e4..6bc0e4a 100644
--- a/librender/Renderer.h
+++ b/librender/Renderer.h
@@ -149,8 +149,7 @@
 
 #include "dsodefs.h" // for DSOEXPORT
 
-#include "FileTypes.h"
-#include "gnash.h" // Quality
+#include "GnashEnums.h" 
 #include "Range2d.h"
 #include "Point2d.h"
 #include "RGBA.h"
diff --git a/librender/Renderer_agg.cpp b/librender/Renderer_agg.cpp
index 32b99cd..e5b9150 100644
--- a/librender/Renderer_agg.cpp
+++ b/librender/Renderer_agg.cpp
@@ -153,7 +153,7 @@ AGG resources
 #include <agg_gradient_lut.h>
 #include <agg_alpha_mask_u8.h>
 
-#include "gnash.h"
+#include "GnashEnums.h"
 #include "CachedBitmap.h"
 #include "RGBA.h"
 #include "GnashImage.h"
diff --git a/librender/Renderer_ogl.cpp b/librender/Renderer_ogl.cpp
index f39cceb..c8a5c57 100644
--- a/librender/Renderer_ogl.cpp
+++ b/librender/Renderer_ogl.cpp
@@ -27,7 +27,7 @@
 
 #include "smart_ptr.h"
 #include "swf/ShapeRecord.h"
-#include "gnash.h"
+#include "GnashEnums.h"
 #include "RGBA.h"
 #include "GnashImage.h"
 #include "GnashTexture.h"
diff --git a/plugin/aos4/plugin.h b/plugin/aos4/plugin.h
index f10a0aa..4dfc886 100644
--- a/plugin/aos4/plugin.h
+++ b/plugin/aos4/plugin.h
@@ -16,8 +16,8 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-#ifndef __PLUGIN_H__
-#define __PLUGIN_H__
+#ifndef GNASH_AOS4_PLUGIN_H
+#define GNASH_AOS4_PLUGIN_H
  
 #include <string>
 #include "pluginbase.h"
@@ -29,7 +29,6 @@
 #include "prerror.h"
 #include "prthread.h"
 
-#include "gnash.h"
 #include "log.h"
 #include "rc.h"
 #include "Player.h"
diff --git a/plugin/win32/plugin.h b/plugin/win32/plugin.h
index a354b28..5243075 100644
--- a/plugin/win32/plugin.h
+++ b/plugin/win32/plugin.h
@@ -16,8 +16,8 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-#ifndef __PLUGIN_H__
-#define __PLUGIN_H__
+#ifndef GNASH_W32_PLUGIN_H
+#define GNASH_W32_PLUGIN_H
  
 #include <string>
 #include "pluginbase.h"
@@ -29,7 +29,6 @@
 #include "prerror.h"
 #include "prthread.h"
 
-#include "gnash.h"
 #include "log.h"
 #include "rc.h"
 #include "Player.h"
diff --git a/testsuite/MovieTester.h b/testsuite/MovieTester.h
index 4b7b488..0da7e32 100644
--- a/testsuite/MovieTester.h
+++ b/testsuite/MovieTester.h
@@ -229,13 +229,13 @@ public:
 
        /// Notify key press
        //
-       /// See key codes in namespace gnash::key (gnash.h)
+       /// See key codes in namespace gnash::key (GnashKey.h)
        ///
        void pressKey(key::code k);
 
        /// Notify key release
        //
-       /// See key codes in namespace gnash::key (gnash.h)
+       /// See key codes in namespace gnash::key (GnashKey.h)
        ///
        void releaseKey(key::code k);
 
diff --git a/utilities/dumpshm.cpp b/utilities/dumpshm.cpp
index 5438906..d20d46e 100644
--- a/utilities/dumpshm.cpp
+++ b/utilities/dumpshm.cpp
@@ -67,7 +67,6 @@ extern char *optarg;
 #include "log.h"
 #include "rc.h"
 #include "shm.h"
-#include "gnash.h"
 #include "amf.h"
 #include "lcshm.h"
 
diff --git a/utilities/processor.cpp b/utilities/processor.cpp
index 0d59d6c..3d3bd73 100644
--- a/utilities/processor.cpp
+++ b/utilities/processor.cpp
@@ -38,7 +38,6 @@
 #include "swf/TagLoadersTable.h"
 #include "swf/DefaultTagLoaders.h"
 #include "ClockTime.h"
-#include "gnash.h"
 #include "movie_definition.h"
 #include "MovieClip.h"
 #include "movie_root.h"

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


commit a2c97049a11e4324f422ae2cc1bdfeeabf7e79a5
Author: Benjamin Wolsey <address@hidden>
Date:   Wed Oct 20 20:42:10 2010 +0200

    Cleanups.

diff --git a/libcore/parser/action_buffer.cpp b/libcore/parser/action_buffer.cpp
index 4729fb5..fa0cdf1 100644
--- a/libcore/parser/action_buffer.cpp
+++ b/libcore/parser/action_buffer.cpp
@@ -19,21 +19,16 @@
 //
 
 #include "action_buffer.h"
+
+#include <string>
+#include <boost/static_assert.hpp>
+
 #include "log.h"
 #include "SWFStream.h"
 #include "SWF.h"
 #include "ASHandlers.h"
-#include "as_environment.h"
 #include "movie_definition.h"
 
-#include <typeinfo> 
-
-#include <string>
-#include <boost/static_assert.hpp>
-
-using std::string;
-using std::endl;
-
 namespace gnash {
 
 // Forward declarations
@@ -56,10 +51,10 @@ action_buffer::read(SWFStream& in, unsigned long endPos)
     assert(endPos <= in.get_tag_end_position());
     unsigned size = endPos-startPos;
 
-    if ( ! size )
-    {
+    if (!size) {
         IF_VERBOSE_MALFORMED_SWF(
-        log_swferror(_("Empty action buffer starting at offset %lu"), 
startPos);
+            log_swferror(_("Empty action buffer starting at offset %lu"),
+                startPos);
         );
         return;
     }
@@ -89,36 +84,31 @@ action_buffer::read(SWFStream& in, unsigned long endPos)
     // NOTE: it is common to find such movies, swfmill is known to write
     //       DoAction w/out the terminating END tag
     //
-    if ( m_buffer.back() != SWF::ACTION_END )
-    {
+    if (m_buffer.back() != SWF::ACTION_END) {
         // Add a null terminator so read_string won't read off
         // the end of the buffer.
         m_buffer.push_back(0x00);
 
         IF_VERBOSE_MALFORMED_SWF(
-            log_swferror(_("Action buffer starting at offset %lu doesn't end 
with an END tag"),
-                startPos);
+            log_swferror(_("Action buffer starting at offset %lu doesn't "
+                    "end with an END tag"), startPos);
         );
     }
     
 }
 
-/*public*/
 void
 action_buffer::process_decl_dict(size_t start_pc, size_t stop_pc) const
 {
     assert(stop_pc <= m_buffer.size());
-    
-
     // Skip if we've already processed this decl_dict, but make sure
     // the size is the same.
     if (static_cast<size_t>(m_decl_dict_processed_at) == start_pc) {
         const int dictSize = read_int16(start_pc + 3);
-        if (static_cast<int>(m_dictionary.size()) != dictSize)
-        {
+        if (static_cast<int>(m_dictionary.size()) != dictSize) {
             /// TODO: is it possible to continue?
             throw ActionParserException(_("Constant pool size "
-                        "mismatch. This is probably a very malformed SWF"));
+                "mismatch. This is probably a very malformed SWF"));
         }
         return;
     }
@@ -127,8 +117,8 @@ action_buffer::process_decl_dict(size_t start_pc, size_t 
stop_pc) const
     
     // Actual processing.
     size_t i = start_pc;
-    boost::uint16_t length = boost::uint16_t(read_int16(i+1));
-    boost::uint16_t count = boost::uint16_t(read_int16(i+3)); 
+    const boost::uint16_t length = read_uint16(i + 1);
+    const boost::uint16_t count = read_uint16(i + 3); 
     i += 2;
     
     assert(start_pc + 3 + length == stop_pc);
@@ -180,16 +170,16 @@ disasm_instruction(const unsigned char* instruction_data,
 
     // Show instruction.
     if (action_id > ash.lastType()) {
-        ss << "<unknown>[0x]" <<  action_id << endl;
+        ss << "<unknown>[0x]" <<  action_id << "\n";
     }
     else {
         ss << ash[action_id].getType();
     }
     
     // Show instruction argument(s).
-    if (action_id & 0x80)
-    {
-        assert (maxBufferLength >= 3);
+    if (action_id & 0x80) {
+
+        assert(maxBufferLength >= 3);
         ss << " (";
         fmt = ash[action_id].getArgFormat();
         
@@ -197,10 +187,10 @@ disasm_instruction(const unsigned char* instruction_data,
         
         // Assert that length without the three initial bytes
         // is always within the buffer.
-        assert (length <= maxBufferLength - 3);
+        assert(length <= maxBufferLength - 3);
+
+        switch (fmt) {
 
-        switch (fmt)
-        {
             case ARG_NONE:
                 break;
 
@@ -630,9 +620,8 @@ convert_double_wacky(const void *p)
     return u.d;
 }
 
-}
-
-}
+} // unnamed namespace
+} // namespace gnash
 
 // Local Variables:
 // mode: C++
diff --git a/libcore/parser/action_buffer.h b/libcore/parser/action_buffer.h
index a93d55a..42d509f 100644
--- a/libcore/parser/action_buffer.h
+++ b/libcore/parser/action_buffer.h
@@ -20,12 +20,12 @@
 #define GNASH_ACTION_BUFFER_H
 
 #include <string>
+#include <vector> 
 #include <boost/noncopyable.hpp>
-#include <boost/cstdint.hpp> // for boost::uint8_t
-#include <vector> // for composition
+#include <boost/cstdint.hpp> 
 
 #include "GnashException.h"
-#include "log.h" // For gettext macro
+#include "log.h"
 
 // Forward declarations
 namespace gnash {

http://git.savannah.gnu.org/cgit//commit/?id=820524cd8a167dacaf35eda1efd9ec2ca5d2705f


commit 820524cd8a167dacaf35eda1efd9ec2ca5d2705f
Author: Benjamin Wolsey <address@hidden>
Date:   Wed Oct 20 20:31:44 2010 +0200

    Clean ups.

diff --git a/libcore/parser/action_buffer.cpp b/libcore/parser/action_buffer.cpp
index 8ec6de0..4729fb5 100644
--- a/libcore/parser/action_buffer.cpp
+++ b/libcore/parser/action_buffer.cpp
@@ -37,7 +37,10 @@ using std::endl;
 namespace gnash {
 
 // Forward declarations
-static float convert_float_little(const void *p);
+namespace {
+    float convert_float_little(const void *p);
+    double convert_double_wacky(const void *p);
+}
 
 action_buffer::action_buffer(const movie_definition& md)
     :
@@ -392,20 +395,21 @@ disasm_instruction(const unsigned char* instruction_data,
                        << " arg count = " << argCount
                        << " register count = " << 
static_cast<int>(registerCount);
                 
-                boost::uint16_t flags = (instruction_data[3 + i]) | 
(instruction_data[3 + i + 1] << 8);
+                const boost::uint16_t flags =
+                    (instruction_data[3 + i]) |
+                    (instruction_data[3 + i + 1] << 8);
+
                 i += 2;
                 
-                // @@ What is the difference between "super" and "_parent"?
-                
-                bool preload_global = (flags & 0x100) != 0;
-                bool preload_parent = (flags & 0x80) != 0;
-                bool preload_root   = (flags & 0x40) != 0;
-                bool suppress_super = (flags & 0x20) != 0;
-                bool preload_super  = (flags & 0x10) != 0;
-                bool suppress_args  = (flags & 0x08) != 0;
-                bool preload_args   = (flags & 0x04) != 0;
-                bool suppress_this  = (flags & 0x02) != 0;
-                bool preload_this   = (flags & 0x01) != 0;
+                const bool preload_global = (flags & 0x100);
+                const bool preload_parent = (flags & 0x80);
+                const bool preload_root   = (flags & 0x40);
+                const bool suppress_super = (flags & 0x20);
+                const bool preload_super  = (flags & 0x10);
+                const bool suppress_args  = (flags & 0x08);
+                const bool preload_args   = (flags & 0x04);
+                const bool suppress_this  = (flags & 0x02);
+                const bool preload_this   = (flags & 0x01);
                 
                 ss << " pg=" << preload_global
                 << " pp=" << preload_parent
@@ -417,8 +421,8 @@ disasm_instruction(const unsigned char* instruction_data,
                 << " st=" << suppress_this
                 << " pt=" << preload_this;
 
-                for (size_t argi = 0; argi < argCount; ++argi)
-                {
+                for (size_t argi = 0; argi < argCount; ++argi) {
+
                     // Make sure not to read past the end of the
                     // instruction.
                     if (i >= length) break;
@@ -428,8 +432,7 @@ disasm_instruction(const unsigned char* instruction_data,
 
                     std::string argName;
                     // Signature info for a function2 opcode.
-                    while (instruction_data[3 + i] && i <= length)
-                    {
+                    while (instruction_data[3 + i] && i <= length) {
                         argName.push_back(instruction_data[3 + i]);
                         i++;
                     }
@@ -467,6 +470,32 @@ action_buffer::disasm(size_t pc) const
     return disasm_instruction(&m_buffer[pc], maxBufferLength);
 }
 
+float
+action_buffer::read_float_little(size_t pc) const
+{
+    return convert_float_little(&m_buffer[pc]);
+}
+
+double
+action_buffer::read_double_wacky(size_t pc) const
+{
+    return convert_double_wacky(&m_buffer[pc]);
+}
+
+const std::string&
+action_buffer::getDefinitionURL() const
+{
+    return _src.get_url();
+}
+
+int
+action_buffer::getDefinitionVersion() const
+{
+    return _src.get_version();
+}
+
+namespace {
+
 // Endian conversion routines.
 //
 // Flash format stores integers as little-endian,
@@ -482,12 +511,12 @@ action_buffer::disasm(size_t pc) const
 
 // Read a little-endian 32-bit float from m_buffer[pc]
 // and return it as a host-endian float.
-static float
+float
 convert_float_little(const void *p)
 {
     // Hairy union for endian detection and munging
     union {
-        float    f;
+        float f;
         boost::uint32_t i;
         struct {    // for endian detection
             boost::uint16_t s0;
@@ -503,36 +532,38 @@ convert_float_little(const void *p)
 
     u.f = 1.0;
     switch (u.s.s0) {
-    case 0x0000:    // little-endian host
-        memcpy(&u.i, p, 4);
-        break;
-    case 0x3f80:    // big-endian host
+
+        case 0x0000:    // little-endian host
+            std::memcpy(&u.i, p, 4);
+            break;
+        case 0x3f80:    // big-endian host
         {
-        const boost::uint8_t *cp = static_cast<const boost::uint8_t *>(p);
-        u.c.c0 = cp[3];
-        u.c.c1 = cp[2];
-        u.c.c2 = cp[1];
-        u.c.c3 = cp[0];
+            const boost::uint8_t *cp = static_cast<const boost::uint8_t*>(p);
+            u.c.c0 = cp[3];
+            u.c.c1 = cp[2];
+            u.c.c2 = cp[1];
+            u.c.c3 = cp[0];
+            break;
         }
-        break;
-    default:
-        log_error(_("Native floating point format not recognised"));
-        abort();
+        default:
+            log_error(_("Native floating point format not recognised"));
+            std::abort();
     }
     
     return u.f;
 }
 
+
 // Read a 64-bit double from memory, stored in word-swapped little-endian
 // format and return it as a host-endian double.
 // "Wacky format" is 45670123.
 double
 convert_double_wacky(const void *p)
 {
-    const boost::uint8_t *cp = static_cast<const boost::uint8_t *>(p);    // 
Handy uchar version
+    const boost::uint8_t *cp = static_cast<const boost::uint8_t*>(p);
     union {
-        double    d;
-        boost::uint64_t    i;
+        double d;
+        boost::uint64_t i;
         struct {
             boost::uint32_t l0;
             boost::uint32_t l1;
@@ -564,8 +595,8 @@ convert_double_wacky(const void *p)
     u.d = static_cast<double>(0x11223344);
     switch (u.s.s0) {
     case 0x0000:    // pure little-endian host: swap words only.
-        memcpy(&u.l.l1, cp, 4);
-        memcpy(&u.l.l0, cp + 4, 4);
+        std::memcpy(&u.l.l1, cp, 4);
+        std::memcpy(&u.l.l0, cp + 4, 4);
         break;
     case 0x41b1:    // pure big-endian host: swap contents of 32-bit words
         u.c.c0 = cp[3];
@@ -579,7 +610,7 @@ convert_double_wacky(const void *p)
         break;
     case 0x2233:    // word-swapped little-endian host (PDP / ARM FPA)
             // is the same as wacky format.
-        memcpy(&u.i, cp, 8);
+        std::memcpy(&u.i, cp, 8);
         break;
     case 0x4400:    // word-swapped big-endian host: does this exist?
         u.c.c0 = cp[7];
@@ -599,28 +630,6 @@ convert_double_wacky(const void *p)
     return u.d;
 }
 
-float
-action_buffer::read_float_little(size_t pc) const
-{
-    return(convert_float_little(&m_buffer[pc]));
-}
-
-double
-action_buffer::read_double_wacky(size_t pc) const
-{
-    return(convert_double_wacky(&m_buffer[pc]));
-}
-
-const std::string&
-action_buffer::getDefinitionURL() const
-{
-    return _src.get_url();
-}
-
-int
-action_buffer::getDefinitionVersion() const
-{
-    return _src.get_version();
 }
 
 }
diff --git a/libcore/parser/action_buffer.h b/libcore/parser/action_buffer.h
index ff671b1..a93d55a 100644
--- a/libcore/parser/action_buffer.h
+++ b/libcore/parser/action_buffer.h
@@ -35,13 +35,8 @@ namespace gnash {
        class SWFStream; // for read signature
 }
 
-
 namespace gnash {
 
-class ActionExec;
-
-double convert_double_wacky(const void *p);
-
 /// A code segment.
 //
 /// This currently holds the actions in a memory
@@ -53,7 +48,6 @@ double convert_double_wacky(const void *p);
 class action_buffer : boost::noncopyable
 {
 public:
-       friend class ActionExec;
 
        action_buffer(const movie_definition& md);
 
diff --git a/libcore/swf/tag_loaders.cpp b/libcore/swf/tag_loaders.cpp
index c74ad55..686b21f 100644
--- a/libcore/swf/tag_loaders.cpp
+++ b/libcore/swf/tag_loaders.cpp
@@ -45,12 +45,12 @@
 namespace gnash {
 namespace SWF {
 
-/// Anonymous namespace
+// Anonymous namespace
 namespace {
 
 const boost::uint32_t samplerates[] = { 5512, 11025, 22050, 44100 };
 
-} // anonymous namespace
+} 
 
 // Label the current frame of m with the name from the SWFStream.
 void

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

Summary of changes:
 configure.ac                                 |    2 +-
 cygnal/cvm.cpp                               |    1 -
 doc/DESIGN                                   |   12 --
 gui/Player.h                                 |    1 -
 gui/aos4/aos4.cpp                            |    1 -
 gui/aos4/aos4_agg_glue.h                     |    1 -
 gui/aos4/aos4_cairo_glue.cpp                 |    1 -
 gui/aos4/aos4_cairo_glue.h                   |    1 -
 gui/aos4/aos4_glue.h                         |    2 -
 gui/aqua.cpp                                 |    1 -
 gui/fb/fb.cpp                                |    1 -
 gui/fltk/fltk.cpp                            |    1 -
 gui/fltk/fltk_glue_agg.cpp                   |    3 -
 gui/fltk/fltk_glue_agg.h                     |    1 -
 gui/fltk/fltk_glue_cairo.cpp                 |    1 -
 gui/gtk/gtk.cpp                              |    2 +-
 gui/gtk/gtk_glue.h                           |    2 -
 gui/gtk/gtk_glue_agg.cpp                     |    1 -
 gui/gtk/gtk_glue_agg_vaapi.cpp               |    1 -
 gui/gui.cpp                                  |    6 +-
 gui/gui.h                                    |   11 +-
 gui/haiku/haiku.cpp                          |    1 -
 gui/kde/Kde4Gui.cpp                          |    3 +-
 gui/kde/kde.cpp                              |    3 +-
 gui/kde/kde_glue.h                           |    5 +-
 gui/riscos_glue.h                            |    5 +-
 gui/sdl/sdl.cpp                              |    1 -
 gui/sdl/sdl_glue.h                           |    4 +-
 libbase/{FileTypes.h => GnashEnums.h}        |    8 +
 libbase/GnashImage.cpp                       |    4 +-
 libbase/GnashImage.h                         |    4 +-
 libbase/Makefile.am                          |    2 +-
 libcore/DisplayObject.cpp                    |    2 +-
 libcore/Makefile.am                          |    1 -
 libcore/MovieFactory.cpp                     |   12 +-
 libcore/gnash.h                              |   49 -------
 libcore/movie_root.h                         |    2 +-
 libcore/parser/action_buffer.cpp             |  186 +++++++++++++-------------
 libcore/parser/action_buffer.h               |   12 +--
 libcore/swf/tag_loaders.cpp                  |    4 +-
 libcore/vm/ASHandlers.cpp                    |    9 +-
 librender/Renderer.h                         |    3 +-
 librender/Renderer_agg.cpp                   |    2 +-
 librender/Renderer_ogl.cpp                   |    2 +-
 plugin/aos4/plugin.h                         |    5 +-
 plugin/win32/plugin.h                        |    5 +-
 testsuite/MovieTester.h                      |    4 +-
 testsuite/actionscript.all/MovieClip.as      |   39 +++++-
 testsuite/misc-ming.all/registerClassTest2.c |    2 +-
 utilities/dumpshm.cpp                        |    1 -
 utilities/processor.cpp                      |    1 -
 51 files changed, 184 insertions(+), 250 deletions(-)
 rename libbase/{FileTypes.h => GnashEnums.h} (92%)
 delete mode 100644 libcore/gnash.h


hooks/post-receive
-- 
Gnash



reply via email to

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