summaryrefslogtreecommitdiff
path: root/src/lib/player.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-03 15:44:05 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-03 15:44:05 +0000
commitefa79a3db4a041cda3d93dde444e5dca9b84b976 (patch)
tree8a7c9ebfef941d30ef0c6505f5614aaa6e3cc253 /src/lib/player.h
parentac9648e018f06d11be985f55984f6afe8b6bb97e (diff)
parent65c3b3a815545fef4d0373bb588eb815b8b544b0 (diff)
Fix alpha blending with with offset; should help with #1155.
Diffstat (limited to 'src/lib/player.h')
-rw-r--r--src/lib/player.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.h b/src/lib/player.h
index ed55b6284..9dd5afd26 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -105,8 +105,8 @@ private:
ContentTime dcp_to_content_time (boost::shared_ptr<const Piece> piece, DCPTime t) const;
DCPTime content_time_to_dcp (boost::shared_ptr<const Piece> piece, ContentTime t) const;
boost::shared_ptr<PlayerVideo> black_player_video_frame () const;
- bool video (boost::weak_ptr<Piece>, ContentVideo);
- Frame audio (boost::weak_ptr<Piece>, AudioStreamPtr, ContentAudio);
+ void video (boost::weak_ptr<Piece>, ContentVideo);
+ void audio (boost::weak_ptr<Piece>, AudioStreamPtr, ContentAudio);
void image_subtitle_start (boost::weak_ptr<Piece>, ContentImageSubtitle);
void text_subtitle_start (boost::weak_ptr<Piece>, ContentTextSubtitle);
void subtitle_stop (boost::weak_ptr<Piece>, ContentTime);