diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-22 23:32:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-22 23:32:59 +0000 |
| commit | b73576594b252e033539bec964d72403d3775585 (patch) | |
| tree | c3d0a8e438fa19e23535c6250b551aa81fa58223 /src/lib/butler.h | |
| parent | 2f5982e8e03ddb242d1443fc4aba4ea247cdacde (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.h | 2 |
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; |
