diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-13 12:17:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-13 12:17:47 +0100 |
| commit | a306df9145d16046e51e8b7ff5222e341e98fdbd (patch) | |
| tree | a264a33776589679a6b2ea2136d5d0dab01aa88a /src/lib/util.cc | |
| parent | 4c4aeeda4f1cec028072f9995572f8a67dca974f (diff) | |
Rename MD5Digester -> Digester.
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 784aacf4e..92b3b22fd 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -33,7 +33,7 @@ #include "cross.h" #include "video_content.h" #include "rect.h" -#include "md5_digester.h" +#include "digester.h" #include "audio_processor.h" #include "safe_stringstream.h" #include "compose.hpp" @@ -405,10 +405,10 @@ dcpomatic_setup_gettext_i18n (string lang) /** Compute a digest of the first and last `size' bytes of a set of files. */ string -md5_digest_head_tail (vector<boost::filesystem::path> files, boost::uintmax_t size) +digest_head_tail (vector<boost::filesystem::path> files, boost::uintmax_t size) { boost::scoped_array<char> buffer (new char[size]); - MD5Digester digester; + Digester digester; /* Head */ boost::uintmax_t to_do = size; |
