gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libbase/FLVParser.cpp libbase/F...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog libbase/FLVParser.cpp libbase/F...
Date: Mon, 04 Jun 2007 09:15:41 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/06/04 09:15:41

Modified files:
        .              : ChangeLog 
        libbase        : FLVParser.cpp FLVParser.h 

Log message:
        * libbase/FLVParser.{cpp,h}: put FLVParser in the gnash namespace.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3444&r2=1.3445
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/FLVParser.cpp?cvsroot=gnash&r1=1.20&r2=1.21
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/FLVParser.h?cvsroot=gnash&r1=1.13&r2=1.14

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3444
retrieving revision 1.3445
diff -u -b -r1.3444 -r1.3445
--- ChangeLog   4 Jun 2007 09:04:32 -0000       1.3444
+++ ChangeLog   4 Jun 2007 09:15:40 -0000       1.3445
@@ -1,5 +1,9 @@
 2007-06-04 Sandro Santilli <address@hidden>
 
+       * libbase/FLVParser.{cpp,h}: put FLVParser in the gnash namespace.
+
+2007-06-04 Sandro Santilli <address@hidden>
+
        * server/asobj/NetStreamFfmpeg.{cpp,h}: Drop the decoder mutex and
          conditional variable. Decoder should never stop till the end of
          the stream is fully decoder. Rename {pause,unpause}Decoding to

Index: libbase/FLVParser.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/FLVParser.cpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- libbase/FLVParser.cpp       31 May 2007 14:30:03 -0000      1.20
+++ libbase/FLVParser.cpp       4 Jun 2007 09:15:41 -0000       1.21
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-// $Id: FLVParser.cpp,v 1.20 2007/05/31 14:30:03 strk Exp $
+// $Id: FLVParser.cpp,v 1.21 2007/06/04 09:15:41 strk Exp $
 
 #include "FLVParser.h"
 #include "amf.h"
@@ -28,6 +28,8 @@
 // Define the following macro the have seek() operations printed
 //#define GNASH_DEBUG_SEEK 1
 
+namespace gnash {
+
 FLVParser::FLVParser(LoadThread& lt)
        :
        _lt(lt),
@@ -668,4 +670,6 @@
        return (in[0] << 16) | (in[1] << 8) | in[2];
 }
 
+} // end of gnash namespace
+
 #undef PADDING_BYTES

Index: libbase/FLVParser.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/FLVParser.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- libbase/FLVParser.h 30 May 2007 12:48:21 -0000      1.13
+++ libbase/FLVParser.h 4 Jun 2007 09:15:41 -0000       1.14
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-// $Id: FLVParser.h,v 1.13 2007/05/30 12:48:21 strk Exp $
+// $Id: FLVParser.h,v 1.14 2007/06/04 09:15:41 strk Exp $
 
 // Information about the FLV format can be found at http://osflash.org/flv
 
@@ -28,6 +28,8 @@
 #include <vector>
 #include <boost/thread/mutex.hpp>
 
+namespace gnash {
+
 enum videoCodecType
 {
        VIDEO_CODEC_H263 = 2,   // H263/SVQ3 video codec
@@ -330,4 +332,6 @@
        boost::mutex _mutex;
 };
 
+} // end of gnash namespace
+
 #endif // __FLVPARSER_H__




reply via email to

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