X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_content.cc;h=1a92c944ed8047cdceb50f7f43b46e894923a323;hb=0a93c0df8fd6a40b627cc53d51a249628db6b795;hp=8cf44bda1fd870682575f9bc3a6410b59f92bc5b;hpb=c4403784febdbdd42e9c32e67fadb147f11fe566;p=dcpomatic.git diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 8cf44bda1..1a92c944e 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -18,34 +18,39 @@ */ -#include "image_content.h" -#include "video_content.h" -#include "image_examiner.h" + #include "compose.hpp" +#include "exceptions.h" #include "film.h" -#include "job.h" #include "frame_rate_change.h" -#include "exceptions.h" +#include "image_content.h" +#include "image_examiner.h" #include "image_filename_sorter.h" +#include "job.h" +#include "util.h" +#include "video_content.h" #include +#include #include -#include #include #include "i18n.h" -using std::string; + using std::cout; using std::list; +using std::make_shared; +using std::shared_ptr; +using std::string; using std::vector; -using boost::shared_ptr; using namespace dcpomatic; + ImageContent::ImageContent (boost::filesystem::path p) { - video.reset (new VideoContent (this)); + video = make_shared(this); - if (boost::filesystem::is_regular_file (p) && valid_image_file (p)) { + if (dcp::filesystem::is_regular_file(p) && valid_image_file(p)) { add_path (p); } else { _path_to_scan = p; @@ -58,9 +63,10 @@ ImageContent::ImageContent (boost::filesystem::path p) ImageContent::ImageContent (cxml::ConstNodePtr node, int version) : Content (node) { - video = VideoContent::from_xml (this, node, version); + video = VideoContent::from_xml (this, node, version, VideoRange::FULL); } + string ImageContent::summary () const { @@ -75,6 +81,7 @@ ImageContent::summary () const return s; } + string ImageContent::technical_summary () const { @@ -90,6 +97,7 @@ ImageContent::technical_summary () const return s; } + void ImageContent::as_xml (xmlpp::Node* node, bool with_paths) const { @@ -101,6 +109,7 @@ ImageContent::as_xml (xmlpp::Node* node, bool with_paths) const } } + void ImageContent::examine (shared_ptr film, shared_ptr job) { @@ -108,9 +117,9 @@ ImageContent::examine (shared_ptr film, shared_ptr job) job->sub (_("Scanning image files")); vector paths; int n = 0; - for (boost::filesystem::directory_iterator i(*_path_to_scan); i != boost::filesystem::directory_iterator(); ++i) { - if (boost::filesystem::is_regular_file (i->path()) && valid_image_file (i->path())) { - paths.push_back (i->path()); + for (auto i: dcp::filesystem::directory_iterator(*_path_to_scan)) { + if (dcp::filesystem::is_regular_file(i.path()) && valid_image_file(i.path())) { + paths.push_back (i.path()); } ++n; if ((n % 1000) == 0) { @@ -128,11 +137,12 @@ ImageContent::examine (shared_ptr film, shared_ptr job) Content::examine (film, job); - shared_ptr examiner (new ImageExaminer (film, shared_from_this(), job)); - video->take_from_examiner (examiner); + auto examiner = make_shared(film, shared_from_this(), job); + video->take_from_examiner(film, examiner); set_default_colour_conversion (); } + DCPTime ImageContent::full_length (shared_ptr film) const { @@ -140,12 +150,14 @@ ImageContent::full_length (shared_ptr film) const return DCPTime::from_frames (llrint(video->length_after_3d_combine() * frc.factor()), film->video_frame_rate()); } + DCPTime ImageContent::approximate_length () const { return DCPTime::from_frames (video->length_after_3d_combine(), 24); } + string ImageContent::identifier () const { @@ -154,16 +166,18 @@ ImageContent::identifier () const return buffer; } + bool ImageContent::still () const { return number_of_paths() == 1; } + void ImageContent::set_default_colour_conversion () { - BOOST_FOREACH (boost::filesystem::path i, paths()) { + for (auto i: paths()) { if (valid_j2k_file (i)) { /* We default to no colour conversion if we have JPEG2000 files */ video->unset_colour_conversion (); @@ -182,6 +196,7 @@ ImageContent::set_default_colour_conversion () } } + void ImageContent::add_properties (shared_ptr film, list& p) const {