Cleaned up output level of debugging messages
This commit is contained in:
parent
dc0bc861b2
commit
7d41c7f4c3
@ -134,7 +134,7 @@ void MpegImageStream::load(const char* fileName)
|
|||||||
}
|
}
|
||||||
if (mpeg3_has_audio(mpg))
|
if (mpeg3_has_audio(mpg))
|
||||||
{
|
{
|
||||||
osg::notify(NOTICE) << "Stream has audio" << std::endl;
|
osg::notify(INFO) << "Stream has audio" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
_mpg = (void*)mpg;
|
_mpg = (void*)mpg;
|
||||||
|
@ -57,7 +57,7 @@ namespace osg {
|
|||||||
{
|
{
|
||||||
if (!isRunning()) start();
|
if (!isRunning()) start();
|
||||||
|
|
||||||
osg::notify(osg::NOTICE)<<"Play video"<<this<<std::endl;
|
osg::notify(osg::INFO)<<"Play video"<<this<<std::endl;
|
||||||
|
|
||||||
setCmd(THREAD_START);
|
setCmd(THREAD_START);
|
||||||
}
|
}
|
||||||
@ -65,7 +65,7 @@ namespace osg {
|
|||||||
/// Pause stream at current position.
|
/// Pause stream at current position.
|
||||||
virtual void pause()
|
virtual void pause()
|
||||||
{
|
{
|
||||||
osg::notify(osg::NOTICE)<<"Pause video"<<this<<std::endl;
|
osg::notify(osg::INFO)<<"Pause video"<<this<<std::endl;
|
||||||
setCmd(THREAD_STOP);
|
setCmd(THREAD_STOP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user