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. 641db68e30d4bb0422a0


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 641db68e30d4bb0422a00a96d618534b34cac274
Date: Mon, 20 Dec 2010 10:07:05 +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  641db68e30d4bb0422a00a96d618534b34cac274 (commit)
      from  f3b66b64ed6c2e804f57301cea1e722bd8f5aaa8 (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=641db68e30d4bb0422a00a96d618534b34cac274


commit 641db68e30d4bb0422a00a96d618534b34cac274
Author: Sandro Santilli <address@hidden>
Date:   Mon Dec 20 11:05:40 2010 +0100

    Add -D and -S switches when building dump-gui. Fixes bug #31829.

diff --git a/gui/gnash.cpp b/gui/gnash.cpp
index d866c93..5498eaa 100644
--- a/gui/gnash.cpp
+++ b/gui/gnash.cpp
@@ -512,6 +512,26 @@ getSupportedOptions(gnash::Player& p)
 
     desc.add(getDebuggingOptions(p));
 
+
+// Add gui-specific options
+// TODO make this somehow cleaner, maybe add a signature
+//      for such function in each of the gui's mains
+//      like getGuiOptions()
+#ifdef GUI_DUMP
+    po::options_description dumpOpts (_("Dump options"));
+
+    dumpOpts.add_options()
+
+    (",D", po::value<string>(),
+        _("Video dump file (raw format) and optional video FPS (@<num>)"))
+    (",S", po::value<string>(),
+        _("Number of milliseconds to sleep between advances"))
+    ;
+
+    desc.add(dumpOpts);
+#endif
+
+
     return desc;
 }
 

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

Summary of changes:
 gui/gnash.cpp |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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