Hi Chris,
If I remember correctly the underlying library throwing this warning
is OSG. It implicitly converts the video feed to a power-of-2 texture
(and lets you know about it).
OSG uses a pretty nice logging system with 5 levels. Basically you can
tell it to only report stuff severer than a certain level. To only
report on fatal things you use:
osg::setNotifyLevel(osg::FATAL);
This should get rid of all the warning messages.
If you are curious or want to use the 5 levels for your own code ...
the 5 levels are:
osg::ALWAYS
osg::FATAL
osg::WARN
osg::NOTICE
osg::INFO
To throw a message on a certain level you do something like:
osg::notify(osg::WARN) << "some warning here" << std::endl;
You also may need to include
#include <osg/Notify>
depending from where you use this logging stuff.
Hope this helps,
/stefan