diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-30 00:59:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-30 00:59:26 +0100 |
| commit | 9ba99535750e19c341f6ff535c6c8991658a8fbb (patch) | |
| tree | b00e41294fe3129d99d9734086a17948e7d96483 /src/lib/video_decoder.h | |
| parent | d81db4280dd09ea9d0064272b075667d659b594a (diff) | |
Fix incorrect reel lengths in some cases; account for emitted data being rejected by the player, and for initial audio not to be at time 0.
Diffstat (limited to 'src/lib/video_decoder.h')
| -rw-r--r-- | src/lib/video_decoder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index e16884568..8b199bd1d 100644 --- a/src/lib/video_decoder.h +++ b/src/lib/video_decoder.h @@ -57,7 +57,8 @@ public: void emit (boost::shared_ptr<const ImageProxy>, Frame frame); - boost::signals2::signal<void (ContentVideo)> Data; + /** @return true if the emitted data was accepted, false if not */ + boost::signals2::signal<bool (ContentVideo)> Data; private: boost::shared_ptr<const Content> _content; |
