- Timestamp:
- 05/28/10 18:39:08 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoder.cpp
r10892 r11508 48 48 avdevice_register_all(); 49 49 50 osg::notify(osg::NOTICE)<<"Attempting to stream "<<filename<<std::endl;50 OSG_NOTICE<<"Attempting to stream "<<filename<<std::endl; 51 51 52 52 AVFormatParameters formatParams; … … 71 71 if (iformat) 72 72 { 73 osg::notify(osg::NOTICE)<<"Found input format: "<<format<<std::endl;73 OSG_NOTICE<<"Found input format: "<<format<<std::endl; 74 74 } 75 75 else 76 76 { 77 osg::notify(osg::NOTICE)<<"Failed to find input format: "<<format<<std::endl;77 OSG_NOTICE<<"Failed to find input format: "<<format<<std::endl; 78 78 } 79 79 … … 134 134 catch (const std::runtime_error & error) 135 135 { 136 osg::notify(osg::WARN)<< "FFmpegImageStream::open audio failed, audio stream will be disabled: " << error.what() << std::endl;136 OSG_WARN << "FFmpegImageStream::open audio failed, audio stream will be disabled: " << error.what() << std::endl; 137 137 } 138 138 } … … 140 140 catch (const std::runtime_error & error) 141 141 { 142 osg::notify(osg::WARN)<< "FFmpegImageStream::open : " << error.what() << std::endl;142 OSG_WARN << "FFmpegImageStream::open : " << error.what() << std::endl; 143 143 return false; 144 144 }
