diff --git a/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp b/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp index 24417a9eb..17175d0fa 100644 --- a/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp +++ b/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp @@ -136,7 +136,7 @@ public: { const std::string ext = osgDB::getLowerCaseFileExtension(filename); const std::string pro = osgDB::getServerProtocol(filename); - if (!acceptsExtension(ext) && !acceptsProtocol(pro)) return ReadResult::FILE_NOT_HANDLED; + if (!acceptsExtension(ext) && !acceptsProtocol(pro)) return ReadResult::FILE_NOT_HANDLED; if (ext=="ffmpeg") return readImage(osgDB::getNameLessExtension(filename),options);