gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog gui/Player.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/Player.cpp
Date: Tue, 30 Oct 2007 15:54:46 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/10/30 15:54:45

Modified files:
        .              : ChangeLog 
        gui            : Player.cpp 

Log message:
                * gui/Player.cpp (run): don't give up if the movie has 
collapsed size.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4744&r2=1.4745
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Player.cpp?cvsroot=gnash&r1=1.67&r2=1.68

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4744
retrieving revision 1.4745
diff -u -b -r1.4744 -r1.4745
--- ChangeLog   30 Oct 2007 15:32:05 -0000      1.4744
+++ ChangeLog   30 Oct 2007 15:54:44 -0000      1.4745
@@ -1,5 +1,6 @@
 2007-10-30 Sandro Santilli <address@hidden>
 
+       * gui/Player.cpp (run): don't give up if the movie has collapsed size.
        * testsuite/misc-ming.all/DrawingApiTestRunner.cpp: 
          Check rendering effects of the setMask call.
 

Index: gui/Player.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/Player.cpp,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -b -r1.67 -r1.68
--- gui/Player.cpp      1 Oct 2007 21:47:04 -0000       1.67
+++ gui/Player.cpp      30 Oct 2007 15:54:45 -0000      1.68
@@ -300,8 +300,9 @@
 
     if ( ! width || ! height )
     {
-        log_error(_("Input movie has collapsed dimensions " SIZET_FMT "/" 
SIZET_FMT ". Giving up."), width, height);
-       return EXIT_FAILURE;
+        //log_error(_("Input movie has collapsed dimensions " SIZET_FMT "/" 
SIZET_FMT ". Giving up."), width, height);
+        log_debug(_("Input movie has collapsed dimensions " SIZET_FMT "/" 
SIZET_FMT ". Continuing anyway."), width, height);
+       //return EXIT_FAILURE;
     }
 
     // Now that we know about movie size, create gui window.




reply via email to

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