X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_examiner.cc;h=bb0f365d62c1423e159a7baf3a5e23f6be393ab0;hb=4685843ba4194d8b59ed6eb1335ae27052178726;hp=e8db326c71b513e0389b7c55bb1a374fe79b8da3;hpb=91f71a29f894c382a7f92cf5fdcb75d9849e2aa7;p=dcpomatic.git diff --git a/src/lib/image_examiner.cc b/src/lib/image_examiner.cc index e8db326c7..bb0f365d6 100644 --- a/src/lib/image_examiner.cc +++ b/src/lib/image_examiner.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,7 +24,9 @@ #include "exceptions.h" #include "config.h" #include "cross.h" -#include +#include "compose.hpp" +#include +#include #include #include @@ -40,20 +42,25 @@ ImageExaminer::ImageExaminer (shared_ptr film, shared_ptrpath(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"); + FILE* f = fopen_boost (path, "rb"); if (!f) { throw FileError ("Could not open file for reading", path); } + uint8_t* buffer = new uint8_t[size]; fread (buffer, 1, size, f); fclose (f); - _video_size = dcp::decompress_j2k (buffer, size, 0)->size (); + try { + _video_size = dcp::decompress_j2k (buffer, size, 0)->size (); + } catch (dcp::DCPReadError& e) { + delete[] buffer; + throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ())); + } delete[] buffer; } else { Magick::Image* image = new Magick::Image (content->path(0).string()); @@ -62,11 +69,9 @@ ImageExaminer::ImageExaminer (shared_ptr film, shared_ptrstill ()) { - _video_length = ContentTime::from_seconds (Config::instance()->default_still_length()); + _video_length = Config::instance()->default_still_length() * video_frame_rate().get_value_or (24); } else { - _video_length = ContentTime::from_frames ( - _image_content->number_of_paths (), video_frame_rate().get_value_or (24) - ); + _video_length = _image_content->number_of_paths (); } } @@ -76,9 +81,9 @@ ImageExaminer::video_size () const return _video_size.get (); } -optional +optional ImageExaminer::video_frame_rate () const { /* Don't know */ - return optional (); + return optional (); }