Remove unused variable.
[dcpomatic.git] / src / lib / image.cc
index 89536da33127726daa2d0fab841786eff063bb7f..2df7636af689a14e6a7e175ca677cd2bf8791972 100644 (file)
@@ -27,7 +27,6 @@
 #include <sys/time.h>
 #include <boost/algorithm/string.hpp>
 #include <openjpeg.h>
-#include <mhash.h>
 extern "C" {
 #include <libavcodec/avcodec.h>
 #include <libavformat/avformat.h>
@@ -95,7 +94,7 @@ Image::scale_and_convert_to_rgb (Size out_size, int padding, Scaler const * scal
        content_size.width -= (padding * 2);
 
        shared_ptr<RGBFrameImage> rgb (new RGBFrameImage (content_size));
-       
+
        struct SwsContext* scale_context = sws_getContext (
                size().width, size().height, pixel_format(),
                content_size.width, content_size.height, PIX_FMT_RGB24,