diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-07-25 12:29:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-07-25 12:29:01 +0100 |
| commit | d481e3b4df6eeac962250b15ee0a036a07e385d9 (patch) | |
| tree | b7ace652f0cadc561f5185785cbbf8e61f7321c7 /src/lib/decoder.cc | |
| parent | 57f112a2bd073123a686141be6c16ba997349056 (diff) | |
Setup fast state of decoder after creation.
Diffstat (limited to 'src/lib/decoder.cc')
| -rw-r--r-- | src/lib/decoder.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 3cadcca47..976f97fa9 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -101,3 +101,11 @@ Decoder::film () const DCPOMATIC_ASSERT (f); return f; } + +void +Decoder::set_fast (bool fast) +{ + if (audio) { + audio->set_fast (fast); + } +} |
