gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libmedia/MediaParser.h libmedia...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog libmedia/MediaParser.h libmedia...
Date: Fri, 06 Jun 2008 19:08:38 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/06/06 19:08:38

Modified files:
        .              : ChangeLog 
        libmedia       : MediaParser.h MediaHandler.h 
        libmedia/gst   : MediaHandlerGst.h 

Log message:
                * libmedia/MediaHandler.h, libmedia/MediaParser.h,
                  libmedia/gst/MediaHandlerGst.h: fix visibility build, use 
legal
                  header guards.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6837&r2=1.6838
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/MediaParser.h?cvsroot=gnash&r1=1.19&r2=1.20
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/MediaHandler.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/gst/MediaHandlerGst.h?cvsroot=gnash&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6837
retrieving revision 1.6838
diff -u -b -r1.6837 -r1.6838
--- ChangeLog   6 Jun 2008 16:45:07 -0000       1.6837
+++ ChangeLog   6 Jun 2008 19:08:37 -0000       1.6838
@@ -1,3 +1,9 @@
+2008-06-06 Benjamin Wolsey <address@hidden>
+
+       * libmedia/MediaHandler.h, libmedia/MediaParser.h,
+         libmedia/gst/MediaHandlerGst.h: fix visibility build, use legal
+         header guards.
+
 2008-06-06 Sandro Santilli <address@hidden>
 
        * libmedia/: Makefile.am, MediaParser.{cpp,h}:

Index: libmedia/MediaParser.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/MediaParser.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- libmedia/MediaParser.h      6 Jun 2008 16:45:08 -0000       1.19
+++ libmedia/MediaParser.h      6 Jun 2008 19:08:38 -0000       1.20
@@ -17,14 +17,15 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 
-#ifndef __MEDIAPARSER_H__
-#define __MEDIAPARSER_H__
+#ifndef GNASH_MEDIAPARSER_H
+#define GNASH_MEDIAPARSER_H
 
 #ifdef HAVE_CONFIG_H
 #include "gnashconfig.h"
 #endif
 
 #include "tu_file.h" // for inlines
+#include "dsodefs.h" // DSOEXPORT
 
 #include <boost/scoped_array.hpp>
 #include <memory>
@@ -249,7 +250,7 @@
        /// frames and let NetSTream::bufferLength() use that with playhead
        /// time to find out...
        ///
-       boost::uint64_t getBufferLength() const;
+       DSOEXPORT boost::uint64_t getBufferLength() const;
 
        /// Get timestamp of the video frame which would be returned on 
nextVideoFrame
        //

Index: libmedia/MediaHandler.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/MediaHandler.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- libmedia/MediaHandler.h     4 Jun 2008 10:06:28 -0000       1.3
+++ libmedia/MediaHandler.h     6 Jun 2008 19:08:38 -0000       1.4
@@ -17,14 +17,15 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 
-#ifndef __MEDIAHANDLER_H__
-#define __MEDIAHANDLER_H__
+#ifndef MEDIAHANDLER_H
+#define MEDIAHANDLER_H
 
 #ifdef HAVE_CONFIG_H
 #include "gnashconfig.h"
 #endif
 
 #include "MediaParser.h" // for videoCodecType and audioCodecType enums
+#include "dsodefs.h" // DSOEXPORT
 
 #include <memory>
 
@@ -43,7 +44,7 @@
 namespace media {
 
 /// The MediaHandler class acts as a factory to provide parser and decoders
-class MediaHandler
+class DSOEXPORT MediaHandler
 {
 public:
 

Index: libmedia/gst/MediaHandlerGst.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/gst/MediaHandlerGst.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- libmedia/gst/MediaHandlerGst.h      3 Jun 2008 16:11:45 -0000       1.2
+++ libmedia/gst/MediaHandlerGst.h      6 Jun 2008 19:08:38 -0000       1.3
@@ -17,13 +17,14 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 
-#ifndef __MEDIAHANDLERGST_H__
-#define __MEDIAHANDLERGST_H__
+#ifndef GNASH_MEDIAHANDLERGST_H
+#define GNASH_MEDIAHANDLERGST_H
 
 #ifdef HAVE_CONFIG_H
 #include "gnashconfig.h"
 #endif
 
+#include "dsodefs.h" // DSOEXPORT
 #include "MediaHandler.h" // for inheritance
 
 #include <memory>
@@ -31,7 +32,7 @@
 namespace gnash {
 namespace media {
 
-class MediaHandlerGst : public MediaHandler
+class DSOEXPORT MediaHandlerGst : public MediaHandler
 {
 public:
 




reply via email to

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