summaryrefslogtreecommitdiff
path: root/test/play_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-14 11:27:17 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-14 11:27:17 +0100
commit5c09a82e483593fb37da0cad20679be735887613 (patch)
tree9fb0540536514aa1dc7d4fd4c056c24ca52f59d3 /test/play_test.cc
parent8f7d0cf115980cb357bc3da410842503930e66b8 (diff)
Move Eyes and ColourConversion into PlayerVideoFrame.
Diffstat (limited to 'test/play_test.cc')
-rw-r--r--test/play_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/play_test.cc b/test/play_test.cc
index a0ad494d1..1ba2e7d88 100644
--- a/test/play_test.cc
+++ b/test/play_test.cc
@@ -44,10 +44,10 @@ public:
PlayerWrapper (shared_ptr<Player> p)
: _player (p)
{
- _player->Video.connect (bind (&PlayerWrapper::process_video, this, _1, _2, _5));
+ _player->Video.connect (bind (&PlayerWrapper::process_video, this, _1, _3));
}
- void process_video (shared_ptr<PlayerVideoFrame> i, bool, Time t)
+ void process_video (shared_ptr<PlayerVideoFrame> i, Time t)
{
Video v;
v.content = _player->_last_video;