summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-23 08:35:38 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-23 08:35:38 +0000
commit7ab80b672a5e7d0ec8ad5dccda7503c04d40ffb5 (patch)
tree9031406317ec44f2a048ca71896edfdc6911c9c1 /src/lib
parentb955dce68af7bddca254c46f031ae2e79157d529 (diff)
Fix estimate of required disk space to take referencing
of existing DCPs into account.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/content_factory.h4
-rw-r--r--src/lib/film.cc4
-rw-r--r--src/lib/playlist.cc25
-rw-r--r--src/lib/playlist.h1
4 files changed, 31 insertions, 3 deletions
diff --git a/src/lib/content_factory.h b/src/lib/content_factory.h
index fae7648ea..6b47492c4 100644
--- a/src/lib/content_factory.h
+++ b/src/lib/content_factory.h
@@ -21,7 +21,11 @@
* @brief Methods to create content objects.
*/
+#include <libcxml/cxml.h>
+#include <boost/shared_ptr.hpp>
+
class Film;
+class Content;
extern boost::shared_ptr<Content> content_factory (boost::shared_ptr<const Film>, cxml::NodePtr, int, std::list<std::string> &);
extern boost::shared_ptr<Content> content_factory (boost::shared_ptr<const Film>, boost::filesystem::path);
diff --git a/src/lib/film.cc b/src/lib/film.cc
index dbe4d77d2..006cf8dca 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -1182,12 +1182,12 @@ Film::make_kdms (
uint64_t
Film::required_disk_space () const
{
- return uint64_t (j2k_bandwidth() / 8) * length().seconds();
+ return _playlist->required_disk_space (j2k_bandwidth(), audio_channels(), audio_frame_rate());
}
/** This method checks the disk that the Film is on and tries to decide whether or not
* there will be enough space to make a DCP for it. If so, true is returned; if not,
- * false is returned and required and availabe are filled in with the amount of disk space
+ * false is returned and required and available are filled in with the amount of disk space
* required and available respectively (in Gb).
*
* Note: the decision made by this method isn't, of course, 100% reliable.
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc
index c5cd4b02d..1eaef3a51 100644
--- a/src/lib/playlist.cc
+++ b/src/lib/playlist.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
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
@@ -25,6 +25,7 @@
#include "ffmpeg_content.h"
#include "image_decoder.h"
#include "content_factory.h"
+#include "dcp_content.h"
#include "job.h"
#include "config.h"
#include "util.h"
@@ -432,3 +433,25 @@ Playlist::move_later (shared_ptr<Content> c)
c->set_position (c->position() + (*next)->length_after_trim ());
sort (_content.begin(), _content.end(), ContentSorter ());
}
+
+int64_t
+Playlist::required_disk_space (int j2k_bandwidth, int audio_channels, int audio_frame_rate) const
+{
+ int64_t video = uint64_t (j2k_bandwidth / 8) * length().seconds ();
+ int64_t audio = uint64_t (audio_channels * audio_frame_rate * 3) * length().seconds ();
+
+ BOOST_FOREACH (shared_ptr<Content> i, _content) {
+ shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (i);
+ if (d) {
+ if (d->reference_video()) {
+ video -= uint64_t (j2k_bandwidth / 8) * d->length_after_trim().seconds();
+ }
+ if (d->reference_audio()) {
+ audio -= uint64_t (audio_channels * audio_frame_rate * 3) * d->length_after_trim().seconds();
+ }
+ }
+ }
+
+ /* Add on 64k for bits and pieces (metadata, subs etc) */
+ return video + audio + 65536;
+}
diff --git a/src/lib/playlist.h b/src/lib/playlist.h
index 76055bea0..0baf667fc 100644
--- a/src/lib/playlist.h
+++ b/src/lib/playlist.h
@@ -59,6 +59,7 @@ public:
DCPTime length () const;
boost::optional<DCPTime> start () const;
+ int64_t required_disk_space (int j2k_bandwidth, int audio_channels, int audio_frame_rate) const;
int best_dcp_frame_rate () const;
DCPTime video_end () const;