- Timestamp:
- 03/03/09 15:59:04 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.hpp
r9827 r9843 7 7 #include <OpenThreads/Condition> 8 8 #include <OpenThreads/Thread> 9 10 11 #ifdef _WIN3212 #if defined OSG_LIBRARY_STATIC13 #define OSGFFMPEG_EXPORT_API14 #elif defined OSG_LIBRARY || defined osgFFmpeg_EXPORTS15 #define OSGFFMPEG_EXPORT_API __declspec(dllexport)16 #else17 #define OSGFFMPEG_EXPORT_API __declspec(dllimport);18 #endif19 #else20 #define OSGFFMPEG_EXPORT_API21 #endif22 23 24 9 25 10 namespace osgFFmpeg … … 34 19 35 20 36 class OSGFFMPEG_EXPORT_APIFFmpegImageStream : public osg::ImageStream, public OpenThreads::Thread21 class FFmpegImageStream : public osg::ImageStream, public OpenThreads::Thread 37 22 { 38 23 public:
