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/ffmpeg.cc | |
| parent | 4c4aeeda4f1cec028072f9995572f8a67dca974f (diff) | |
Rename MD5Digester -> Digester.
Diffstat (limited to 'src/lib/ffmpeg.cc')
| -rw-r--r-- | src/lib/ffmpeg.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg.cc b/src/lib/ffmpeg.cc index 490189c12..342b9a999 100644 --- a/src/lib/ffmpeg.cc +++ b/src/lib/ffmpeg.cc @@ -27,7 +27,7 @@ #include "log.h" #include "ffmpeg_subtitle_stream.h" #include "ffmpeg_audio_stream.h" -#include "md5_digester.h" +#include "digester.h" #include "compose.hpp" extern "C" { #include <libavcodec/avcodec.h> @@ -269,7 +269,7 @@ FFmpeg::subtitle_period (AVSubtitle const & sub) string FFmpeg::subtitle_id (AVSubtitle const & sub) { - MD5Digester digester; + Digester digester; digester.add (sub.pts); for (unsigned int i = 0; i < sub.num_rects; ++i) { AVSubtitleRect* rect = sub.rects[i]; |
