Index: /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp
===================================================================
--- /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp (revision 9910)
+++ /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp (revision 9912)
@@ -33,5 +33,5 @@
 FFmpegDecoderVideo::~FFmpegDecoderVideo()
 {
-    osg::notify(osg::NOTICE)<<"Destructing FFmpegDecoderVideo..."<<std::endl;
+    osg::notify(osg::INFO)<<"Destructing FFmpegDecoderVideo..."<<std::endl;
 
 
@@ -54,5 +54,5 @@
 #endif
 
-    osg::notify(osg::NOTICE)<<"Destructed FFmpegDecoderVideo"<<std::endl;
+    osg::notify(osg::INFO)<<"Destructed FFmpegDecoderVideo"<<std::endl;
 }
 
@@ -247,5 +247,5 @@
     
 
-    osg::notify(osg::NOTICE)<<"Using sws_scale ";
+    osg::notify(osg::INFO)<<"Using sws_scale ";
 
     int result =  sws_scale(m_swscale_ctx,
@@ -254,5 +254,5 @@
 #else
 
-    osg::notify(osg::NOTICE)<<"Using img_convert ";
+    osg::notify(osg::INFO)<<"Using img_convert ";
 
     int result = img_convert(dst, dst_pix_fmt, src,
@@ -261,5 +261,5 @@
 #endif
     osg::Timer_t endTick = osg::Timer::instance()->tick();
-    osg::notify(osg::NOTICE)<<" time = "<<osg::Timer::instance()->delta_m(startTick,endTick)<<"ms"<<std::endl;
+    osg::notify(osg::INFO)<<" time = "<<osg::Timer::instance()->delta_m(startTick,endTick)<<"ms"<<std::endl;
 
     return result;
Index: /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.cpp
===================================================================
--- /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.cpp (revision 9910)
+++ /OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.cpp (revision 9912)
@@ -40,9 +40,9 @@
 FFmpegImageStream::~FFmpegImageStream()
 {
-    osg::notify(osg::NOTICE)<<"Destructing FFMpegImageStream..."<<std::endl;
+    osg::notify(osg::INFO)<<"Destructing FFmpegImageStream..."<<std::endl;
 
     quit(true);
     
-    osg::notify(osg::NOTICE)<<"Have done quit"<<std::endl;
+    osg::notify(osg::INFO)<<"Have done quit"<<std::endl;
 
     // release athe audio streams to make sure that the decoder doesn't retain any external
@@ -56,5 +56,5 @@
     delete m_commands;
 
-    osg::notify(osg::NOTICE)<<"Destructed FFMpegImageStream."<<std::endl;
+    osg::notify(osg::INFO)<<"Destructed FFMpegImageStream."<<std::endl;
 }
 
