Changeset 9818
- Timestamp:
- 02/25/09 21:52:34 (4 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins/ffmpeg
- Files:
-
- 5 modified
-
CMakeLists.txt (modified) (1 diff)
-
FFmpegDecoderAudio.cpp (modified) (1 diff)
-
FFmpegDecoderAudio.hpp (modified) (1 diff)
-
FFmpegDecoderVideo.cpp (modified) (1 diff)
-
FFmpegDecoderVideo.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/CMakeLists.txt
r9816 r9818 1 INCLUDE_DIRECTORIES( ${FFMPEG_INCLUDE_DIRS} ) 1 # INCLUDE_DIRECTORIES( ${FFMPEG_INCLUDE_DIRS} ) 2 3 INCLUDE_DIRECTORIES( 4 ${FFMPEG_LIBAVFORMAT_INCLUDE_DIRS} ${FFMPEG_LIBAVFORMAT_INCLUDE_DIRS}/libavformat 5 ${FFMPEG_LIBAVDEVICE_INCLUDE_DIRS} ${FFMPEG_LIBAVDEVICE_INCLUDE_DIRS}/libavdevice 6 ${FFMPEG_LIBAVCODEC_INCLUDE_DIRS} ${FFMPEG_LIBAVCODEC_INCLUDE_DIRS}/libavcodec 7 ${FFMPEG_LIBAVUTIL_INCLUDE_DIRS} ${FFMPEG_LIBAVUTIL_INCLUDE_DIRS}/libavcodec 8 ) 9 10 MESSAGE("FFMPEG_INCLUDE_DIRS = " ${FFMPEG_INCLUDE_DIRS} ) 11 MESSAGE("FFMPEG_LIBRARIES = " ${FFMPEG_LIBRARIES} ) 2 12 3 13 SET(TARGET_SRC -
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderAudio.cpp
r9816 r9818 1 2 1 #include "FFmpegDecoderAudio.hpp" 3 2 4 3 #include <osg/Notify> 5 6 4 7 5 #include <stdexcept> -
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderAudio.hpp
r9816 r9818 5 5 #include <OpenThreads/Thread> 6 6 7 #include "AudioSinkInterface.hpp"8 #include "BoundedMessageQueue.hpp"9 7 #include "FFmpegClocks.hpp" 10 8 #include "FFmpegPacket.hpp" 11 9 #include "FFmpegSampleFormat.hpp" 10 11 #include "AudioSinkInterface.hpp" 12 #include "BoundedMessageQueue.hpp" 12 13 13 14 -
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp
r9816 r9818 1 2 1 #include "FFmpegDecoderVideo.hpp" 3 2 -
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.hpp
r9816 r9818 3 3 #define HEADER_GUARD_OSGFFMPEG_FFMPEG_DECODER_VIDEO_H 4 4 5 #include <boost/shared_ptr.hpp>6 #include <OpenThreads/Thread>7 #include <vector>8 5 9 6 #include "BoundedMessageQueue.hpp" … … 11 8 #include "FFmpegPacket.hpp" 12 9 13 10 #include <boost/shared_ptr.hpp> 11 #include <OpenThreads/Thread> 12 #include <vector> 14 13 15 14 namespace osgFFmpeg {
