diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-14 21:06:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-14 21:06:23 +0100 |
| commit | 317222764debbaf1ac96d256df24c00af85c1b6a (patch) | |
| tree | 6612f970141b3a40387e800655a8a736f074ee77 /test | |
| parent | 21e8238484af35ac207b01defe406e73445632be (diff) | |
Add ImageProxy class.
Diffstat (limited to 'test')
| -rw-r--r-- | test/client_server_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/client_server_test.cc b/test/client_server_test.cc index 2b0e96775..c8a2b49ef 100644 --- a/test/client_server_test.cc +++ b/test/client_server_test.cc @@ -25,6 +25,7 @@ #include "lib/dcp_video_frame.h" #include "lib/scaler.h" #include "lib/player_video_frame.h" +#include "lib/image_proxy.h" using std::list; using boost::shared_ptr; @@ -71,12 +72,13 @@ BOOST_AUTO_TEST_CASE (client_server_test) shared_ptr<PlayerVideoFrame> pvf ( new PlayerVideoFrame ( - image, + shared_ptr<ImageProxy> (new RawImageProxy (image)), Crop (), libdcp::Size (1998, 1080), libdcp::Size (1998, 1080), Scaler::from_id ("bicubic"), EYES_BOTH, + PART_WHOLE, ColourConversion () ) ); |
