mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
Dead code removal
This commit is contained in:
parent
42f6d9e15b
commit
168c0d9b39
@ -22,7 +22,7 @@ namespace Video
|
||||
class MovieAudioFactory;
|
||||
|
||||
/**
|
||||
* @brief Plays a video on an Ogre texture.
|
||||
* @brief Plays a video on an osg texture.
|
||||
*/
|
||||
class VideoPlayer
|
||||
{
|
||||
|
11
extern/ogre-ffmpeg-videoplayer/videostate.cpp
vendored
11
extern/ogre-ffmpeg-videoplayer/videostate.cpp
vendored
@ -5,12 +5,6 @@
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
// Has to be included *before* ffmpeg, due to a macro collision with ffmpeg (#define PixelFormat in avformat.h - grumble)
|
||||
#include <OgreTextureManager.h>
|
||||
#include <OgreHardwarePixelBuffer.h>
|
||||
#include <OgreResourceGroupManager.h>
|
||||
#include <OgreStringConverter.h>
|
||||
|
||||
#include <osg/Texture2D>
|
||||
|
||||
extern "C"
|
||||
@ -535,12 +529,9 @@ void VideoState::decode_thread_loop(VideoState *self)
|
||||
av_free_packet(packet);
|
||||
}
|
||||
}
|
||||
catch(std::runtime_error& e) {
|
||||
catch(std::exception& e) {
|
||||
std::cerr << "An error occured playing the video: " << e.what () << std::endl;
|
||||
}
|
||||
catch(Ogre::Exception& e) {
|
||||
std::cerr << "An error occured playing the video: " << e.getFullDescription () << std::endl;
|
||||
}
|
||||
|
||||
self->mQuit = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user