- Timestamp:
- 03/11/09 18:39:08 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp
r9910 r9912 33 33 FFmpegDecoderVideo::~FFmpegDecoderVideo() 34 34 { 35 osg::notify(osg:: NOTICE)<<"Destructing FFmpegDecoderVideo..."<<std::endl;35 osg::notify(osg::INFO)<<"Destructing FFmpegDecoderVideo..."<<std::endl; 36 36 37 37 … … 54 54 #endif 55 55 56 osg::notify(osg:: NOTICE)<<"Destructed FFmpegDecoderVideo"<<std::endl;56 osg::notify(osg::INFO)<<"Destructed FFmpegDecoderVideo"<<std::endl; 57 57 } 58 58 … … 247 247 248 248 249 osg::notify(osg:: NOTICE)<<"Using sws_scale ";249 osg::notify(osg::INFO)<<"Using sws_scale "; 250 250 251 251 int result = sws_scale(m_swscale_ctx, … … 254 254 #else 255 255 256 osg::notify(osg:: NOTICE)<<"Using img_convert ";256 osg::notify(osg::INFO)<<"Using img_convert "; 257 257 258 258 int result = img_convert(dst, dst_pix_fmt, src, … … 261 261 #endif 262 262 osg::Timer_t endTick = osg::Timer::instance()->tick(); 263 osg::notify(osg:: NOTICE)<<" time = "<<osg::Timer::instance()->delta_m(startTick,endTick)<<"ms"<<std::endl;263 osg::notify(osg::INFO)<<" time = "<<osg::Timer::instance()->delta_m(startTick,endTick)<<"ms"<<std::endl; 264 264 265 265 return result;
