gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libmedia/ffmpeg/VideoDecoderFfm...


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog libmedia/ffmpeg/VideoDecoderFfm...
Date: Sat, 22 Mar 2008 19:19:08 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  08/03/22 19:19:08

Modified files:
        .              : ChangeLog 
        libmedia/ffmpeg: VideoDecoderFfmpeg.h 

Log message:
        Added DSOEXPORT to definations.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6003&r2=1.6004
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/ffmpeg/VideoDecoderFfmpeg.h?cvsroot=gnash&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6003
retrieving revision 1.6004
diff -u -b -r1.6003 -r1.6004
--- ChangeLog   22 Mar 2008 19:12:03 -0000      1.6003
+++ ChangeLog   22 Mar 2008 19:19:07 -0000      1.6004
@@ -5,7 +5,8 @@
        * libbase/postscript{cpp, h}: Unused garbage as well as PD-
          licensed. On demand we'll write our own implementation.
        
-       * libbase/utf8.h, libmedia/ffmpeg/ffmpegNetStreamUtil.h: 
+       * libbase/utf8.h, libmedia/ffmpeg/ffmpegNetStreamUtil.h,
+         libmedia/ffmpeg/VideoDecoderFfmpeg.h: 
          Added DSOEXPORT to definations.
 
 2008-03-22  Dossy Shiobara <address@hidden>

Index: libmedia/ffmpeg/VideoDecoderFfmpeg.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/ffmpeg/VideoDecoderFfmpeg.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- libmedia/ffmpeg/VideoDecoderFfmpeg.h        12 Mar 2008 11:18:52 -0000      
1.7
+++ libmedia/ffmpeg/VideoDecoderFfmpeg.h        22 Mar 2008 19:19:08 -0000      
1.8
@@ -24,6 +24,7 @@
 #include "gnashconfig.h"
 #endif
 
+#include "tu_config.h" //For DSOEXPORT
 #include "log.h"
 #include "VideoDecoder.h"
 
@@ -39,8 +40,8 @@
 class VideoDecoderFfmpeg : public VideoDecoder {
   
 public:
-  VideoDecoderFfmpeg(videoCodecType format, int width, int height);
-  ~VideoDecoderFfmpeg();
+  DSOEXPORT VideoDecoderFfmpeg(videoCodecType format, int width, int height);
+  DSOEXPORT ~VideoDecoderFfmpeg();
   
   void push(const EncodedVideoFrame& buffer);
 
@@ -58,7 +59,7 @@
   ///         caller owns that pointer, which must be freed with delete [].
   ///         It is advised to wrap the pointer in a boost::scoped_array.
   ///         If conversion fails, AVPicture::data[0] will be NULL.
-  static AVPicture convertRGB24(AVCodecContext* srcCtx, const AVFrame& 
srcFrame);
+    DSOEXPORT static AVPicture convertRGB24(AVCodecContext* srcCtx, const 
AVFrame& srcFrame);
 
 private:
 




reply via email to

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