- Timestamp:
- 03/08/09 17:48:48 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.cpp
r9861 r9869 43 43 44 44 quit(true); 45 46 osg::notify(osg::NOTICE)<<"Have done quit"<<std::endl; 47 48 // release athe audio streams to make sure that the decoder doesn't retain any external 49 // refences. 50 getAudioStreams().clear(); 45 51 46 52 // destroy the decoder and associated threads … … 131 137 132 138 // Close the decoder (i.e. flush the decoder packet queues) 133 m_decoder->close( );139 m_decoder->close(waitForThreadToExit); 134 140 } 135 141 … … 198 204 osg::notify(osg::WARN) << "FFmpegImageStream::run : unhandled exception" << std::endl; 199 205 } 206 207 osg::notify(osg::NOTICE)<<"Finished FFmpegImageStream::run()"<<std::endl; 200 208 } 201 209
