Hand-apply 6a3cd511559433554ab40ed72ff94b7d8dc2c5bd from master;
[dcpomatic.git] / src / lib / image_content.cc
index 70d777bca11f6e52a466dbf44414b7a1ab048163..132b261446120e469207018d2a9a8ebbf3728f36 100644 (file)
 #include "job.h"
 #include "frame_rate_change.h"
 #include "exceptions.h"
+#include "safe_stringstream.h"
 
 #include "i18n.h"
 
 using std::string;
 using std::cout;
-using std::stringstream;
 using boost::shared_ptr;
 
 ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p)
@@ -100,10 +100,9 @@ ImageContent::as_xml (xmlpp::Node* node) const
 }
 
 void
-ImageContent::examine (shared_ptr<Job> job)
+ImageContent::examine (shared_ptr<Job> job, bool calculate_digest)
 {
-       job->sub (_("Computing digest"));
-       Content::examine (job);
+       Content::examine (job, calculate_digest);
 
        shared_ptr<const Film> film = _film.lock ();
        assert (film);
@@ -134,7 +133,7 @@ ImageContent::full_length () const
 string
 ImageContent::identifier () const
 {
-       stringstream s;
+       SafeStringStream s;
        s << VideoContent::identifier ();
        s << "_" << video_length().get();
        return s.str ();