diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-14 11:27:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-14 11:27:17 +0100 |
| commit | 5c09a82e483593fb37da0cad20679be735887613 (patch) | |
| tree | 9fb0540536514aa1dc7d4fd4c056c24ca52f59d3 /src/lib/player.h | |
| parent | 8f7d0cf115980cb357bc3da410842503930e66b8 (diff) | |
Move Eyes and ColourConversion into PlayerVideoFrame.
Diffstat (limited to 'src/lib/player.h')
| -rw-r--r-- | src/lib/player.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/player.h b/src/lib/player.h index 8f7d9a218..eddd8f6a2 100644 --- a/src/lib/player.h +++ b/src/lib/player.h @@ -65,12 +65,10 @@ public: /** Emitted when a video frame is ready. * First parameter is the video image. - * Second parameter is the eye(s) that should see this image. - * Third parameter is the colour conversion that should be used for this image. - * Fourth parameter is true if the image is the same as the last one that was emitted. - * Fifth parameter is the time. + * Second parameter is true if the frame is the same as the last one that was emitted. + * Third parameter is the time. */ - boost::signals2::signal<void (boost::shared_ptr<PlayerVideoFrame>, Eyes, ColourConversion, bool, Time)> Video; + boost::signals2::signal<void (boost::shared_ptr<PlayerVideoFrame>, bool, Time)> Video; /** Emitted when some audio data is ready */ boost::signals2::signal<void (boost::shared_ptr<const AudioBuffers>, Time)> Audio; |
