diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-09 09:50:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-09 09:50:48 +0100 |
| commit | f26af8112b03b5233eb5239defd11a7428b705ad (patch) | |
| tree | a7385c484829f531bbbc35b3f38235035e160a92 /src/lib/ffmpeg_decoder.cc | |
| parent | 272ce54d159a53be22f592922913901cfc673097 (diff) | |
Use SRC_LINEAR for speed when analysing audio (#685).
Diffstat (limited to 'src/lib/ffmpeg_decoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index eab85c04e..ae44ff522 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -61,9 +61,9 @@ using std::max; using boost::shared_ptr; using dcp::Size; -FFmpegDecoder::FFmpegDecoder (shared_ptr<const FFmpegContent> c, shared_ptr<Log> log) +FFmpegDecoder::FFmpegDecoder (shared_ptr<const FFmpegContent> c, shared_ptr<Log> log, bool fast) : VideoDecoder (c) - , AudioDecoder (c) + , AudioDecoder (c, fast) , SubtitleDecoder (c) , FFmpeg (c) , _log (log) |
