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-1731-gdcad78d
Date: Sun, 11 Aug 2013 00:15:22 +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  dcad78d5cc42958b22401ade13e91c07eeea71c4 (commit)
       via  6c52f8f399f6aa3f3733ba8b3320f4d91d1d8419 (commit)
      from  f4083de7b4f71af9b7fc21b152d0911ced7e4a9b (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=dcad78d5cc42958b22401ade13e91c07eeea71c4


commit dcad78d5cc42958b22401ade13e91c07eeea71c4
Author: Gabriele Giacone <address@hidden>
Date:   Sun Aug 11 02:07:38 2013 +0200

    doc/C: fix line wrap.

diff --git a/doc/C/Makefile.am b/doc/C/Makefile.am
index 0afd553..91d6709 100644
--- a/doc/C/Makefile.am
+++ b/doc/C/Makefile.am
@@ -230,7 +230,7 @@ endif
 if ENABLE_TEXI
        -if test x$(DB2X_TEXI) != x; then \
          out=`echo $* | sed -e 's:gnash:gnash_:'`; \
-         $(DB2X_TEXI) --info --encoding=us-ascii//TRANSLIT --string-param
+         $(DB2X_TEXI) --info --encoding=us-ascii//TRANSLIT --string-param \
 directory-description="Gnash" --string-param output-file=$${out} $<; \
        else \
          basefile="$*"; \

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


commit 6c52f8f399f6aa3f3733ba8b3320f4d91d1d8419
Author: Gabriele Giacone <address@hidden>
Date:   Sat Aug 10 21:10:51 2013 +0200

    Fix warnings: variables set but not used.

diff --git a/libmedia/gst/VideoInputGst.cpp b/libmedia/gst/VideoInputGst.cpp
index 8f23c32..9a728ff 100644
--- a/libmedia/gst/VideoInputGst.cpp
+++ b/libmedia/gst/VideoInputGst.cpp
@@ -649,8 +649,6 @@ VideoInputGst::getSelectedCaps(gint dev_select)
     GstMessage *message;
     
     GnashWebcam *data_struct = _vidVect[dev_select];
-    GstElement *element;
-    element = data_struct->getElementPtr();
     
     if (dev_select < 0 ||
             static_cast<size_t>(dev_select) >= _vidVect.size()) {
@@ -1540,10 +1538,9 @@ VideoInputGst::play()
 
     GstStateChangeReturn state;
     GstBus *bus;
-    gint ret;
     //setup bus to watch pipeline for messages
     bus = gst_pipeline_get_bus (GST_PIPELINE (webcam->_pipeline));
-    ret = gst_bus_add_watch (bus, bus_call, webcam);
+    gst_bus_add_watch (bus, bus_call, webcam);
     gst_object_unref (bus);
     
     state = gst_element_set_state (webcam->_pipeline, GST_STATE_PLAYING);

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

Summary of changes:
 doc/C/Makefile.am              |    2 +-
 libmedia/gst/VideoInputGst.cpp |    5 +----
 2 files changed, 2 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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