From 80fafad9c11e0cd8cf9d6ce17deb83be6f680f2d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 23 Nov 2014 01:48:55 +0000 Subject: First cut at J2K import. --- src/lib/image_examiner.cc | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) (limited to 'src/lib/image_examiner.cc') diff --git a/src/lib/image_examiner.cc b/src/lib/image_examiner.cc index 75ccb6a3e..ef9c13c5a 100644 --- a/src/lib/image_examiner.cc +++ b/src/lib/image_examiner.cc @@ -17,14 +17,16 @@ */ -#include -#include #include "image_content.h" #include "image_examiner.h" #include "film.h" #include "job.h" #include "exceptions.h" #include "config.h" +#include "cross.h" +#include +#include +#include #include "i18n.h" @@ -39,10 +41,24 @@ ImageExaminer::ImageExaminer (shared_ptr film, shared_ptrpath(0).string()); - _video_size = dcp::Size (image->columns(), image->rows()); - delete image; +#endif + boost::filesystem::path path = content->path(0).string (); + if (valid_j2k_file (path)) { + boost::uintmax_t size = boost::filesystem::file_size (path); + uint8_t* buffer = new uint8_t[size]; + FILE* f = fopen_boost (path, "r"); + if (!f) { + throw FileError ("Could not open file for reading", path); + } + fread (buffer, 1, size, f); + fclose (f); + _video_size = dcp::decompress_j2k (buffer, size, 0)->size (); + delete[] buffer; + } else { + Magick::Image* image = new Magick::Image (content->path(0).string()); + _video_size = dcp::Size (image->columns(), image->rows()); + delete image; + } if (content->still ()) { _video_length = ContentTime::from_seconds (Config::instance()->default_still_length()); -- cgit v1.2.3