summaryrefslogtreecommitdiff
path: root/src/lib/tiff_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-05 10:36:55 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-05 10:36:55 +0000
commitca4d051ceafb77c281583c4e50b391f230544313 (patch)
treef3bb8a080dd87feae70ed90cb93d99e4bdd7e4a2 /src/lib/tiff_decoder.cc
parent10a001a0c7cf33d384d9613168d80c0c5a07426c (diff)
Move trimming into the encoder; seems to be cleaner.
Diffstat (limited to 'src/lib/tiff_decoder.cc')
-rw-r--r--src/lib/tiff_decoder.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/tiff_decoder.cc b/src/lib/tiff_decoder.cc
index 2c050def6..7cca511dd 100644
--- a/src/lib/tiff_decoder.cc
+++ b/src/lib/tiff_decoder.cc
@@ -44,11 +44,9 @@ using namespace boost;
/** @param f Our Film.
* @param o Options.
* @param j Job that we are associated with, or 0.
- * @param minimal true to do the bare minimum of work; just run through the content. Useful for acquiring
- * accurate frame counts as quickly as possible. This generates no video or audio output.
*/
-TIFFDecoder::TIFFDecoder (boost::shared_ptr<Film> f, boost::shared_ptr<const Options> o, Job* j, bool minimal)
- : Decoder (f, o, j, minimal)
+TIFFDecoder::TIFFDecoder (boost::shared_ptr<Film> f, boost::shared_ptr<const Options> o, Job* j)
+ : Decoder (f, o, j)
{
string const dir = _film->content_path ();