summaryrefslogtreecommitdiff
path: root/src/lib/transcoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-21 13:20:51 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-21 13:20:51 +0100
commit5a57b5631518ce9711e6b44a65a0bb87aa434561 (patch)
tree2db1403b5b3a30ae5b15cfcf23ae34fdef380de4 /src/lib/transcoder.cc
parent5f0f0de782100a5cb558f30c7768c8af0c19bcb7 (diff)
parentdc6713f19bb9084aac18eabe399b14ca1ac26df9 (diff)
Merge branch 'sync-fixes' into staging
Diffstat (limited to 'src/lib/transcoder.cc')
-rw-r--r--src/lib/transcoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/transcoder.cc b/src/lib/transcoder.cc
index fcfbb1648..48cf402d7 100644
--- a/src/lib/transcoder.cc
+++ b/src/lib/transcoder.cc
@@ -56,7 +56,7 @@ Transcoder::Transcoder (shared_ptr<Film> f, DecodeOptions o, Job* j, shared_ptr<
assert (_encoder);
shared_ptr<AudioStream> st = f->audio_stream();
- if (st && st->sample_rate()) {
+ if (st && st->sample_rate ()) {
_matcher.reset (new Matcher (f->log(), st->sample_rate(), f->source_frame_rate()));
}
_delay_line.reset (new DelayLine (f->log(), f->audio_delay() / 1000.0f));