gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/libbase jpeg.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash/libbase jpeg.cpp
Date: Tue, 15 May 2007 12:54:12 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/05/15 12:54:12

Modified files:
        libbase        : jpeg.cpp 

Log message:
        Oops, last commit didn't build

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/jpeg.cpp?cvsroot=gnash&r1=1.14&r2=1.15

Patches:
Index: jpeg.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/jpeg.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- jpeg.cpp    15 May 2007 12:46:15 -0000      1.14
+++ jpeg.cpp    15 May 2007 12:54:12 -0000      1.15
@@ -63,7 +63,7 @@
 
                // Read data into our input buffer.  Client calls this
                // when it needs more data from the file.
-               static bool fill_input_buffer(j_decompress_ptr cinfo)
+               static boolean fill_input_buffer(j_decompress_ptr cinfo)
                {
                        rw_source*      src = (rw_source*) cinfo->src;
 
@@ -73,7 +73,7 @@
                                // Is the file completely empty?
                                if (src->m_start_of_file) {
                                        // Treat this as a fatal error.
-                                       gnash::log("empty jpeg source stream.");
+                                       gnash::log_error("empty jpeg source 
stream.");
                                        return false;
                                }
                                // warn("jpeg end-of-stream");
@@ -204,7 +204,7 @@
                }
 
                /// Write the output buffer into the stream.
-               static bool     empty_output_buffer(j_compress_ptr cinfo)
+               static boolean  empty_output_buffer(j_compress_ptr cinfo)
                {
                        rw_dest*        dest = (rw_dest*) cinfo->dest;
                        assert(dest);




reply via email to

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