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


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog libmedia/MediaParser.h
Date: Sat, 07 Jun 2008 01:54:20 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  08/06/07 01:54:20

Modified files:
        .              : ChangeLog 
        libmedia       : MediaParser.h 

Log message:
        Added DSOEXPORT definitions for building with -fvisibility=hidden.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6850&r2=1.6851
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/MediaParser.h?cvsroot=gnash&r1=1.20&r2=1.21

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6850
retrieving revision 1.6851
diff -u -b -r1.6850 -r1.6851
--- ChangeLog   7 Jun 2008 00:56:12 -0000       1.6850
+++ ChangeLog   7 Jun 2008 01:54:20 -0000       1.6851
@@ -5,9 +5,11 @@
          gcc supports it.
        * utility.h: Fixed a quirk on Leopard/BSD for isfinite();
        * libmedia/ffmpeg/MediaParserFfmpeg.cpp: Fixed #ifndef,
-         seee bug #23502.
+         see bug #23502.
        * server/edit_text_character.cpp: Use isFinite(), instead of 
          finite().
+       * libmedia/MediaParser.h: Added DSOEXPORT definitions for building
+         with -fvisibility=hidden.
 
 2008-06-06 Russ Nelson <address@hidden>
 

Index: libmedia/MediaParser.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/MediaParser.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- libmedia/MediaParser.h      6 Jun 2008 19:08:38 -0000       1.20
+++ libmedia/MediaParser.h      7 Jun 2008 01:54:20 -0000       1.21
@@ -257,7 +257,7 @@
        /// @return false if there no video frame left
        ///         (either none or no more)
        ///
-       bool nextVideoFrameTimestamp(boost::uint64_t& ts) const;
+       DSOEXPORT bool nextVideoFrameTimestamp(boost::uint64_t& ts) const;
 
        /// Returns the next video frame in the parsed buffer, advancing video 
cursor.
        //
@@ -266,14 +266,14 @@
        /// you can check with parsingCompleted() to know wheter this is due to 
        /// EOF reached.
        ///
-       std::auto_ptr<EncodedVideoFrame> nextVideoFrame();
+       DSOEXPORT std::auto_ptr<EncodedVideoFrame> nextVideoFrame();
 
        /// Get timestamp of the audio frame which would be returned on 
nextAudioFrame
        //
        /// @return false if there no video frame left
        ///         (either none or no more)
        ///
-       bool nextAudioFrameTimestamp(boost::uint64_t& ts) const;
+       DSOEXPORT bool nextAudioFrameTimestamp(boost::uint64_t& ts) const;
 
        /// Returns the next audio frame in the parsed buffer, advancing audio 
cursor.
        //
@@ -282,7 +282,7 @@
        /// you can check with parsingCompleted() to know wheter this is due to 
        /// EOF reached.
        ///
-       std::auto_ptr<EncodedAudioFrame> nextAudioFrame();
+       DSOEXPORT std::auto_ptr<EncodedAudioFrame> nextAudioFrame();
 
        /// Is the input MP3?
        //




reply via email to

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