]> git.sesse.net Git - mlt/blobdiff - src/modules/opengl/mlt_movit_input.cpp
Remove now unused FBOInput.
[mlt] / src / modules / opengl / mlt_movit_input.cpp
index d2755741c05168bfc2be77bab186920d504eb23c..4339ac30e88a3f4db3e2b19d47244f057bdd2339 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include "mlt_movit_input.h"
-#include "fbo_input.h"
 
 MltInput::MltInput(unsigned width, unsigned height)
        : m_width(width)
@@ -106,15 +105,6 @@ void MltInput::useYCbCrInput(const ImageFormat& image_format, const YCbCrFormat&
        }
 }
 
-void MltInput::useFBOInput(GLuint texture)
-{
-       if (!input) {
-               FBOInput* fboInput = new FBOInput(m_width, m_height);
-               input = fboInput;
-               fboInput->set_texture(texture);
-       }
-}
-
 void MltInput::set_pixel_data(const unsigned char* data)
 {
        assert(input);