Show
Ignore:
Timestamp:
03/04/09 17:03:28 (4 years ago)
Author:
robert
Message:

Removed boost reference and cleaned up debug output

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegImageStream.cpp

    r9860 r9861  
    4040FFmpegImageStream::~FFmpegImageStream() 
    4141{ 
     42    osg::notify(osg::NOTICE)<<"Destructing FFMpegImageStream..."<<std::endl; 
     43 
    4244    quit(true); 
    4345 
     46    // destroy the decoder and associated threads 
     47    m_decoder = 0; 
     48 
     49 
    4450    delete m_commands; 
     51 
     52    osg::notify(osg::NOTICE)<<"Destructed FFMpegImageStream."<<std::endl; 
    4553} 
    4654