- Timestamp:
- 02/27/09 21:16:08 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderAudio.hpp
r9826 r9827 7 7 #include "FFmpegClocks.hpp" 8 8 #include "FFmpegPacket.hpp" 9 #include "FFmpegSampleFormat.hpp"10 9 11 #include "AudioSinkInterface.hpp" 10 #include <osg/AudioStream> 11 12 12 #include "BoundedMessageQueue.hpp" 13 13 14 14 15 … … 37 38 int frequency() const; 38 39 int nbChannels() const; 39 FFmpegSampleFormat sampleFormat() const;40 osg::AudioStream::SampleFormat sampleFormat() const; 40 41 41 42 private: … … 64 65 int m_frequency; 65 66 int m_nb_channels; 66 FFmpegSampleFormat m_sample_format;67 osg::AudioStream::SampleFormat m_sample_format; 67 68 68 69 SinkPtr m_audio_sink; … … 94 95 95 96 96 inline FFmpegSampleFormat FFmpegDecoderAudio::sampleFormat() const97 inline osg::AudioStream::SampleFormat FFmpegDecoderAudio::sampleFormat() const 97 98 { 98 99 return m_sample_format;
