Changeset 3285
- Timestamp:
- 08/16/04 16:21:31 (9 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins/mpeg
- Files:
-
- 2 modified
-
MpegImageStream.cpp (modified) (1 diff)
-
MpegImageStream.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/mpeg/MpegImageStream.cpp
r3223 r3285 135 135 if (mpeg3_has_audio(mpg)) 136 136 { 137 osg::notify( NOTICE) << "Stream has audio" << std::endl;137 osg::notify(INFO) << "Stream has audio" << std::endl; 138 138 } 139 139 -
OpenSceneGraph/trunk/src/osgPlugins/mpeg/MpegImageStream.h
r3196 r3285 58 58 if (!isRunning()) start(); 59 59 60 osg::notify(osg:: NOTICE)<<"Play video"<<this<<std::endl;60 osg::notify(osg::INFO)<<"Play video"<<this<<std::endl; 61 61 62 62 setCmd(THREAD_START); … … 66 66 virtual void pause() 67 67 { 68 osg::notify(osg:: NOTICE)<<"Pause video"<<this<<std::endl;68 osg::notify(osg::INFO)<<"Pause video"<<this<<std::endl; 69 69 setCmd(THREAD_STOP); 70 70 }
