summaryrefslogtreecommitdiff
path: root/src/lib/thumbs_job.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/thumbs_job.cc')
-rw-r--r--src/lib/thumbs_job.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/thumbs_job.cc b/src/lib/thumbs_job.cc
index 779a1d5d1..16a8a7b01 100644
--- a/src/lib/thumbs_job.cc
+++ b/src/lib/thumbs_job.cc
@@ -24,7 +24,7 @@
#include <exception>
#include "thumbs_job.h"
#include "film_state.h"
-#include "tiff_encoder.h"
+#include "imagemagick_encoder.h"
#include "transcoder.h"
#include "options.h"
@@ -51,7 +51,7 @@ void
ThumbsJob::run ()
{
try {
- shared_ptr<TIFFEncoder> e (new TIFFEncoder (_fs, _opt, _log));
+ shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (_fs, _opt, _log));
Transcoder w (_fs, _opt, this, _log, e);
w.go ();
set_progress (1);