summaryrefslogtreecommitdiff
path: root/src/lib/butler.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-12-22 23:32:59 +0000
committerCarl Hetherington <cth@carlh.net>2018-12-22 23:32:59 +0000
commitb73576594b252e033539bec964d72403d3775585 (patch)
treec3d0a8e438fa19e23535c6250b551aa81fa58223 /src/lib/butler.h
parent2f5982e8e03ddb242d1443fc4aba4ea247cdacde (diff)
Fix assumption of 48kHz DCP audio in AudioRingBuffers consistency check (#1436).
Diffstat (limited to 'src/lib/butler.h')
-rw-r--r--src/lib/butler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/butler.h b/src/lib/butler.h
index 4f4e50884..f1b86a1ab 100644
--- a/src/lib/butler.h
+++ b/src/lib/butler.h
@@ -65,7 +65,7 @@ public:
private:
void thread ();
void video (boost::shared_ptr<PlayerVideo> video, DCPTime time);
- void audio (boost::shared_ptr<AudioBuffers> audio, DCPTime time);
+ void audio (boost::shared_ptr<AudioBuffers> audio, DCPTime time, int frame_rate);
void text (PlayerText pt, TextType type, boost::optional<DCPTextTrack> track, DCPTimePeriod period);
bool should_run () const;
void prepare (boost::weak_ptr<PlayerVideo> video) const;