- Timestamp:
- 05/28/10 18:39:08 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderAudio.cpp
r11177 r11508 158 158 catch (const std::exception & error) 159 159 { 160 osg::notify(osg::WARN)<< "FFmpegDecoderAudio::run : " << error.what() << std::endl;160 OSG_WARN << "FFmpegDecoderAudio::run : " << error.what() << std::endl; 161 161 } 162 162 163 163 catch (...) 164 164 { 165 osg::notify(osg::WARN)<< "FFmpegDecoderAudio::run : unhandled exception" << std::endl;165 OSG_WARN << "FFmpegDecoderAudio::run : unhandled exception" << std::endl; 166 166 } 167 167 } … … 171 171 { 172 172 // The FFmpegDecoderAudio object takes the responsability of destroying the audio_sink. 173 osg::notify(osg::NOTICE)<<"Assigning "<<audio_sink<<std::endl;173 OSG_NOTICE<<"Assigning "<<audio_sink<<std::endl; 174 174 m_audio_sink = audio_sink; 175 175 }
