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/player.h | |
| parent | 2f5982e8e03ddb242d1443fc4aba4ea247cdacde (diff) | |
Fix assumption of 48kHz DCP audio in AudioRingBuffers consistency check (#1436).
Diffstat (limited to 'src/lib/player.h')
| -rw-r--r-- | src/lib/player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/player.h b/src/lib/player.h index b3c4e82b4..8a81146c9 100644 --- a/src/lib/player.h +++ b/src/lib/player.h @@ -92,7 +92,7 @@ public: /** Emitted when a video frame is ready. These emissions happen in the correct order. */ boost::signals2::signal<void (boost::shared_ptr<PlayerVideo>, DCPTime)> Video; - boost::signals2::signal<void (boost::shared_ptr<AudioBuffers>, DCPTime)> Audio; + boost::signals2::signal<void (boost::shared_ptr<AudioBuffers>, DCPTime, int)> Audio; /** Emitted when a text is ready. This signal may be emitted considerably * after the corresponding Video. */ |
